# HG changeset patch # User Marcin Kuzminski # Date 2017-03-23 16:44:51 # Node ID b4011f3b2773802e158dc24992fde01d37059435 # Parent 37dcd1a5ea567362c21d39ebcc9d945f9e47efb8 system-info: show better message when cannot fetch info about gunicorn workers diff --git a/rhodecode/lib/system_info.py b/rhodecode/lib/system_info.py --- a/rhodecode/lib/system_info.py +++ b/rhodecode/lib/system_info.py @@ -513,7 +513,7 @@ def vcs_server(): if data and 'config' in data: conf = data['config'] - workers = conf.get('workers', '?') + workers = conf.get('workers', 'NOT AVAILABLE') connection = 'connected' except Exception as e: