-
Notifications
You must be signed in to change notification settings - Fork 61
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
An unreachable appstore stops the API from returning a reply #145
Comments
I just ran into the same problem again with Nextcloud 19.0.4 because the app store is currently (10.10.2020 17:50h) unavailable again. I thought this problem would have already been solved, but I was wrong. If you monitor your server status using the given API access, everything will turn "RED", although only the app store is unreachable 😢 |
I just Updated from 19.0.1 to 20.0.0.9 (running via docker-compsose). |
Same problem as @j-ed here. I use Nagios to monitor my nextcloud instances via the API and it has been flapping for 3days. I don't have a problem with app store or the upgrade servers being temporarily down/slow as I usually delay upgrades by a few weeks anyway but the API not working everytime the appstore goes down is a little frustrating. |
I don't even think we should be polling the appstore during every poll of the One option - that only addresses the timeouts but doesn't eliminate the constant polling - would be to add a means to override the hardcoded timeouts in the appstorefetcher. A better option: There's already a background job that handles high overhead storage stats collection. We could move the appstore polling to a dedicated job for keeping the data about available app updates fresh enough for the endpoint. Another option might be tapping into the existing job data from the I can think of a few hacks too, but they're all ugly. A quick fix might be to only call |
Recently merged #518 indirectly helps with this by removing the app check from being the default behavior. |
I think you meant #526, which was released with NC 28. Which means that this ticket can be closed now? |
Expected behavior
The external monitor API should always return a reply. If some information, like e.g. the number of available app updates couldn't be evaluated, it should jump over this information instead of aborting its function at all.
Current behavior
The external monitor API, which by default also shows information about available app updates, doesn't return a reply at all if the app store is unreachable, for whatever reason.
Steps to reproduce
The app store is temporarily unreachable
Execute the API call, like e.g.
=> The request will most likely not return any output.
Check the Nextcloud log file for information about the request.
You will most likely find an entry with the following content:
. ^^^ the connection timed out! ^^^
. ^^^ the appstore was unreachable! ^^^
Environment
Server Configuration
OS: Linux 3.16.62
Web server: Apache2 2.4.37
Database: MariaDB 10.2.21
PHP version: 7.2.14
Nextcloud version: 15.0.4
Serverinfo app version: 1.5.0
Client Configuration
Browser: Mozilla Firefox 65.0.1
Operating system: Windows 10
The text was updated successfully, but these errors were encountered: