We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c82dc commit fc01025Copy full SHA for fc01025
1 file changed
GeoHealthCheck/plugins/check/checks.py
@@ -245,7 +245,10 @@ def perform(self):
245
try:
246
result = text not in self.probe.response.text
247
if result is False:
248
- msg = '%s in response text' % text
+ if 'exception' in self.probe.response.text.lower():
249
+ msg = self.probe.response.text
250
+ else:
251
+ msg = '%s in response text' % text
252
break
253
except Exception:
254
result = False
0 commit comments