-
Notifications
You must be signed in to change notification settings - Fork 204
[Draft] Add ECS Service Discovery funcs #4681
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
Conversation
Signed-off-by: t-kikuc <[email protected]>
9989635 to
c8ed0ad
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #4681 +/- ##
==========================================
- Coverage 30.82% 30.76% -0.06%
==========================================
Files 221 221
Lines 25935 25997 +62
==========================================
+ Hits 7995 7999 +4
- Misses 17289 17348 +59
+ Partials 651 650 -1 ☔ View full report in Codecov by Sentry. |
|
/review |
PR AnalysisMain themeThe main theme of this PR is to update dependencies in the project's go.mod file. PR summaryThis PR updates several dependencies in the go.mod file, including the Type of PREnhancement PR Feedback:General suggestionsThis PR appears to be straightforward and achieves the desired goal of updating dependencies. It is always beneficial to keep project dependencies up to date to ensure compatibility and security. Good job! Code feedbackgo.mod
Security concerns:No |
PR AnalysisMain themeBug fix PR summaryThis PR updates the version of the Type of PRBug fix PR Feedback:General suggestionsIt's good practice to keep dependencies updated to ensure the latest features and bug fixes are available. Great job on updating the Code feedbackFile: go.sumSuggestion 1 (important)The new version of github.com/aws/aws-sdk-go-v2 v1.23.0 h1:PiHAzmiQQr6JULBUdvR8fKlA+UPKLT/8KbiqpFBWiAo=
github.com/aws/aws-sdk-go-v2 v1.23.0/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA=Suggestion 2 (medium)The github.com/aws/aws-sdk-go-v2 v1.17.7 h1:CLSjnhJSTSogvqUGhIC6LqFKATMRexcxLZ0i/Nzk9Eg=
github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw=
...
-github.com/aws/aws-sdk-go-v2 v2.5.3 h1:AplLJCtIaUZDCbr6+gLYdsYNxne4iuaboJhVt9d+WXI=
-github.com/aws/aws-sdk-go-v2 v2.5.3/go.mod h1:ify42Rb7nKeDDPkFjKn7q1bPscVPu/+gmHH8d2c+anU=
...
+github.com/aws/aws-sdk-go-v2 v1.23.0 h1:PiHAzmiQQr6JULBUdvR8fKlA+UPKLT/8KbiqpFBWiAo=
+github.com/aws/aws-sdk-go-v2 v1.23.0/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA=File: go.modSuggestion 3 (important)The new version of github.com/aws/aws-sdk-go-v2 v1.23.0/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA=Suggestion 4 (medium)The module example.com/my-module
go 1.16
require (
...
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10/go.mod h1:VeTZetY5KRJLuD/7fkQXMU6Mw7H5m/KP2J5Iy9osMno=
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.11.0/go.mod h1:mqqj6Q74ubD7lEqtf9Ge2gZrxJXmiJHOop6c9mfuPO4=
...
github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYs |
PR AnalysisMain themeThe main theme of this PR is to add functionality for interacting with the AWS ECS service discovery in the ECS client. PR summaryThis PR adds methods to the Type of PREnhancement PR Feedback:General suggestionsIt would be helpful to include some comments or docstrings to explain the purpose and usage of the newly added methods and helper functions. This will improve the readability and maintainability of the code. Code feedbackpkg/app/piped/platformprovider/ecs/client.go:49The pkg/app/piped/platformprovider/ecs/client.go:49It would be beneficial to include a comment above the pkg/app/piped/platformprovider/ecs/client.go:79Consider adding error handling for potential errors that may occur when creating the pkg/app/piped/platformprovider/ecs/client.go:491Consider adding error handling for potential errors that may occur when calling pkg/app/piped/platformprovider/ecs/client.go:508Consider adding error handling for potential errors that may occur when calling Security concerns:No |
Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: t-kikuc <[email protected]>
|
I closed this PR because PR #4685 is better to merge. |
What this PR does / why we need it:
Which issue(s) this PR fixes:
Part of #4616
Does this PR introduce a user-facing change?: