We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc808f commit be5d2ddCopy full SHA for be5d2dd
packages/wrangler/src/pipelines/cli/sinks/create.ts
@@ -127,6 +127,11 @@ export const pipelinesSinksCreateCommand = createCommand({
127
"--catalog-token is required for r2-data-catalog sinks"
128
);
129
}
130
+ if (args.format === "json") {
131
+ throw new CommandLineArgsError(
132
+ "r2-data-catalog sinks only support parquet format, not JSON"
133
+ );
134
+ }
135
136
},
137
async handler(args, { config }) {
packages/wrangler/src/pipelines/cli/streams/utils.ts
@@ -222,7 +222,7 @@ export async function displayUsageExamples(
222
(customBindingName) => ({
223
pipelines: [
224
{
225
- pipeline: stream.name,
+ pipeline: stream.id,
226
binding: customBindingName ?? bindingName,
227
228
],
0 commit comments