Skip to content

Commit 63a151a

Browse files
authored
chore(metrics): turn feature flags on by default (#2202)
1 parent 1561b22 commit 63a151a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/shared/pkg/featureflags

packages/shared/pkg/featureflags/flags.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ func newBoolFlag(name string, fallback bool) BoolFlag {
9797
}
9898

9999
var (
100-
MetricsWriteFlag = newBoolFlag("sandbox-metrics-write", env.IsDevelopment())
101-
MetricsReadFlag = newBoolFlag("sandbox-metrics-read", env.IsDevelopment())
100+
MetricsWriteFlag = newBoolFlag("sandbox-metrics-write", true)
101+
MetricsReadFlag = newBoolFlag("sandbox-metrics-read", true)
102102
SnapshotFeatureFlag = newBoolFlag("use-nfs-for-snapshots", env.IsDevelopment())
103103
TemplateFeatureFlag = newBoolFlag("use-nfs-for-templates", env.IsDevelopment())
104104
EnableWriteThroughCacheFlag = newBoolFlag("write-to-cache-on-writes", false)

0 commit comments

Comments
 (0)