-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] expected expression, got '<' #9740
Comments
This is a really bad experience @mohanarpit @riodeuno @hetunandu |
This issue has not seen activity for a while. It will be closed in 7 days unless further activity is detected. |
This issue has not seen activity for a while. It will be closed in 7 days unless further activity is detected. |
@hiteshjoshi @arunvjn Yes, this happens when the browser requests How does this happen?nginx automatically serves index.html or a 404.html, when the resource requested isn't available. Which scenario do I think causes this?Say, we are trying to fetch
In this while, there is a deployment2 which has happened, resulting in the actual asset being I suspect the cause is 4. |
@sharat87, the current finding suggests that this happens when the server is down and js files are not being served at all. |
@riodeuno, thanks for the detailed write-up. So, if the service worker got a 404 response from the server, instead of the HTML, will it realize its mistake and update the JS filename? With the new hash? If yes, I can get NGINX to return 404 here, without affecting the rest of the functionality. Edit, for completeness, if the answer to the above question is yes, the we'll add the below block to our NGINX configuration and this issue will be resolved. location ~ \.js$ {
try_files \$uri =404;
} |
After some debugging, we noticed that #8324 was not kicking in because the right events were not getting triggered when the user comes back to a tab after some time |
This issue can only be verified over time by checking if the trend here goes down We can look back at this after a couple of version releases |
Seems to still be present |
New sentry errors are unrelated to this issue |
The new sentry errors will be fixed in #27519 |
Sentry Issue: APPSMITH-G5
The text was updated successfully, but these errors were encountered: