Skip to content

Commit

Permalink
fix: import utils (#112)
Browse files Browse the repository at this point in the history
* fix: add __init__ file for utils

* chore: make an empty init file

* delete empty line

* feat: increase polling timeout
  • Loading branch information
vassilismin authored Nov 6, 2024
1 parent 6c52267 commit 863ea77
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaqpotpy/api/jaqpot_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _get_dataset_with_polling(self, response):
lambda: self.get_dataset_by_id(dataset_id).status
in ["SUCCESS", "FAILURE"],
step=3,
timeout=60,
timeout=10 * 60,
)
except polling2.TimeoutException:
raise JaqpotPredictionTimeoutException(
Expand Down
Empty file added jaqpotpy/utils/__init__ .py
Empty file.

0 comments on commit 863ea77

Please sign in to comment.