aspyx-service 0.10.6__py3-none-any.whl → 0.10.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aspyx-service might be problematic. Click here for more details.
- aspyx_service/server.py +11 -11
- {aspyx_service-0.10.6.dist-info → aspyx_service-0.10.7.dist-info}/METADATA +1 -1
- {aspyx_service-0.10.6.dist-info → aspyx_service-0.10.7.dist-info}/RECORD +5 -5
- {aspyx_service-0.10.6.dist-info → aspyx_service-0.10.7.dist-info}/WHEEL +0 -0
- {aspyx_service-0.10.6.dist-info → aspyx_service-0.10.7.dist-info}/licenses/LICENSE +0 -0
aspyx_service/server.py
CHANGED
|
@@ -260,10 +260,10 @@ class FastAPIServer(Server):
|
|
|
260
260
|
for key, value in local_response.delete_cookies.items():
|
|
261
261
|
json_response.delete_cookie(
|
|
262
262
|
key,
|
|
263
|
-
path=value
|
|
264
|
-
domain=value
|
|
265
|
-
secure=value
|
|
266
|
-
httponly=value
|
|
263
|
+
path=value["path"],
|
|
264
|
+
domain=value["domain"],
|
|
265
|
+
secure=value["secure"],
|
|
266
|
+
httponly=value["httponly"]
|
|
267
267
|
)
|
|
268
268
|
|
|
269
269
|
# create
|
|
@@ -271,13 +271,13 @@ class FastAPIServer(Server):
|
|
|
271
271
|
for key, value in local_response.cookies.items():
|
|
272
272
|
json_response.set_cookie(
|
|
273
273
|
key,
|
|
274
|
-
value=value
|
|
275
|
-
max_age=value
|
|
276
|
-
expires=value
|
|
277
|
-
path=value
|
|
278
|
-
domain=value
|
|
279
|
-
secure=value
|
|
280
|
-
httponly=value
|
|
274
|
+
value=value["value"],
|
|
275
|
+
max_age=value["max_age"],
|
|
276
|
+
expires=value["expires"],
|
|
277
|
+
path=value["path"],
|
|
278
|
+
domain=value["domain"],
|
|
279
|
+
secure=value["secure"],
|
|
280
|
+
httponly=value["httponly"]
|
|
281
281
|
)
|
|
282
282
|
|
|
283
283
|
ResponseContext.reset()
|
|
@@ -4,10 +4,10 @@ aspyx_service/channels.py,sha256=u1afqUfcmVgLxXDXC2BYHH-dMozLcmVROuPRpypSwr8,163
|
|
|
4
4
|
aspyx_service/healthcheck.py,sha256=vjfY7s5kd5mRJynVpvAJ4BvVF7QY1xrvj94Y-m041LQ,5615
|
|
5
5
|
aspyx_service/registries.py,sha256=bnTjKb40fbZXA52E2lDSEzCWI5_NBKZzQjc8ffufB5g,8039
|
|
6
6
|
aspyx_service/restchannel.py,sha256=0Xb8grEE8Dyx3g3ENl78DDMKa2WGjIKIPgOrpw5p9ak,8470
|
|
7
|
-
aspyx_service/server.py,sha256=
|
|
7
|
+
aspyx_service/server.py,sha256=75B1l__GknjwKX2jGIoR4YUTaaFBEVQ_qfHW2a3cy4U,13354
|
|
8
8
|
aspyx_service/service.py,sha256=drETAZasbYJZisnmbhAqW0-mHghJ3IWyPaU-7etxvBI,27003
|
|
9
9
|
aspyx_service/session.py,sha256=HjGpnmwdislc8Ur6pQbSMi2K-lvTsb9_XyO80zupiF8,3713
|
|
10
|
-
aspyx_service-0.10.
|
|
11
|
-
aspyx_service-0.10.
|
|
12
|
-
aspyx_service-0.10.
|
|
13
|
-
aspyx_service-0.10.
|
|
10
|
+
aspyx_service-0.10.7.dist-info/METADATA,sha256=mZ2ZsGGqncY4y4pGpeaOy-cDIQu7OHwRWjW09T1jzwM,17946
|
|
11
|
+
aspyx_service-0.10.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
aspyx_service-0.10.7.dist-info/licenses/LICENSE,sha256=n4jfx_MNj7cBtPhhI7MCoB_K35cj1icP9yJ4Rh4vlvY,1070
|
|
13
|
+
aspyx_service-0.10.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|