increased the task data size
This commit is contained in:
parent
071f2b5251
commit
500b5f0068
|
@ -1447,7 +1447,9 @@ class ProcessInstanceProcessor:
|
||||||
except Exception:
|
except Exception:
|
||||||
task_data_len = 0
|
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:
|
if task_data_len > task_data_limit:
|
||||||
raise (
|
raise (
|
||||||
|
|
Loading…
Reference in New Issue