Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.06 KB | None | 0 0
  1. Pubsub client = PubsubUtils.getClient();
  2. if (enabled) {
  3. logger.info("PubSub event logging: enabled");
  4. Topic t = null;
  5. try {
  6. t = client.projects().topics().get(topic).execute();
  7. if (t != null) {
  8. logger.info("PubSub topic {} already exists. Continuing ...", topic);
  9. return client;
  10. }
  11. } catch (Exception ex) {
  12. logger.info("Failed to get topic: {}", topic, ex);
  13. }
  14.  
  15. // create topic
  16. if (t == null) {
  17. createTopic(client);
  18. }
  19. } else {
  20. logger.info("PubSub event logging: disabled");
  21. }
  22.  
  23. String topic = "projects/projectid/topics/topicid";
  24.  
  25. Caused by: com.google.api.client.googleapis.json.GoogleJsonResponseException: 404 Not Found
  26. <!DOCTYPE html>
  27. <html lang=en>
  28. <meta charset=utf-8>
  29. <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
  30. <title>Error 404 (Not Found)!!1</title>
  31. <style>
  32. *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
  33. </style>
  34. <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
  35. <p><b>404.</b> <ins>That’s an error.</ins>
  36. <p>The requested URL <code>/v1/projects%2Fbrightcove-rna-master%2Ftopics%2Fdev_achauhan-events</code> was not found on this server. <ins>That’s all we know.</ins>
  37.  
  38. at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:145)
  39. at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:113)
  40. at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:40)
  41. at com.google.api.client.googleapis.services.AbstractGoogleClientRequest$1.interceptResponse(AbstractGoogleClientRequest.java:321)
  42. at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1049)
  43. at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)
  44. at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352)
  45. at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:469)
  46. at com.brightcove.collector.beans.PubSubProducerBean.createTopic(PubSubProducerBean.java:54)
  47. at com.brightcove.collector.beans.PubSubProducerBean.getPublisher(PubSubProducerBean.java:45)
  48. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  49. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  50. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  51. at java.lang.reflect.Method.invoke(Method.java:497)
  52. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162)
  53. ... 54 more
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement