forked from p15670423/monkey
Agent: Reraise IslandAPIError in handle_island_errors()
This commit is contained in:
parent
8b52ba0686
commit
34a4d81336
|
@ -35,6 +35,8 @@ def handle_island_errors(fn):
|
|||
raise IslandAPIError(err)
|
||||
except TimeoutError as err:
|
||||
raise IslandAPITimeoutError(err)
|
||||
except IslandAPIError as err:
|
||||
raise err
|
||||
except Exception as err:
|
||||
raise IslandAPIError(err)
|
||||
|
||||
|
|
Loading…
Reference in New Issue