Horo-san, do you think it's possible to improve the error message ("Service
Worker Fallback Required") or otherwise help the developer understand the
error in this scenario? It looks like the fetch request used mode: no-cors
but it required cors.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
chro...@googlecode.com
unread,
Apr 17, 2015, 6:16:36 AM4/17/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
OK so having CORS on the CDN and removing the mode: 'no-cors' mode and the
credentials: 'include' from the fetch request did resolve the issue!
http://stackoverflow.com/a/29679553/1052033
chro...@googlecode.com
unread,
Apr 20, 2015, 2:04:21 AM4/20/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to chromi...@chromium.org
Updates:
Labels: -Pri-2 Pri-3
Comment #6 on issue 477685 by ho...@chromium.org: "Service Worker Fallback
The message "Service Worker Fallback Required" is an internal message.
It is sent from the browser process to the page to ask blink to send the
fallback request when the page sent CORS request to the SW and the SW
didn't handle the request.
When the page receives the message, it will send the fallback message
(which SkipServiceWorker flag is true).
So the developer can see the fallback request right after the original
request in the inspector.
I think it is better to hide this internal message but the priority is 3.
chro...@googlecode.com
unread,
Apr 20, 2015, 9:57:08 PM4/20/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
I guess the question isn't how to improve the error message, but how we
could make it more clear to the developer what the error is.
Is it expected that setting <video src> to a URL that SW responds to with
an opaque response will not work? If so, should DevTools display an error
for that somewhere, like in the Network tab or console?
chro...@googlecode.com
unread,
Jun 10, 2015, 3:00:30 AM6/10/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
In Chrome 45.0.2454.101 is not fixed
In my case I have this error message with .mp3 files dinamicaly loaded on
my web-application when service-worker is started. Service worker need for
getting push notifications.
chro...@googlecode.com
unread,
Sep 25, 2015, 10:34:51 AM9/25/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to chromi...@chromium.org
Comment #17 on issue 477685 by ho...@chromium.org: "Service Worker Fallback
#14 removed the ambiguous message from the console view.
But it may be better not to show the "(Service Worker Fallback)" item in
the network view.
This is almost meaningless for Web developers.
chro...@googlecode.com
unread,
Dec 15, 2015, 11:50:57 PM12/15/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
[DevTools] Hide "Service Worker Fallback" response from the Network tab.
This message is used for an internal response which is sent from the browser
process to the page's renderer process to consider the CORS preflight logic
when the Service Worker didn't handle the CORS request .
This message is not only meaningless for Web developers but also confusing
them.
http://stackoverflow.com/questions/34035667/service-worker-making-extra-call
So this cl removes the CORS fallback response from the network panel.