[elbe-devel] [PATCH 09/10] elbepack: soap: remove beaker middleware

Thomas Weißschuh thomas.weissschuh at linutronix.de
Fri Feb 28 14:59:20 CET 2025


No authentication is performed anymore, so the beaker middleware is
unused.

Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
 debian/control                    |  3 +--
 elbepack/daemons/soap/__init__.py | 11 +----------
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/debian/control b/debian/control
index 2dcc259bcb73347e7203ca4bb6b55fbc4225db46..3486298cf85b9bec90e748fac358e4c3f82f6bd4 100644
--- a/debian/control
+++ b/debian/control
@@ -101,8 +101,7 @@ Depends: ${misc:Depends}, ${python3:Depends},
   python3,
   python3-elbe-bin (= ${binary:Version}),
   python3-elbe-common (= ${binary:Version}),
-  python3-elbe-buildenv (= ${binary:Version}),
-  python3-beaker
+  python3-elbe-buildenv (= ${binary:Version})
 Description: wsgi daemon interface
  subcommand to start wsgi services.
 
diff --git a/elbepack/daemons/soap/__init__.py b/elbepack/daemons/soap/__init__.py
index 1b95d9eef93cf0d96e6377670be80908e08fd852..3ffc85090b039368105b367f3efadea886cd6bfd 100644
--- a/elbepack/daemons/soap/__init__.py
+++ b/elbepack/daemons/soap/__init__.py
@@ -5,8 +5,6 @@
 import logging
 import warnings
 
-from beaker.middleware import SessionMiddleware
-
 # spyne uses a bundled version of six, which triggers warnings in spyne version 2.14.0.
 # As the warnings can happen during any import, a scoped .catch_warnings() is not enough.
 if True:  # avoid flake8 errors for the following imports
@@ -30,12 +28,6 @@ class EsoapApp(Application):
         super().__init__(*args, **kargs)
         self.pm = ProjectManager('/var/cache/elbe')
 
-
-class MySession(SessionMiddleware):
-    def __init__(self, app, pm):
-        self.pm = pm
-        super().__init__(app)
-
     def stop(self):
         self.pm.stop()
 
@@ -46,5 +38,4 @@ def get_app():
                    in_protocol=Soap11(validator='lxml'),
                    out_protocol=Soap11())
 
-    wsgi = WsgiApplication(app)
-    return MySession(wsgi, app.pm)
+    return WsgiApplication(app)

-- 
2.48.1



More information about the elbe-devel mailing list