Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Version = int64(1234) NamespaceID = "deadbeef-0123-4567-890a-bcdef0123456" Namespace = "some random namespace name" ParentNamespaceID = "deadbeef-0123-4567-890a-bcdef0123457" ParentNamespace = "some random parent namespace name" TargetNamespaceID = "deadbeef-0123-4567-890a-bcdef0123458" TargetNamespace = "some random target namespace name" ChildNamespaceID = "deadbeef-0123-4567-890a-bcdef0123459" ChildNamespace = "some random child namespace name" WorkflowID = "random-workflow-id" RunID = "0d00698f-08e1-4d36-a3e2-3bf109f5d2d6" LocalNamespaceEntry = namespace.NewLocalNamespaceForTest( &persistencespb.NamespaceInfo{Id: NamespaceID, Name: Namespace}, &persistencespb.NamespaceConfig{ Retention: timestamp.DurationFromDays(1), BadBinaries: &namespacepb.BadBinaries{ Binaries: map[string]*namespacepb.BadBinaryInfo{}, }, }, cluster.TestCurrentClusterName, ) GlobalNamespaceEntry = namespace.NewGlobalNamespaceForTest( &persistencespb.NamespaceInfo{Id: NamespaceID, Name: Namespace}, &persistencespb.NamespaceConfig{ Retention: timestamp.DurationFromDays(1), VisibilityArchivalState: enumspb.ARCHIVAL_STATE_ENABLED, VisibilityArchivalUri: "test:///visibility/archival", }, &persistencespb.NamespaceReplicationConfig{ ActiveClusterName: cluster.TestCurrentClusterName, Clusters: []string{ cluster.TestCurrentClusterName, cluster.TestAlternativeClusterName, }, }, Version, ) GlobalParentNamespaceEntry = namespace.NewGlobalNamespaceForTest( &persistencespb.NamespaceInfo{Id: ParentNamespaceID, Name: ParentNamespace}, &persistencespb.NamespaceConfig{Retention: timestamp.DurationFromDays(1)}, &persistencespb.NamespaceReplicationConfig{ ActiveClusterName: cluster.TestCurrentClusterName, Clusters: []string{ cluster.TestCurrentClusterName, cluster.TestAlternativeClusterName, }, }, Version, ) GlobalTargetNamespaceEntry = namespace.NewGlobalNamespaceForTest( &persistencespb.NamespaceInfo{Id: TargetNamespaceID, Name: TargetNamespace}, &persistencespb.NamespaceConfig{Retention: timestamp.DurationFromDays(1)}, &persistencespb.NamespaceReplicationConfig{ ActiveClusterName: cluster.TestCurrentClusterName, Clusters: []string{ cluster.TestCurrentClusterName, cluster.TestAlternativeClusterName, }, }, Version, ) GlobalChildNamespaceEntry = namespace.NewGlobalNamespaceForTest( &persistencespb.NamespaceInfo{Id: ChildNamespaceID, Name: ChildNamespace}, &persistencespb.NamespaceConfig{Retention: timestamp.DurationFromDays(1)}, &persistencespb.NamespaceReplicationConfig{ ActiveClusterName: cluster.TestCurrentClusterName, Clusters: []string{ cluster.TestCurrentClusterName, cluster.TestAlternativeClusterName, }, }, Version, ) CreateWorkflowExecutionResponse = &persistence.CreateWorkflowExecutionResponse{ NewMutableStateStats: persistence.MutableStateStatistics{ HistoryStatistics: &persistence.HistoryStatistics{}, }, } GetWorkflowExecutionResponse = &persistence.GetWorkflowExecutionResponse{ MutableStateStats: persistence.MutableStateStatistics{}, } UpdateWorkflowExecutionResponse = &persistence.UpdateWorkflowExecutionResponse{ UpdateMutableStateStats: persistence.MutableStateStatistics{ HistoryStatistics: &persistence.HistoryStatistics{}, }, NewMutableStateStats: nil, } )
Functions ¶
func NewDynamicConfig ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.