Skip to content

Commit

Permalink
Merge branch 'release-0.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
LourensVeen committed Jan 15, 2019
2 parents ba2d2d6 + bdb38f9 commit 926c9b8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ Change Log
All notable changes to this project will be documented in this file.
This project adheres to `Semantic Versioning <http://semver.org/>`_.

0.2.2
*****

Fixed
-----

* Improved network error handling

0.2.1
*****

Expand Down
6 changes: 3 additions & 3 deletions cerise/back_end/execution_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ def _process_jobs(self, check_remote: bool) -> bool:
self._logger.debug('System exception while processing job:'
' {}'.format(e))
if isinstance(e, IOError) or isinstance(e, OSError):
if ('Socket' not in e.args[1] and
'Network' not in e.args[1] and
'Temporary' not in e.args[1]):
if ('Socket' not in str(e) and
'Network' not in str(e) and
'Temporary' not in str(e)):
job.error('An IO error occurred while uploading the job'
' input data: {}. Please check that your network'
' connection works, and that you have enough'
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.1'
version = '0.2.2'
# The full version, including alpha/beta/rc tags.
release = '0.2.1'
release = '0.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cerulean >= 0.3.4
cerulean >= 0.3.5
connexion == 1.0.129
gevent >= 0.13
gunicorn >= 19.7.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read(fname):

setup(
name = "cerise",
version = "0.2.1",
version = "0.2.2",
author = "Lourens Veen",
author_email = "[email protected]",
description = ("A simple CWL job running service"),
Expand Down

0 comments on commit 926c9b8

Please sign in to comment.