From db65f31e0057430c232646df479434635e58fbd9 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 09:04:40 +0000 Subject: [PATCH] chore: default LAUNCHDARKLY_FLAG_KEY to sample-feature Co-Authored-By: jbailey@launchdarkly.com --- main.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.rb b/main.rb index 5030e57..9a76f83 100644 --- a/main.rb +++ b/main.rb @@ -3,7 +3,7 @@ require 'open_feature/sdk' sdk_key = ENV['LAUNCHDARKLY_SDK_KEY'] -feature_flag_key = ENV['LAUNCHDARKLY_FLAG_KEY'] +feature_flag_key = ENV['LAUNCHDARKLY_FLAG_KEY'] || 'sample-feature' if sdk_key == '' puts "*** Please set the LAUNCHDARKLY_SDK_KEY environment variable\n"