Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Fix setting port from cli
Browse files Browse the repository at this point in the history
  • Loading branch information
oldpatricka committed Apr 18, 2013
1 parent 747d1f6 commit 1bc06f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion opentsdbproxy/__init__.py
Expand Up @@ -8,7 +8,7 @@

log = logging.getLogger(__name__)

__version__ = "0.1.2"
__version__ = "0.1.3"
__fullversion__ = "OpenTSDB Proxy %s" % __version__

MAX_CONNECTIONS = 10000
Expand Down
2 changes: 1 addition & 1 deletion opentsdbproxy/cli.py
Expand Up @@ -48,6 +48,6 @@ def main():

try:
opentsdbproxy.OpenTSDBProxy(backend=backend, backend_parameters=backend_parameters,
ssl_cert_path=ssl_cert_path, ssl_key_path=ssl_key_path)
ssl_cert_path=ssl_cert_path, ssl_key_path=ssl_key_path, port=args.port)
except ConfigurationException as ce:
print >>sys.stderr, "Configuration Error: %s" % str(ce)
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@
if sys.platform == 'darwin':
os.environ['C_INCLUDE_PATH'] = '/usr/local/include'

version = "0.1.2"
version = "0.1.3"

setupdict = {
'name': 'opentsdbproxy',
Expand Down

0 comments on commit 1bc06f7

Please sign in to comment.