diff --git a/charts/hub-gateway/Chart.yaml b/charts/hub-gateway/Chart.yaml index 96bf98b..32cef0c 100644 --- a/charts/hub-gateway/Chart.yaml +++ b/charts/hub-gateway/Chart.yaml @@ -19,7 +19,7 @@ type: application # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "0.9.2" +version: "0.9.3" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/hub-gateway/plugins/session.lua b/charts/hub-gateway/plugins/session.lua index 0d5b79a..eb1d5e8 100644 --- a/charts/hub-gateway/plugins/session.lua +++ b/charts/hub-gateway/plugins/session.lua @@ -81,9 +81,7 @@ function _M.access(conf, ctx) local session_token = cookie_value if not session_token then - return 401, json.encode({ - message = "session_cookie not found not found" - }) + return end local kratos_cookie = session_cookie_name .. "=" .. session_token