Move python path to top
[flowspy] / run_poller.py
index 769dfd2..cde0e85 100644 (file)
@@ -1,5 +1,7 @@
 #!/usr/bin/python
 from gevent.wsgi import WSGIServer
 from poller.application import application
-print 'Serving on 8000...'
-WSGIServer(('netdev.grnet.gr', 9090), application).serve_forever()
+server="localhost"
+port=8081
+print 'Serving on port %s...' % port
+WSGIServer((server,port ), application).serve_forever()