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 current error handling chain in s3Storage is not distinctly designed to differentiate between the chain and the handlers on the chain, with the distinction being made only in naming, which leads to poor code readability and maintainability.
Optimization: Create an interface for the chain so that the caller can clearly understand that the call is to the chain, not to an individual handler. For example, in the current S3Storage, what needs to be called is the chain, but the parameter passed is the handler.
The text was updated successfully, but these errors were encountered:
The current error handling chain in s3Storage is not distinctly designed to differentiate between the chain and the handlers on the chain, with the distinction being made only in naming, which leads to poor code readability and maintainability.
Optimization: Create an interface for the chain so that the caller can clearly understand that the call is to the chain, not to an individual handler. For example, in the current S3Storage, what needs to be called is the chain, but the parameter passed is the handler.
The text was updated successfully, but these errors were encountered: