-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
chore(deps): Update aws-config crate #20663
base: master
Are you sure you want to change the base?
Conversation
Also adds the aws-runtime crate as some types were moved there. Signed-off-by: Jesse Szwedko <[email protected]>
Datadog ReportBranch report: ✅ 0 Failed, 7 Passed, 0 Skipped, 25.44s Total Time |
@jszwedko could you please check the failing checks so this can get merged? |
Apologies for the delay. I had looked a bit before, the integration tests for AWS are failing, but I wasn't able to sort it out 😓 I'll try to take another pass soon. |
@jszwedko maybe the issue is with the integration test itself? I am just guessing here, because I don't know what |
Datadog ReportBranch report: ✅ 0 Failed, 7 Passed, 0 Skipped, 25.47s Total Time |
Good observation! I opened a PR to switch from |
@jszwedko now after we fixed the integration tests in another PR, could you please rebase this branch and see if it works now? |
…-config Signed-off-by: Jesse Szwedko <[email protected]>
👍 thanks for the bump on this. I merged in |
Signed-off-by: Jesse Szwedko <[email protected]>
Looks like we are still seeing:
I'll try to dig into this later unless someone else gets to it first. It may just be a matter of a missing feature flag. |
@jszwedko I wonder if the logging should be improved here, there's also typically a message in the AWS error response, which tells what's actually wrong. vector never logs this. This makes it harder to diagnose any issue with the AWS config, like missing permissions. I haven't had the bandwidth to report a proper issue on this. |
I believe "dispatch failure" is an error returned by the SDK before it even makes the request, and so there wouldn't be a response from AWS, but I could be wrong. |
FYI |
It is new in that the integration tests previously didn't hit it, but it does seem like it can potentially be hit in other circumstances too (thanks fro the links!). |
…-config Signed-off-by: Jesse Szwedko <[email protected]>
Signed-off-by: Jesse Szwedko <[email protected]>
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.
/ci-run-integration-aws
rip, it looks like the integration tests are failing. I don't know Rust at all so sorry if this is an obvious statement, but would it be possible to wrap the error being returned with https://docs.rs/aws-sdk-cloudwatch/latest/aws_sdk_cloudwatch/error/struct.DisplayErrorContext.html so we can get more debug output? |
There are some details in the CI logs:
I think this needs further debugging. |
Also adds the aws-runtime crate as some types were moved there.
Closes: #20662