From f5d43f04209a3627c3a9a390ab3cbdd5f60c7ac4 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Wed, 31 May 2023 09:38:51 -0400 Subject: [PATCH] Remove use of AWS stage server This removes the host that pointed to the stage environment in AWS for the Mozilla Symbolication Service. That host no longer works. See https://bugzilla.mozilla.org/show_bug.cgi?id=1836055 --- src/app-logic/constants.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app-logic/constants.js b/src/app-logic/constants.js index 46eb20b8e2..7b2f18768b 100644 --- a/src/app-logic/constants.js +++ b/src/app-logic/constants.js @@ -110,8 +110,7 @@ export const PROFILER_SERVER_ORIGIN = 'https://api.profiler.firefox.com'; // SYMBOL_SERVER_URL // ----------------- // Can be overridden with the URL parameter `symbolServer=SERVERURL`. -// You can change this to the staging server `https://symbolication.stage.mozaws.net`, -// or run a local symbol server (for example using profiler-symbol-server [1]) +// You can change this to run a local symbol server (for example using profiler-symbol-server [1]) // and set it to e.g. 'http://localhost:8000/'. // // [1] https://github.com/mstange/profiler-symbol-server/