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: pkg/types/gateway/action.go
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,16 @@ type OutboundHTTPRequest struct {
33
33
// Maximum number of bytes to read from the response body. If the gateway max response size is smaller than this value, the gateway max response size will be used.
34
34
MaxResponseBytesuint32`json:"maxBytes,omitempty"`
35
35
WorkflowIDstring`json:"workflowId"`
36
+
WorkflowOwnerstring`json:"workflowOwner"`
36
37
}
37
38
39
+
// Hash generates a hash of the request for caching purposes.
40
+
// WorkflowID is not included in the hash because cached responses can be used across workflows
0 commit comments