Skip to content

Commit 8dc9e60

Browse files
authored
fix e2e tests (#1985)
* fix e2e tests * fix-e2e-errors dynamo creation
1 parent 386cea3 commit 8dc9e60

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libs/locking/aws/dynamo_locking.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ func (dynamoDbLock *DynamoDbLock) createTableIfNotExists(ctx context.Context) er
9595
return nil
9696
}
9797
if !isTableNotFoundExceptionError(err) {
98-
slog.Error("Error describing DynamoDB table", "tableName", TABLE_NAME, "error", err)
99-
return err
98+
slog.Info("Error describing DynamoDB table, proceeding to create", "tableName", TABLE_NAME, "error", err)
10099
}
101100

102101
slog.Info("Creating DynamoDB table", "tableName", TABLE_NAME)

0 commit comments

Comments
 (0)