diff src/luan/modules/http/Server.luan @ 809:09d518d313b7

remove SessionManager
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 08 Sep 2016 16:38:30 -0600
parents 9c13a15a4002
children ea1768c00d03
line wrap: on
line diff
--- a/src/luan/modules/http/Server.luan	Thu Sep 08 16:13:27 2016 -0600
+++ b/src/luan/modules/http/Server.luan	Thu Sep 08 16:38:30 2016 -0600
@@ -23,7 +23,6 @@
 local ContextHandler = require "java:org.eclipse.jetty.server.handler.ContextHandler"
 local GzipHandler = require "java:org.eclipse.jetty.server.handler.GzipHandler"
 local HandlerWrapper = require "java:org.eclipse.jetty.server.handler.HandlerWrapper"
-local SessionHandler = require "java:org.eclipse.jetty.server.session.SessionHandler"
 local AuthenticationHandler = require "java:luan.modules.http.AuthenticationHandler"
 local LuanHandler = require "java:luan.modules.http.LuanHandler"
 local NotFound = require "java:luan.modules.http.NotFound"
@@ -74,7 +73,7 @@
 end
 
 local hc = HandlerCollection.new()
-hc.setHandlers { SessionHandler.new(), M.handler_wrapper, DefaultHandler.new(), M.log_handler }
+hc.setHandlers { M.handler_wrapper, DefaultHandler.new(), M.log_handler }
 
 
 function M.init(dir)