Skip to content

Commit

Permalink
increase limit for env vars values; on Windows CI: "Dropping key=PATH…
Browse files Browse the repository at this point in the history
… value len=3120"
  • Loading branch information
denik committed Jan 20, 2025
1 parent 9c12d45 commit 09f6e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acceptance/bin/callserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

env = {}
for key, value in os.environ.items():
if len(value) > 1000:
if len(value) > 10_000:
sys.stderr.write(f"Dropping key={key} value len={len(value)}\n")
continue
env[key] = value
Expand Down

0 comments on commit 09f6e46

Please sign in to comment.