mirror of
https://github.com/GNS3/gns3-server
synced 2025-01-12 09:00:57 +00:00
Disabling auth from version string
This commit is contained in:
parent
a0e2fe551a
commit
b132c901c9
@ -22,7 +22,6 @@ from ..version import __version__
|
|||||||
|
|
||||||
class VersionHandler(GNS3BaseHandler):
|
class VersionHandler(GNS3BaseHandler):
|
||||||
|
|
||||||
@tornado.web.authenticated
|
|
||||||
def get(self):
|
def get(self):
|
||||||
response = {'version': __version__}
|
response = {'version': __version__}
|
||||||
self.write(response)
|
self.write(response)
|
||||||
|
@ -172,9 +172,8 @@ class Server(object):
|
|||||||
}
|
}
|
||||||
|
|
||||||
log.info("Certs found - starting in SSL mode")
|
log.info("Certs found - starting in SSL mode")
|
||||||
|
|
||||||
except KeyError:
|
except KeyError:
|
||||||
log.info("Missing cloud.conf - disabling HTTP auth and SSL")
|
log.info("Missing cloud.conf - disabling HTTP auth and SSL")
|
||||||
|
|
||||||
|
|
||||||
router = self._create_zmq_router()
|
router = self._create_zmq_router()
|
||||||
|
Loading…
Reference in New Issue
Block a user