concurrentFeatures error
See original GitHub issueWhat version of Next.js are you using?
12.0.2
What version of Node.js are you using?
16.12.0
What browser are you using?
Chrome
What operating system are you using?
Windows 11
How are you deploying your application?
Development Server | yarn dev
Describe the Bug
error - unhandledRejection: TypeError: ReactDOMServer.renderToReadableStream is not a function
Expected Behavior
It should not throw this error
To Reproduce
Enable the following experiments
concurrentFeatures: true,
serverComponents: true,
reactRoot: true
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
python - Exception handling in concurrent.futures.Executor.map
If a func call raises an exception, then that exception will be raised when its value is retrieved from the iterator. The following...
Read more >concurrent.futures — Launching parallel tasks — Python 3.11 ...
Derived from RuntimeError , this exception class is raised when an executor is broken for some reason, and cannot be used to submit...
Read more >How to Handle Exceptions With the ThreadPoolExecutor in ...
from concurrent.futures import ThreadPoolExecutor ... The task raises an exception and the result received is an error message.
Read more >Raising Exceptions in Python Futures - skeptric
Python concurrent.futures are a handy way of dealing with ... careful it will swallow your exceptions leading to difficult to debug errors.
Read more >error using concurrent.futures (ThreadPoolExecutor) in ...
error using concurrent.futures (ThreadPoolExecutor) in Synapse Apache Spark notebook. I have an unpredictable error.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
With concurrent features enabled, they’re been deployed to edge runtime. We don’t support native node modules like
dns
running in the edge runtime. Will try to improve the error message soon or laterIs there any current workaround to this issue?