You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/workflow_shadower.go
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,12 @@ type (
73
73
// default: no time filter, which matches all workflow start timestamp
74
74
WorkflowStartTimeFilterTimeFilter
75
75
76
+
// Optional: Min and Max workflow close timestamp.
77
+
// Timestamps will be used to construct WorkflowQuery. Only workflows closed within the time range will be replayed. If this filter is being used along with the thee StartTime filter then make sure the Min Close time stamp
78
+
// is within the range of Start timestamp.
79
+
// default: no time filter, which matches all workflow closed timestamp
80
+
WorkflowCloseTimeFilterTimeFilter
81
+
76
82
// Optional: sampling rate for the workflows matches WorkflowQuery
77
83
// only sampled workflows will be replayed
78
84
// default: 1.0
@@ -83,7 +89,7 @@ type (
83
89
// default: ShadowModeNormal, which means shadowing will complete after all workflows have been replayed
84
90
ModeShadowMode
85
91
86
-
// Reqired if Mode is set to ShadowModeContinuous: controls when shadowing should complete
92
+
// Required if Mode is set to ShadowModeContinuous: controls when shadowing should complete
0 commit comments