79415449

Date: 2025-02-05 16:29:23
Score: 1
Natty:
Report link

I wanted to share a solution in case anyone runs into the same issue. The problem stemmed from Notion using shared workers to improve performance (you can read more about this here: https://www.notion.com/blog/how-we-sped-up-notion-in-the-browser-with-wasm-sqlite).

This caused Playwright to crash, leaving the process stuck.

To resolve it, I added the following line to the Docker Compose environment:

DEFAULT_LAUNCH_ARGS=["--disable-shared-workers"]

This disabled the shared workers feature when launching the browserless, and that fixed the issue.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: yuvalweis