Skip to content

Commit

Permalink
Merge pull request #148 from zoufou/v0.6-beta
Browse files Browse the repository at this point in the history
v0.6b11
  • Loading branch information
farirat committed May 12, 2015
2 parents b4786d3 + 03408aa commit 9b23cfc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python:
# Command to install dependencies
install:
- python setup.py sdist
- sudo pip install dist/jasmin-0.6b10.tar.gz
- sudo pip install dist/jasmin-0.6b11.tar.gz
# Commands to run tests:
script:
# Add jasmind to system autostartup:
Expand Down
4 changes: 2 additions & 2 deletions jasmin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

MAJOR = 0
MINOR = 6
PATCH = 10
PATCH = 11
META = 'b'

def get_version():
Expand All @@ -16,4 +16,4 @@ def get_release():
return '%s.%s%s%s' % (MAJOR, MINOR, META, PATCH)

__version__ = get_version()
__release__ = get_release()
__release__ = get_release()
4 changes: 2 additions & 2 deletions jasmin/routing/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def __init__(self, config_file = None):
ConfigFile.__init__(self, config_file)

self.timeout = self._getint('deliversm-thrower', 'http_timeout', 30)
self.retryDelay = self._getint('deliversm-thrower', 'retry_delay', 30)
self.maxRetries = self._getint('deliversm-thrower', 'max_retries', 3)
self.retry_delay = self._getint('deliversm-thrower', 'retry_delay', 30)
self.max_retries = self._getint('deliversm-thrower', 'max_retries', 3)

# Logging
self.log_level = logging.getLevelName(self._get('deliversm-thrower', 'log_level', 'INFO'))
Expand Down
4 changes: 2 additions & 2 deletions jasmin/routing/test/test_routing_deliver_sm.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def setUp(self):
deliverSmThrowerConfigInstance = deliverSmThrowerConfig()
# Lower the timeout config to pass the timeout tests quickly
deliverSmThrowerConfigInstance.timeout = 2
deliverSmThrowerConfigInstance.retryDelay = 1
deliverSmThrowerConfigInstance.maxRetries = 2
deliverSmThrowerConfigInstance.retry_delay = 1
deliverSmThrowerConfigInstance.max_retries = 2

# Launch the deliverSmThrower
self.deliverSmThrower = deliverSmThrower()
Expand Down

0 comments on commit 9b23cfc

Please sign in to comment.