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
// log.Printf("[DEBUG] Result Size (%s - action: %d). Value size: %d", result.Action.Label, len(actionData), len(result.Result))
18034
18034
}
18035
18035
18036
-
if len(actionData) > 10000 {
18036
+
if len(actionData) > 1000000 {
18037
18037
for paramIndex, param := range result.Action.Parameters {
18038
-
if len(param.Value) > 10000 {
18038
+
if len(param.Value) > 1000000 {
18039
18039
// log.Printf("[WARNING][%s] Parameter %s in action %s is too large (%d). Removing value.", workflowExecution.ExecutionId, param.Name, result.Action.Label, len(param.Value))
18040
18040
workflowExecution.Results[resultIndex].Action.Parameters[paramIndex].Value = "Size too large. Removed."
0 commit comments