Skip to content

Commit

Permalink
Change MakeReadAsyncBlocking default to false (#937)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Engel authored Mar 1, 2021
1 parent bcdeff3 commit ca2fe25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static bool MakeReadAsyncBlocking
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
return AppContext.TryGetSwitch(MakeReadAsyncBlockingString, out _makeReadAsyncBlocking) ? _makeReadAsyncBlocking : true;
return AppContext.TryGetSwitch(MakeReadAsyncBlockingString, out _makeReadAsyncBlocking) ? _makeReadAsyncBlocking : false;
}
}
}
Expand Down

0 comments on commit ca2fe25

Please sign in to comment.