Skip to content

Commit f7f16ac

Browse files
authored
RD-6165-change-max-size-java (#219)
1 parent f605de4 commit f7f16ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lumigo_tracer/lumigo_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
STEP_FUNCTION_UID_KEY = "step_function_uid"
4242
# number of spans that are too big to enter the reported message before break
4343
TOO_BIG_SPANS_THRESHOLD = 5
44-
MAX_SIZE_FOR_REQUEST: int = int(os.environ.get("LUMIGO_MAX_SIZE_FOR_REQUEST", 900_000))
44+
MAX_SIZE_FOR_REQUEST: int = int(os.environ.get("LUMIGO_MAX_SIZE_FOR_REQUEST", 1024 * 500))
4545
MAX_NUMBER_OF_SPANS: int = int(os.environ.get("LUMIGO_MAX_NUMBER_OF_SPANS", 2000))
4646
EDGE_TIMEOUT = float(os.environ.get("LUMIGO_EDGE_TIMEOUT", SECONDS_TO_TIMEOUT))
4747
MAX_VARS_SIZE = 100_000

0 commit comments

Comments
 (0)