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
4 changes: 2 additions & 2 deletions common/dynamicconfig/dynamicproperties/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3058,7 +3058,7 @@ const (
// ReplicationTaskProcessorStartWait is the wait time before each task processing batch
// KeyName: history.ReplicationTaskProcessorStartWait
// Value type: Duration
// Default value: 5s (5* time.Second)
// Default value: 0
// Allowed filters: ShardID
ReplicationTaskProcessorStartWait
// ReplicationTaskProcessorLatencyLogThreshold is the threshold of whether history will log history replication latency
Expand Down Expand Up @@ -5611,7 +5611,7 @@ var DurationKeys = map[DurationKey]DynamicDuration{
KeyName: "history.ReplicationTaskProcessorStartWait",
Filters: []Filter{ShardID},
Description: "ReplicationTaskProcessorStartWait is the wait time before each task processing batch",
DefaultValue: time.Second * 5,
DefaultValue: 0,
},
ReplicationTaskProcessorLatencyLogThreshold: {
KeyName: "history.ReplicationTaskProcessorLatencyLogThreshold",
Expand Down
Loading