-
Notifications
You must be signed in to change notification settings - Fork 15
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: Rounding issues with decimal numbers - fixed #169
Conversation
Will test later but does it resolve the warnings too ? |
Thanks, yes this final check fixes
|
I tried to reproduce the issue. What i did:
The issue is not fixed -> correct the fix is not yet in the main branch - fine.Then i checkout the branch 168-bug-rounding-issues-with-decimal-numbers and again:
The issue is not fixed -> bug ?? the fix is not yet in the main branch - not fine. Then i check for the source in the browser - no updated - method can not be found (fixMachineEpsilonProblem):
|
Will try to have a look at this next week! |
After checking the nginx configuration, finally found this issue in the config, there was a cache setting enforcing caching main.js , ... for 1 years -> changed 1min. (60s) - this is fine and sould resolve the reported caching issue. |
Changing the nginx config will have performance impact in production most likely... |
...I understand that completely. But on the other hand, the user will ask for the latest version after a bug fix or new features and so the browser cache should be "reset" as soon as a new version is deployed. We may need to find a good time for out-of-cache. If the user refreshes more often than one time per minute, he will not get a new version - the browser is still using the latest cached version (read from disk cache). If the version on the server side does not change, HTTP will return 304 "no change", then the file will not be fully transferred, which hardly affects performance - the usual case. If there is an update on the server side, the full file must be transferred, which is correct. |
…netzgrafik-editor-frontend into 168-bug-rounding-issues-with-decimal-numbers
Angular changes the filenames in production mode (e.g. |
Sounds good, but I don't understand all the details. If I am correct, can the proposed change be merged without having a direct impact on production runtime? |
…//github.com/SchweizerischeBundesbahnen/netzgrafik-editor-frontend into 168-bug-rounding-issues-with-decimal-numbers
Description
Issues
Checklist
documentation/