Skip to content

Commit 6fdefe2

Browse files
minor adjustments
1 parent b98e56f commit 6fdefe2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs-v2/pages/troubleshooting.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ Use Pipedream's [built-in Delay actions](/workflows/flow-control/#delay) to dela
250250

251251
Here are a few things that can help your workflow execute faster:
252252

253-
1. **Increase Memory Allocation:** [Increase your workflow memory](/workflows/settings#memory) to at least 512 MB. Raising the memory limit will proportionally increase CPU resources, leading to improved performance and reduced latency.
253+
1. **Increase Memory Allocation:** Increase your [workflow memory](/workflows/settings#memory) to at least 512 MB. Raising the memory limit will proportionally increase CPU resources, leading to improved performance and reduced latency.
254254

255-
2. **Return Static HTTP Responses:** If your workflow is triggered by an HTTP source, [return a static HTTP response](/workflows/triggers#http-responses) directly from the trigger configuration. This ensures the HTTP response is sent to the caller immediately, before the rest of the workflow steps are executed.
255+
2. **Return Static HTTP Responses:** If your workflow is triggered by an HTTP source, return a [static HTTP response](/workflows/triggers#http-responses) directly from the trigger configuration. This ensures the HTTP response is sent to the caller immediately, before the rest of the workflow steps are executed.
256256

257-
3. **Simplify Your Workflow:** Reduce the number of steps and [segments](/workflows/control-flow#workflow-segments) in your workflow. This lowers the overhead involved in managing step execution and exports.
257+
3. **Simplify Your Workflow:** Reduce the number of [steps](/workflows/steps#code-actions) and [segments](/workflows/control-flow#workflow-segments) in your workflow. This lowers the overhead involved in managing step execution and exports.
258258

259259
4. **Activate Warm Workers:** Use and increase the number of dedicated workers to [eliminate cold starts](/workflows/settings#eliminate-cold-starts), ensuring your workflow is ready to execute immediately.
260260

docs-v2/pages/workflows/triggers.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ import got from "got";
195195
export default defineComponent({
196196
async run({ steps, $ }) {
197197
const pipeline = promisify(stream.pipeline);
198-
199198
await pipeline(
200199
got.stream(steps.trigger.event.body.raw_body_url),
201200
fs.createWriteStream(`/tmp/raw_body`)

0 commit comments

Comments
 (0)