You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: apply a thread safe lock over dataloaders (#1838)
### 📝 Description
apply a synchronized lock over data loaders, the reactive stack could
cause multiple threads trying to access to the same memory.
### 🔗 Related Issues
#1837#1819
Copy file name to clipboardExpand all lines: executions/graphql-kotlin-dataloader/src/main/kotlin/com/expediagroup/graphql/dataloader/KotlinDataLoaderRegistry.kt
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2022 Expedia, Inc
2
+
* Copyright 2023 Expedia, Inc
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -61,17 +61,23 @@ class KotlinDataLoaderRegistry(
0 commit comments