Skip to content

Commit

Permalink
Service name comparisons are case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
nerandell committed Jul 25, 2015
1 parent 05cc3ac commit dff9e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyked/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class _Service:
_RES_PKT_STR = 'response'

def __init__(self, service_name, service_version):
self._service_name = service_name
self._service_name = service_name.lower()
self._service_version = service_version
self._tcp_bus = None
self._pubsub_bus = None
Expand Down

0 comments on commit dff9e69

Please sign in to comment.