Commit 8290b0a
macos/linux: fix NetworkServiceInProcess feature name (was "2"-less variant)
The Chrome 130+ feature that runs the network service inside the browser
process is named "NetworkServiceInProcess2" (the "2" was appended when the
implementation was significantly refactored). The tests were passing
"NetworkServiceInProcess" (no "2"), which Chrome silently ignores, so the
network service was still spawned as a utility subprocess.
On macOS CI runners the utility subprocess calls bootstrap_look_up for the
MachPortRendezvousServer and gets BOOTSTRAP_UNKNOWN_SERVICE (1102), then
terminates with "No rendezvous client, terminating process (parent died?)".
This causes the browser to report the network service crash and restart in
an infinite loop, preventing any page from loading.
Fix: use "NetworkServiceInProcess2" so the network service runs inside the
browser process and no bootstrap_look_up is needed.
Also removed --disable-features=StorageServiceOutOfProcess from both test
files: that feature name does not exist in Chrome 146 (confirmed via the
Chromium 146.0.7680.179 source tag), so the switch was silently ignored.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent c3d48ef commit 8290b0a
2 files changed
Lines changed: 12 additions & 12 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
169 | 169 | | |
170 | 170 | | |
171 | 171 | | |
172 | | - | |
173 | | - | |
174 | | - | |
175 | | - | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
176 | 176 | | |
177 | 177 | | |
178 | 178 | | |
| |||
193 | 193 | | |
194 | 194 | | |
195 | 195 | | |
196 | | - | |
197 | | - | |
| 196 | + | |
| 197 | + | |
198 | 198 | | |
199 | 199 | | |
200 | 200 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
135 | | - | |
136 | | - | |
137 | | - | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
138 | 138 | | |
139 | 139 | | |
140 | 140 | | |
| |||
151 | 151 | | |
152 | 152 | | |
153 | 153 | | |
154 | | - | |
155 | | - | |
| 154 | + | |
| 155 | + | |
156 | 156 | | |
157 | 157 | | |
158 | 158 | | |
| |||
0 commit comments