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
- Change VisibilityTimeoutSeconds to VisibilityTimeout
- Applies to both CreateStandardQueueAsync and CreateFifoQueueAsync
- Fixes InvalidAttributeNameException in LocalStack tests
Copy file name to clipboardExpand all lines: docs/Cloud-Integration-Testing.md
+26-13Lines changed: 26 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -696,26 +696,39 @@ services:
696
696
697
697
**AWS Credential Configuration:**
698
698
699
-
The test infrastructure automatically sources AWS credentials from environment variables when available, falling back to default test credentials:
699
+
The test infrastructure uses `BasicAWSCredentials` with dummy values for LocalStack testing. This approach provides better compatibility with AWS SDK endpoint resolution compared to `AnonymousAWSCredentials`.
**Note**: LocalStack does not validate AWS credentials. The AWS SDK can use `AnonymousAWSCredentials` to bypass credential validation, eliminating the need for dummy access keys.
807
+
**Note**: LocalStack does not validate AWS credentials. The test infrastructure uses `BasicAWSCredentials` with dummy "test"/"test" values for better compatibility with AWS SDK endpoint resolution. This approach avoids endpoint override issues that can occur with `AnonymousAWSCredentials`.
0 commit comments