diff --git a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/java/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.java b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/java/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.java index 9d7c9ad233f6..d4e33ae4a640 100644 --- a/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/java/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.java +++ b/airbyte-cdk/java/airbyte-cdk/s3-destinations/src/main/java/io/airbyte/cdk/integrations/destination/s3/S3StorageOperations.java @@ -220,7 +220,7 @@ private String loadDataIntoBucket(final String objectPath, final SerializableBuf } /** - * Users want deterministic file names (e.g. the first file part is really foo-0.csv Using UUIDs + * Users want deterministic file names (e.g. the first file part is really foo-0.csv). Using UUIDs * (previous approach) doesn't allow that. However, using pure integers could lead to a collision * with an upload from another thread. We also want to be able to continue the same offset between * attempts. So, we'll count up the existing files in the directory and use that as a lazy-offset,