Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Thanks, could you explain meaning of but only changing the code in a single place in a way that's compatible with the rest of the codebase ? Commented Feb 1, 2021 at 15:07
  • instead of that's a breaking change - you'd need to refactor all the callers of that method, callers of callers, etc., all the way up to the entry point you only change the code doing the call to the async method making it synched. This way no "caller of the caller and so on" needs to be changed Commented Feb 1, 2021 at 15:22