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 Race Condition when Cache is Used #166

Merged
merged 1 commit into from
Nov 10, 2024
Merged

Conversation

ricoberger
Copy link
Owner

When to requests were accessing the cache during the same time, there
was a race condition because of the concurrent access to the map which
holds the cached entries.

This is now fixed by adding a lock for the cache, so that multiple
requests can not access the cache in parallel.

Fixes #157

When to requests were accessing the cache during the same time, there
was a race condition because of the concurrent access to the map which
holds the cached entries.

This is now fixed by adding a lock for the cache, so that multiple
requests can not access the cache in parallel.
@ricoberger ricoberger self-assigned this Nov 10, 2024
@ricoberger ricoberger added the changelog: fixed Something which wasn't working is fixed label Nov 10, 2024
@ricoberger ricoberger merged commit a4c568a into main Nov 10, 2024
1 check passed
@ricoberger ricoberger deleted the fix-race-when-cache-is-used branch November 10, 2024 10:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog: fixed Something which wasn't working is fixed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Race condition when cache duration is set for a script.
1 participant