Skip to content

Commit 728191f

Browse files
committed
S3 and GCS: default value for compression settings changed to gzip. Better description
1 parent 5220119 commit 728191f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

webapps/console/lib/schema/destinations.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,13 @@ export const blockStorageSettings = z.object({
221221
.enum(["ndjson", "ndjson_flat", "csv"])
222222
.default("ndjson")
223223
.describe(
224-
"Format of the files stored in the block storage: <code>ndjson</code> - Newline Delimited JSON, <code>ndjson_flat</code> - Newline Delimited JSON flattened, <code>csv</code> - CSV"
224+
"Format of the files stored in the block storage: <b>ndjson</b> - Newline Delimited JSON, <b>ndjson_flat</b> - Newline Delimited JSON flattened, <b>csv</b> - CSV"
225225
),
226226
compression: z
227227
.enum(["gzip", "none"])
228-
.default("none")
228+
.default("gzip")
229229
.describe(
230-
"Compression algorithm used for the files stored in the block storage: <code>gzip</code> - GZIP, <code>none</code> - no compression."
230+
"Compression mode used for the files stored in the block storage:<br/><b>gzip</b> - files will be compressed and have <code>.gz</code> filename suffix and <code>Content-Type: application/gzip</code><br/><b>none</b> - no compression, <code>Content-Type</code> and file extension will be set according to the format"
231231
),
232232
});
233233

0 commit comments

Comments
 (0)