Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues with logging contextvars #31

Merged
merged 4 commits into from
Nov 1, 2023
Merged

Fix issues with logging contextvars #31

merged 4 commits into from
Nov 1, 2023

Conversation

caspervdw
Copy link
Contributor

No description provided.

@caspervdw caspervdw requested a review from byrman November 1, 2023 10:46
async def wrapped_coro() -> R:
for ctx_var, value in context_dump:
ctx_var.set(value)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ik begin langzamerhand een Paracetamol nodig te hebben, maar ctx_var hééft deze value toch al? Moet in een andere context niet een hele nieuwe ContextVar worden gemaakt met dezelfde waarde?

Copy link
Contributor Author

@caspervdw caspervdw Nov 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Het is een raar fenomeen die contextvars. Maar het werkt echt zo: je maakt een globale ContextVar instantie aan, die een andere waarde kan hebben binnen verschillende contexten.

Een andere thread is een andere context, dacht ik.

Maar, wat blijkt, het is default gedrag van run_coroutine_threadsafe om de context te propageren, ook naar een andere thread. Dus wat ik hier doe is al in asyncio geimplementeerd. Ik heb deze wijziging dus teruggedraaid en inderdaad: de test die ik heb geschreven werkt nog steeds.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

@caspervdw caspervdw merged commit cba405a into main Nov 1, 2023
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants