From a6a468d202bdac29b25b32d5ec91f58543ee91a8 Mon Sep 17 00:00:00 2001 From: evantahler Date: Thu, 28 Dec 2023 08:52:10 -0800 Subject: [PATCH] comment fix --- .../cdk/integrations/destination/s3/S3StorageOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,