From 1c3d8e4d9533fab97c6bf24af0444cf52147e7dc Mon Sep 17 00:00:00 2001 From: bryanlopezrr Date: Mon, 2 Dec 2024 11:51:44 -0500 Subject: [PATCH] testing out the environment variable here --- config/initializers/bugsnag.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/bugsnag.rb b/config/initializers/bugsnag.rb index f9b0843ac..70660cf90 100644 --- a/config/initializers/bugsnag.rb +++ b/config/initializers/bugsnag.rb @@ -2,5 +2,5 @@ Bugsnag.configure do |config| config.app_version = ENV.fetch('APP_VERSION', nil) - config.release_stage = ENV.fetch('APP_ENV', 'development') + config.release_stage = ENV.fetch('BUGSNAG_RELEASE_STAGE', 'development') end