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
The HTTPJSON input has grown to be unwieldy to maintain and debug. To address this we should refactor it to reduce the complication of the code.
Aspects to target:
There is significant code non-locality, making it hard to reason about behaviour quickly. This includes similar code in single step processing v multi-step processing (the later derived from the former) living in variously in different files or adjacent.
There is significant use of indirection that makes the code more opaque than is truly necessary.
It is not clear that the use of concurrency provides a performance benefit and introduces the requirement for locking in a number of places, so look into transforming to sequential processing where possible.
The HTTPJSON input has grown to be unwieldy to maintain and debug. To address this we should refactor it to reduce the complication of the code.
Aspects to target:
ref: #34929
The text was updated successfully, but these errors were encountered: