Skip to content

Commit e1a0603

Browse files
committed
Fixed dict undefined issue
Signed-off-by: Rajan Mishra rajanmis@in.ibm.com
1 parent 6e6e1df commit e1a0603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/core/cluster/tasks/cluster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
profile_type: "--profile {{ scale_cluster_profile_name }}"
136136
when:
137137
- scale_cluster_profile_name is defined and scale_cluster_profile_name != 'None'
138-
- (stat_profile_result.matched) == 1 or (stat_user_profile_result is defined and stat_user_profile_result.matched == 1)
138+
- (stat_profile_result.matched is defined and stat_profile_result.matched == 1) or (stat_user_profile_result.matched is defined and stat_user_profile_result.matched == 1)
139139

140140
- name: cluster | Set gpfs remote shell command if it is defined
141141
set_fact:

0 commit comments

Comments
 (0)