Removed whitespace.

This commit is contained in:
Brian Lamar 2011-06-21 12:03:27 -04:00
parent 7c846ea890
commit 186598a819
3 changed files with 6 additions and 6 deletions

View File

@ -93,8 +93,8 @@ if __name__ == '__main__':
with_req = direct.PostParamsMiddleware(with_json)
with_auth = direct.DelegatedAuthMiddleware(with_req)
server = wsgi.Server("Direct API",
with_auth,
server = wsgi.Server("Direct API",
with_auth,
host=FLAGS.direct_host,
port=FLAGS.direct_port)
server.start()

View File

@ -50,9 +50,9 @@ if __name__ == '__main__':
FLAGS(sys.argv)
logging.setup()
router = s3server.S3Application(FLAGS.buckets_path)
server = wsgi.Server("S3 Objectstore",
router,
port=FLAGS.s3_port,
server = wsgi.Server("S3 Objectstore",
router,
port=FLAGS.s3_port,
host=FLAGS.s3_host)
server.start()
server.wait()

View File

@ -96,7 +96,7 @@ if __name__ == "__main__":
service.serve()
server = wsgi.Server("VNC Proxy",
server = wsgi.Server("VNC Proxy",
with_auth,
host=FLAGS.vncproxy_host,
port=FLAGS.vncproxy_port)