All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Security
Security
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter

Pipelines, Workers - Pipeline binding configuration field renamed to stream

1mo ago

Source

CloudflarePipelines, Workers - Pipeline binding configuration field renamed to streamcloudflare.com
Snippet from the RSS feed
The pipeline field inside the pipelines binding configuration in your Wrangler configuration file has been renamed to stream . The old field is deprecated but still accepted. Update your configuration to use stream to avoid the deprecation warning. Before (deprecated): wrangler.jsonc { " $schema " : "./node_modules/wrangler/config-schema.json" , " pipelines " : [ { " binding " : "MY_PIPELINE" , " pipeline " : "" } ] } wrangler.toml [[ pipelines ]] binding = "MY_PIPELINE" pipeline = "" After: wrangler.jsonc { " $schema " : "./node_modules/wrangler/config-schema.json" , " pipelines " : [ { " binding " : "MY_PIPELINE" , " stream " : "" } ] } wrangler.toml [[ pipelines ]] binding = "MY_PIPELINE" stream = "" No other changes are required. The binding name, TypeScript types, and runtime API ( env.MY_PIPELINE.send(...) ) remain the same. For more information on configuring pipeline bindings, refer to Writing to streams .

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.