You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After getting rid of the of /server/api request for #3961, one more /server/api check was found in the ServerCheckGuard that will be performed with every load to check if the server is not down.
This can still affect performance when a slower REST API is used.
The server check can be made more "positive" since any other call will also fail when the server is down. This can be leveraged to avoid having to make the additional api call on every page load.
Describe the bug
After getting rid of the of /server/api request for #3961, one more /server/api check was found in the ServerCheckGuard that will be performed with every load to check if the server is not down.
This can still affect performance when a slower REST API is used.
The server check can be made more "positive" since any other call will also fail when the server is down. This can be leveraged to avoid having to make the additional api call on every page load.
Related work
#3961
The text was updated successfully, but these errors were encountered: