File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/WorkflowCore.Tests.DynamoDB Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public class DynamoDbDockerSetup : DockerSetup
1111 {
1212 public static string ConnectionString { get ; set ; }
1313
14- public static AWSCredentials Credentials => new EnvironmentVariablesAWSCredentials ( ) ;
14+ public static AWSCredentials Credentials => new BasicAWSCredentials ( "DUMMYIDEXAMPLE" , "DUMMYEXAMPLEKEY" ) ;
1515
1616 public override string ImageName => @"amazon/dynamodb-local" ;
1717 public override int InternalPort => 8000 ;
@@ -30,7 +30,7 @@ public override bool TestReady()
3030 {
3131 ServiceURL = $ "http://localhost:{ ExternalPort } "
3232 } ;
33- AmazonDynamoDBClient client = new AmazonDynamoDBClient ( clientConfig ) ;
33+ AmazonDynamoDBClient client = new AmazonDynamoDBClient ( Credentials , clientConfig ) ;
3434 var resp = client . ListTablesAsync ( ) . Result ;
3535
3636 return resp . HttpStatusCode == HttpStatusCode . OK ;
You can’t perform that action at this time.
0 commit comments