Google Chrome stuck processing request
See original GitHub issueWhen using Browser Sync with gulp I get a stuck processing request in Google Chrome on OSX after saving a html file about 5 times. Safari seems to be OK.
CSS changes appear to be fine as Chrome doesnt hang on them. It only seems to be around updating the html files.
This is my BrowserSync setup…
// BrowserSync proxy
gulp.task('browserSync', function() {
browserSync.init({
server: dist
});
});
// BrowserSync reload all Browsers
gulp.task('browserSync-reload', function () {
browserSync.reload();
});
gulp.task('serve', ['browserSync','sass','fileinclude','images'], function() {
gulp.watch("./src/scss/**/*.scss", ['sass']);
gulp.watch("./src/pages/**/*.html", ['fileinclude']);
gulp.watch("./dist/**/*.html", ['browserSync-reload']);
});
Has anyone else noticed this problem?
Issue Analytics
- State:
- Created 8 years ago
- Reactions:2
- Comments:37 (6 by maintainers)
Top Results From Across the Web
Sync issue with Chrome, the page stuck at 'Processing request...'
Close all instances of Chrome and open a single Chrome tab · Open Chrome Settings, and select "Sync and Google Services" · Select...
Read more >Chrome hangs on 'processing request' for 30+ seconds - Reddit
For the past month or two, I've noticed that Chrome gets stuck on "processing request" for an entire 30 seconds, sometimes up to...
Read more >Stalled Logins, processing request... - Google Chrome ...
Open Chrome Settings, and select "Sync and Google Services"; Select "Data from Chrome sync"; From the bottom select "Reset Sync"; Once completed ...
Read more >webpages stuck "processing request" in 1.5.9 until extension ...
I believe I have isolated the problem to this extension -- when I go to chrome://extensions/ and disable this extension any pages that...
Read more >How to Fix a Google Chrome Sending Request
1. Quit the application and relaunch Chrome again to fix the sending request problem. · 2. Remove extensions like SPEEDbit Video Accelerator and...
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
I’m still experiencing this problem…
I am having the same issue. For me - I added an XHR request and once I call “document.write(some parsed JSON)” it was creating me that panding request. @shakyShane I’ve created a public repo for you to reproduce the issue: https://github.com/alexcracea/bs-pending-request - note: Just in case you don’t have gulp globally i added support for you to run “npm run gulp” when you’re inside “.npm” folder.
As you can see, the request from url
ws://localhost:3002/browser-sync/socket.io/?EIO=3&transport=websocket&sid=TR1X04-6mgbAHe7IAAAH
is not being processed. In my case, the browser “loading” icon was appearing only while i call “document.write();”