Skip to content

Commit 059548e

Browse files
committed
Add missing spaces
1 parent d9dbca9 commit 059548e

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)