1
0
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:
Jerry Seutter 2014-09-18 20:39:12 +00:00
parent a0e2fe551a
commit b132c901c9
2 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,6 @@ from ..version import __version__
class VersionHandler(GNS3BaseHandler):
@tornado.web.authenticated
def get(self):
response = {'version': __version__}
self.write(response)

View File

@ -172,7 +172,6 @@ class Server(object):
}
log.info("Certs found - starting in SSL mode")
except KeyError:
log.info("Missing cloud.conf - disabling HTTP auth and SSL")