We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Service rtkbase_gnss_web_proxy.service is not shown in diagnostics
I fix it:
@@ -502,8 +505,10 @@ def diagnostic(): getServicesStatus() rtkbase_web_service = {'service_unit' : 'rtkbase_web.service', 'name' : 'RTKBase Web Server', 'active' : True} + rtkbase_gnss_web_proxy_service = {'service_unit' : 'rtkbase_gnss_web_proxy.service', 'name' : 'RTKBase Reverse Proxy for Gnss receiver Web Server'} + rtkbase_gnss_web_proxy_service["active"] = ServiceController(rtkbase_gnss_web_proxy_service["service_unit"]).isActive() logs = [] - for service in services_list + [rtkbase_web_service]: + for service in services_list + [rtkbase_web_service, rtkbase_gnss_web_proxy_service]: sysctl_status = subprocess.run(['systemctl', 'status', service['service_unit']], stdout=subprocess.PIPE, universal_newlines=True,
The text was updated successfully, but these errors were encountered:
20932fa
Stefal
No branches or pull requests
Service rtkbase_gnss_web_proxy.service is not shown in diagnostics
I fix it:
The text was updated successfully, but these errors were encountered: