Skip to content

Commit

Permalink
small fix in event bridge and s3 message bus adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Aribart committed Aug 29, 2023
1 parent 8b86369 commit e8e2b32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class EventBridgeS3MessageBusAdapter implements MessageChannelAdapter {
}

const bucketName = this.getS3BucketName();
const fileKey = [this.s3Prefix, ...filePath].join('/');
const fileKey = [this.s3Prefix, ...filePath].join('');

await this.s3Client.send(
new PutObjectCommand({
Expand Down

0 comments on commit e8e2b32

Please sign in to comment.