-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
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
Error: open /dev/null: too many open files #62
Comments
Hi, could you pls provide a bit more details about this? such as your DSL, logs etc. |
5 tasks
It looks weird, I'm not sure why it costs so many times, could you pls give me your code as a testcase? you can desenstitive it of course. |
@Yeuoly I have the same problem. Very simple code. Code: import json
import traceback
def main(body: str) -> dict:
try:
data = json.loads(body)['body']
return {'result': json.dumps(data, ensure_ascii=False), 'err': ''}
except (json.JSONDecodeError, TypeError):
err = traceback.format_exc()
return {'result': '', 'err': str(err)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running a Claude LLM in Dify with the Response Format set to JSON, I receive from the
langgenius/dify-sandbox:0.2.6
this error:The text was updated successfully, but these errors were encountered: