Skip to content

Commit b5d634f

Browse files
committed
default port to 8080 (standalone)
1 parent b07591f commit b5d634f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tyron/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.3'
1+
__version__ = '0.2.4'

tyron/tyron.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def start_subscribe_loop():
106106

107107
def main():
108108
from gevent.wsgi import WSGIServer
109-
WSGIServer(('', 5000), application).serve_forever()
109+
WSGIServer(('', 8080), application).serve_forever()
110110

111111
if __name__ == '__main__':
112112
main()

0 commit comments

Comments
 (0)