Compare commits

...

2 Commits
0.24 ... 0.25

Author SHA1 Message Date
Romuald Juchnowicz-Bierbasz
8ad5ed76b7 Increment version 2019-04-30 16:59:13 +02:00
Romuald Juchnowicz-Bierbasz
7727098c6f SDK-2762: Fix error handling 2019-04-30 16:58:54 +02:00
2 changed files with 1 additions and 3 deletions

View File

@@ -180,8 +180,6 @@ class Server():
try:
result = await callback(*bound_args.args, **bound_args.kwargs)
self._send_response(request.id, result)
except TypeError:
self._send_error(request.id, InvalidParams())
except NotImplementedError:
self._send_error(request.id, MethodNotFound())
except JsonRpcError as error:

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="galaxy.plugin.api",
version="0.24",
version="0.25",
description="Galaxy python plugin API",
author='Galaxy team',
author_email='galaxy@gog.com',