We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sending this code:
# https://discord.com/channels/267624335836053506/267659945086812160/1084230562622996601 import os x = "" for _ in range(1000): x += "a/" os.mkdir(x) open(f"{x}hello.txt", "w").write("test")
Got this error:
# https://discord.com/channels/267624335836053506/267659945086812160/1084230566007799818 ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')
Which, according to grafana, is snekbox dying somewhere in pathlib while calling scandir.
pathlib
scandir
Sentry Issue: BOT-3EN
The text was updated successfully, but these errors were encountered:
Related to Cpython#102613. We should probably switch to glob instead of pathlib for now.
glob
Sorry, something went wrong.
Add unit test for deeply nested path file parsing
6601b36
Using example for reproducing issue #172
Also related to python/cpython#100282, could remove check after fix upstream
@ionite34 Barney Gale has just merged #100282!
ionite34
Successfully merging a pull request may close this issue.
Summary
Sending this code:
Got this error:
Which, according to grafana, is snekbox dying somewhere in
pathlib
while callingscandir
.Sentry Issue: BOT-3EN
The text was updated successfully, but these errors were encountered: