Disabling auth from version string

pull/37/head^2
Jerry Seutter 10 years ago
parent a0e2fe551a
commit b132c901c9

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

@ -172,9 +172,8 @@ class Server(object):
}
log.info("Certs found - starting in SSL mode")
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()

Loading…
Cancel
Save