File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public final class ExecutionContext: @unchecked Sendable {
5353 }
5454 set {
5555 // Writes occur sequentially.
56- return errorsQueue. async ( flags: . barrier) {
56+ return errorsQueue. sync ( flags: . barrier) {
5757 self . _errors = newValue
5858 }
5959 }
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public final class GraphQLSchema: @unchecked Sendable {
4949 }
5050 set {
5151 // Writes occur sequentially.
52- return validationErrorQueue. async ( flags: . barrier) {
52+ return validationErrorQueue. sync ( flags: . barrier) {
5353 self . _validationErrors = newValue
5454 }
5555 }
@@ -77,7 +77,7 @@ public final class GraphQLSchema: @unchecked Sendable {
7777 }
7878 set {
7979 // Writes occur sequentially.
80- return subTypeMapQueue. async ( flags: . barrier) {
80+ return subTypeMapQueue. sync ( flags: . barrier) {
8181 self . _subTypeMap = newValue
8282 }
8383 }
You can’t perform that action at this time.
0 commit comments