Skip to content

Commit 879b842

Browse files
committed
remove comment and push version
1 parent d9d9043 commit 879b842

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

fastapi_gae_logging/fastapi_gae_logging.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,9 @@ async def __call__(self, scope: Scope, receive: Receive, send: Send):
250250
if scope["type"] == "http":
251251

252252
# https://stackoverflow.com/questions/64115628/get-starlette-request-body-in-the-middleware-context
253-
# Mock function that returns a cached copy of the request
254-
# so that anyone can ask for the body aftewards from the request object
255-
256253
done = False
257254
chunks: list[bytes] = []
258255

259-
# Taken from https://stackoverflow.com/a/71451740
260256
async def wrapped_receive() -> Message:
261257
nonlocal done
262258
message = await receive()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="fastapi-gae-logging",
5-
version="0.0.9",
5+
version="0.0.10",
66
description="Custom Cloud Logging handler for FastAPI (or any Starlette based) applications deployed in Google App Engine. \
77
Groups logs coming from the same request lifecycle and propagates the maximum log level \
88
throughout the request lifecycle using middleware and context management.",

0 commit comments

Comments
 (0)