Skip to content

Commit

Permalink
Fixed #179 Ensure time demo registers service name
Browse files Browse the repository at this point in the history
  • Loading branch information
clach04 committed Nov 26, 2015
1 parent 7599ccf commit 04f7c4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/time/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ A canonical example of a basic service:
* time_service.py defines the service
* server.py exposes the service
* client.py utilizes the service

- NOTE requires registry_server.py to be running
2 changes: 1 addition & 1 deletion demos/time/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@


if __name__ == "__main__":
s = ThreadedServer(TimeService)
s = ThreadedServer(TimeService, auto_register=True)
s.start()

0 comments on commit 04f7c4c

Please sign in to comment.