diff --git a/apps/rss_feeds/text_importer.py b/apps/rss_feeds/text_importer.py index 4dca7f054..1e2479644 100644 --- a/apps/rss_feeds/text_importer.py +++ b/apps/rss_feeds/text_importer.py @@ -222,7 +222,7 @@ class TextImporter: headers["content-type"] = "application/json" headers["x-api-key"] = mercury_api_key if settings.DEBUG: - url = "http://nb.local.com:4040/rss_feeds/original_text_fetcher?url=%s" % url + url = "http://nb.local.com:8008/rss_feeds/original_text_fetcher?url=%s" % url else: url = "https://www.newsblur.com/rss_feeds/original_text_fetcher?url=%s" % url diff --git a/node/newsblur.coffee b/node/newsblur.coffee index e7c841352..75ba6190b 100644 --- a/node/newsblur.coffee +++ b/node/newsblur.coffee @@ -26,16 +26,9 @@ if ENV_PROD Sentry.init dsn: process.env.SENTRY_DSN, debug: true, - integrations: [ - new Sentry.Integrations.Http({ tracing: true }), - new Tracing.Integrations.Express({ - app - }) - ], tracesSampleRate: 1.0 app.use(Sentry.Handlers.requestHandler()) - app.use(Sentry.Handlers.tracingHandler()) original_page(app) original_text(app) diff --git a/node/newsblur.js b/node/newsblur.js index 48a9fa986..25be4c4f7 100644 --- a/node/newsblur.js +++ b/node/newsblur.js @@ -46,16 +46,9 @@ Sentry.init({ dsn: process.env.SENTRY_DSN, debug: true, - integrations: [ - new Sentry.Integrations.Http({ - tracing: true - }), - new Tracing.Integrations.Express({app}) - ], tracesSampleRate: 1.0 }); app.use(Sentry.Handlers.requestHandler()); - app.use(Sentry.Handlers.tracingHandler()); } original_page(app);