This topic was automatically generated from Slack. You can find the original thread here.
Hi, I keep getting “spawn ETXTBSY” error on my node.js step, not sure why. It used to work perfectly. Not sure what it means.
This topic was automatically generated from Slack. You can find the original thread here.
Hi, I keep getting “spawn ETXTBSY” error on my node.js step, not sure why. It used to work perfectly. Not sure what it means.
Hi , maybe some libraries you used have their version upgraded and became incompatible with Pipedream.
I would suggest you check all the libraries that you use to see if is there any new version from the last time that it worked.
The ETXTBSY
error code is thrown when puppeteer is trying to start the Chromium binary but the binary file is under a exclusive lock - that can happen if you don’t wait for executablePath
to resolve, or, if you call executablePath
multiple times.
found this on github ^
Have you used Puppeteer library?
yes
Then I you can refer to Pipedream’s Puppeteer action implementation for a solution that’s working
i’m importing it like this:
import { puppeteer } from ‘@pipedream/browsers’;
Hi Matan,
Is this a deployed workflow? If so, have you tried increasing the memory to 2 gbs? Chromium requires a high usage of memory to start.
Also, if you could share the entire code step’s source it would greatly help us recreate your issue.