increased the task data size

This commit is contained in:
jasquat 2023-01-25 17:45:47 -05:00
parent 071f2b5251
commit 500b5f0068
1 changed files with 3 additions and 1 deletions

View File

@ -1447,7 +1447,9 @@ class ProcessInstanceProcessor:
except Exception:
task_data_len = 0
task_data_limit = 1024**2
# Not sure what the number here should be but this now matches the mysql
# max_allowed_packet variable on dev - 1073741824
task_data_limit = 1024**3
if task_data_len > task_data_limit:
raise (