Replies: 1 comment
-
This generally happens when too many ansync functions have been called without finishing. And given that all async functions have a min timeout(0ms), they always get pushed to the end of the stack, and none of them will finish before a loop calling many of them. you have about 11 calls |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm getting this error after running "yarn" or if i try to install any dependency, even though my network connection is pretty solid. This started after i pushed my abi and contract address to the frontend. Any idea what might be wrong?
This is my github repo: https://github.com/Adelani10/transact_FE
adelani@DESKTOP-K83R8M7:
/transact-fe$ yarn/transact-fe$yarn install v1.22.19
info No lockfile found.
warning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json.
[1/4] Resolving packages...
info There appears to be trouble with your network connection. Retrying...
⠁ autoprefixer@10.4.15(node:6511) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
(Use
node --trace-warnings ...
to show where the warning was created)info There appears to be trouble with your network connection. Retrying...
⠄ autoprefixer@10.4.15(node:6511) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
info There appears to be trouble with your network connection. Retrying...
⢀ autoprefixer@10.4.15(node:6511) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
info There appears to be trouble with your network connection. Retrying...
⠐ autoprefixer@10.4.15(node:6511) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
⠁ autoprefixer@10.4.15(node:6511) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit
error An unexpected error occurred: "https://registry.yarnpkg.com/autoprefixer: ".
info If you think this is a bug, please open a bug report with the information provided in "/home/adelani/transact-fe/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
adelani@DESKTOP-K83R8M7:
This is my github repo: https://github.com/Adelani10/transact_FE
Beta Was this translation helpful? Give feedback.
All reactions