Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
increase wait time between model upload attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
amn41 committed Aug 27, 2018
1 parent 1e00dae commit 112903e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rasa_core/remote.py
Expand Up @@ -155,7 +155,7 @@ def upload_model(self, model_dir, max_retries=1):
if max_retries > 0:
# some resting time before we try again - e.g. server
# might be unavailable / not started yet
time.sleep(2)
time.sleep(10)

if response:
logger.warn("Got a bad response from rasa core while uploading "
Expand Down

0 comments on commit 112903e

Please sign in to comment.