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
// ErrSignalOverSize is the error to indicate signal input size is > 256K
190
-
ErrSignalOverSize=serviceerror.NewInvalidArgument("signal input size is over 256K")
191
189
// ErrCancellationAlreadyRequested is the error indicating cancellation for target workflow is already requested
192
190
ErrCancellationAlreadyRequested=serviceerror.NewCancellationAlreadyRequested("cancellation already requested for this workflow execution")
193
191
// ErrSignalsLimitExceeded is the error indicating limit reached for maximum number of signal events
@@ -196,8 +194,6 @@ var (
196
194
ErrEventsAterWorkflowFinish=serviceerror.NewInternal("error validating last event being workflow finish event")
197
195
// ErrQueryEnteredInvalidState is error indicating query entered invalid state
198
196
ErrQueryEnteredInvalidState=serviceerror.NewInvalidArgument("query entered invalid state, this should be impossible")
199
-
// ErrQueryWorkflowBeforeFirstWorkflowTask is error indicating that query was attempted before first workflow task completed
200
-
ErrQueryWorkflowBeforeFirstWorkflowTask=serviceerror.NewQueryFailed("workflow must handle at least one workflow task before it can be queried")
201
197
// ErrConsistentQueryBufferExceeded is error indicating that too many consistent queries have been buffered and until buffered queries are finished new consistent queries cannot be buffered
202
198
ErrConsistentQueryBufferExceeded=serviceerror.NewInternal("consistent query buffer is full, cannot accept new consistent queries")
0 commit comments