-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Smoke Tests Codegen Working #3155
Merged
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
feeaccd
v1 codegen
sbera87 76ef3f9
updates
sbera87 f877902
updates
sbera87 ae0b5b2
codegen fixes
sbera87 1bba920
add service filter in configuration
sbera87 4dec4b3
add deps
sbera87 fbfb5c6
deps
sbera87 18f0386
projections test
sbera87 4b5a7f0
working codegen from script
sbera87 0233376
codegen script updates
sbera87 346c1f0
working codegen with script
sbera87 dc6da8d
ignore temp files for smithy codegen
sbera87 fb8414b
cleanup + codegen fixes
sbera87 872c19b
tweaks
sbera87 049a36d
remove temp files
sbera87 320e03d
remove temp files
sbera87 5ca8987
This release launches the CreateIntegration, DeleteIntegration, Descr…
aws-sdk-cpp-automation 6b97b8c
Add support for the new optional bucket-region and prefix query param…
aws-sdk-cpp-automation 785f364
Update API model
aws-sdk-cpp-automation 1273eb9
This is an Amazon ECS documentation only update to address tickets.
aws-sdk-cpp-automation 97e4f61
Don't continue polling input stream in case it is closed or in a bad …
SergeyRyabinin cbad9dc
Revert "Don't continue polling input stream in case it is closed or i…
SergeyRyabinin b49ca3a
Update API model
aws-sdk-cpp-automation ac1b079
Added converse support for custom imported models
aws-sdk-cpp-automation 9cb4e54
codegen script updates
sbera87 d44f0eb
This release launches the CreateIntegration, DeleteIntegration, Descr…
aws-sdk-cpp-automation 7a3f507
Add support for the new optional bucket-region and prefix query param…
aws-sdk-cpp-automation f16a2c1
merge
sbera87 b8bc77f
codegen fixes with cas
sbera87 1cf31c7
remove stray lines
sbera87 d3100ca
changes to get all clients to compile
sbera87 f9852cb
handle legacy and new service code generation
sbera87 5ae8434
fixes
sbera87 03cf379
cleanup
sbera87 b27da0e
cleanup
sbera87 31c8317
utilize importer for dependencies
sbera87 0c96460
handle num
sbera87 3f9f29b
cleanup + resolve PR comments
sbera87 c75a2d7
restore
sbera87 efa5bb4
remove helper for case conversion
sbera87 1be4d61
cleanup unused functions
sbera87 b27e018
remove commented lines
sbera87 e1c9608
PR comments fix
sbera87 febfcaf
cleanup
sbera87 c1a3350
cleanup
sbera87 aec431a
cleanup
sbera87 d336778
cleanup
sbera87 d2c23a6
formatting fixes
sbera87 b599f31
remove exceptions
sbera87 90f1772
PR feedback changes
sbera87 69600c5
remove catch exceptions
sbera87 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
cleanup + resolve PR comments
- Loading branch information
commit 3f9f29b58e4bf838eb5c7c8ad3a3b615d72544e8
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dont throw exception, everyon up chain has to check it, never throw or check
Exception
, subclass or throw aRuntimeException
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is your recommendation how I should handle this? I understand that stack unwinding will happen on exception but what do i return when service trait is missing. I can throw a Runtimeexception
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
they have a concept of "checked and unchecked exceptions" in java.
additionally, simple regular
Exception
is too broad and the exception handling error code must catch it and do it's logic accordingly to the exception string message (vs simply type of the exception).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ack. I will switch to runtime exception as it is one of those cases where I have to throw if service trait not found