Explorar o código

chore(api): remove setting of expired remember_token cookie in after_request (#10582)

-LAN- hai 5 meses
pai
achega
3e04c92ff9
Modificáronse 1 ficheiros con 0 adicións e 1 borrados
  1. 0 1
      api/app.py

+ 0 - 1
api/app.py

@@ -53,7 +53,6 @@ if dify_config.TESTING:
 @app.after_request
 def after_request(response):
     """Add Version headers to the response."""
-    response.set_cookie("remember_token", "", expires=0)
     response.headers.add("X-Version", dify_config.CURRENT_VERSION)
     response.headers.add("X-Env", dify_config.DEPLOY_ENV)
     return response