🐞SPFx v1.15 (and prior) - gulp serve race condition #8258
Labels
area:spfx
Category: SharePoint Framework (not extensions related)
status:working-on-it
Known issue / feature being addressed. Will use other "status:*" labels & comments for more detail.
type:bug-suspected
Suspected bug (not working as designed/expected). See “type:bug-confirmed” for confirmed bugs.
Target SharePoint environment
SharePoint Online
What SharePoint development model, framework, SDK or API is this about?
💥 SharePoint Framework
Developer environment
macOS
What browser(s) / client(s) have you tested
Additional environment details
Describe the bug / error
This happened periodically before, but with SPFx v1.15 it's happening 100% of the time. I verified this with other developers first.
When running gulp serve, the build toolchain launches the external browser with the default testing URL of the hosted workbench at the start of the tasks, but if the browser loads the hosted workbench before the local webserver is running to serve up the manifest.js file, the workbench reports the following error:
This is because the local build toolchain hasn't finished building & thus spinning up the local webserver to serve up the manifest.js file. Classic definition of a race condition.
I observed this happening prior to 1.15 but not with much frequency. Now I see it 100% of the time on multiple machines. Looking at the definition of the serve task, it's running tasks in serial and the first one is the serve task.
💡 Proposed solution
Change the order of the tasks - only start the gulp serve task AFTER the local project is built & the web server is running.
The serve task is defined in the NPM package @microsoft/sp-build-web v1.15.0... specifically look at the generated JS:
./lib/SPWebBuildRig.js line 124:
The beginning of the
executable
property shows how it's running tasks in serial, starting with the serve task.Steps to reproduce
Workaround
Expected behavior
Workbench wouldn't load until AFTER the local webserver has started and can serve up the built files.
The text was updated successfully, but these errors were encountered: