Skip to content

Commit d4aa41f

Browse files
committed
Fix feature flags
1 parent 39a53e5 commit d4aa41f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ config :livebook,
2828
app_service_name: nil,
2929
app_service_url: nil,
3030
authentication_mode: :token,
31-
feature_flags: [deployment_groups: true],
31+
feature_flags: [],
3232
force_ssl_host: nil,
3333
learn_notebooks: [],
3434
plugs: [],

config/dev.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ config :phoenix, :plug_init_mode, :runtime
7474
config :livebook, :authentication_mode, :disabled
7575

7676
config :livebook, :data_path, Path.expand("tmp/livebook_data/dev")
77+
78+
config :livebook, :feature_flags, deployment_groups: true

config/prod.exs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ config :livebook, LivebookWeb.Endpoint,
1212

1313
config :livebook, :iframe_port, 8081
1414

15-
# Disable all feature flags in production
16-
config :livebook, :feature_flags, []
17-
1815
# Set log level to warning by default to reduce output
1916
config :logger, level: :warning
2017

config/test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ end
2424

2525
config :livebook, :data_path, data_path
2626

27+
config :livebook, :feature_flags, deployment_groups: true
28+
2729
# Use longnames when running tests in CI, so that no host resolution is required,
2830
# see https://github.com/livebook-dev/livebook/pull/173#issuecomment-819468549
2931
if System.get_env("CI") == "true" do

0 commit comments

Comments
 (0)