Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-sandbox-not-found-msg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@e2b/python-sdk": patch
---

Fix sandbox not found error message in set_timeout
2 changes: 1 addition & 1 deletion packages/python-sdk/e2b/sandbox_async/sandbox_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async def _cls_set_timeout(
)

if res.status_code == 404:
raise NotFoundException(f"Paused sandbox {sandbox_id} not found")
raise NotFoundException(f"Sandbox {sandbox_id} not found")

if res.status_code >= 300:
raise handle_api_exception(res)
Expand Down