-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix supported list of intrinsic upload path styles
**Why?** When the `Resolver` would find a usage of an intrinsic upload, it would check the requested path style against an outdated list of supported path styles. **How did this happen?** The `S3` class implements the path styles, but did not maintain the list of supported paths. While new paths were added to the S3 class, its supported list of paths in the `Resolver` class was not updated. With this change, the supported list of path styles becomes a class method on the `S3` class instead. Such that the list and its implementation are managed by the same class instead.
- Loading branch information
Showing
3 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters