Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions internal/devserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import (
uiconfig "github.com/temporalio/ui-server/v2/server/config"
uiserveroptions "github.com/temporalio/ui-server/v2/server/server_options"
"go.temporal.io/api/enums/v1"
"go.temporal.io/server/chasm/lib/activity"
"go.temporal.io/server/common/authorization"
"go.temporal.io/server/common/cluster"
"go.temporal.io/server/common/config"
Expand Down Expand Up @@ -240,6 +241,11 @@ func (s *StartOptions) buildServerOptions() ([]temporal.ServerOption, *slog.Leve
// Up default visibility RPS
dynConf[dynamicconfig.FrontendMaxNamespaceVisibilityRPSPerInstance.Key()] = 100

// Enable CHASM and SAA. These will be on by default in server v1.32, at which point these lines
// should be removed.
dynConf[dynamicconfig.EnableChasm.Key()] = true
dynConf[activity.Enabled.Key()] = true

// Dynamic config if set
for k, v := range s.DynamicConfigValues {
dynConf[dynamicconfig.MakeKey(k)] = v
Expand Down
Loading
Loading