question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Google Chrome stuck processing request

See original GitHub issue

When 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:open
  • Created 8 years ago
  • Reactions:2
  • Comments:37 (6 by maintainers)

github_iconTop GitHub Comments

3reactions
Teun87commented, May 24, 2017

I’m still experiencing this problem…

3reactions
alexcraceacommented, Feb 16, 2017

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();”

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found