Skip to content
Merged
Changes from all 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
8 changes: 7 additions & 1 deletion internal/temporalcli/commands.server.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@ import (
var defaultDynamicConfigValues = map[string]any{
// Make search attributes immediately visible on creation, so users don't
// have to wait for eventual consistency to happen when testing against the
// dev-server. Since it's a very rare thing to create search attributes,
// dev-server. Since it's a very rare thing to create search attributes,
// we're comfortable that this is very unlikely to mask bugs in user code.
"system.forceSearchAttributesCacheRefreshOnRead": true,

// Make Nexus endpoints immediately visible on creation, so users don't
// have to wait for eventual consistency to happen when testing against the
// dev-server. Since it's a very rare thing to create Nexus endpoints,
// we're comfortable that this is very unlikely to mask bugs in user code.
"system.forceNexusEndpointRefreshOnRead": true,

// Since we disable the SA cache, we need to bump max QPS accordingly.
// These numbers were chosen to maintain the ratio between the two that's
// established in the defaults.
Expand Down
Loading