Skip to content
Snippets Groups Projects
Commit 4ee93d3a authored by David Douard's avatar David Douard
Browse files

API: use default's APIError exception instead of the SchedulerAPIError

this later does not brings anything over the default's one.

This requires swh.core >= 0.0.56
parent 693a147c
No related branches found
No related tags found
1 merge request!91API: use default's APIError exception instead of the SchedulerAPIError
swh.core >= 0.0.51
swh.core >= 0.0.56
swh.storage >= 0.0.129
......@@ -7,24 +7,10 @@
from swh.core.api import SWHRemoteAPI
class SchedulerAPIError(Exception):
"""Specific internal scheduler api issue (mainly connection)
"""
def __str__(self):
args = self.args
return 'An unexpected error occurred in the api backend: %s' % args
class RemoteScheduler(SWHRemoteAPI):
"""Proxy to a remote scheduler API
"""
def __init__(self, url, timeout=None):
super().__init__(
api_exception=SchedulerAPIError, url=url, timeout=timeout)
def close_connection(self):
return self.post('close_connection', {})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment