Skip to content

Commit 85f2f09

Browse files
committed
Merge pull request #2 from sathieu/patch-1
Add missing spaces
2 parents d9dbca9 + 059548e commit 85f2f09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

check_es_cluster_status.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ def check(self, opts, args):
4242
cluster_status = es_cluster_health['status'].lower()
4343

4444
if cluster_status == 'red':
45-
raise Status("CRITICAL", "Cluster status is currently reporting as"
45+
raise Status("CRITICAL", "Cluster status is currently reporting as "
4646
"Red")
4747
elif cluster_status == 'yellow':
48-
raise Status("WARNING", "Cluster status is currently reporting as"
48+
raise Status("WARNING", "Cluster status is currently reporting as "
4949
"Yellow")
5050
else:
5151
raise Status("OK",

0 commit comments

Comments
 (0)