Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rgomezborder committed Oct 9, 2024
1 parent caa8dfa commit f3ab46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/providers/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@

# Check if the virtual IP field exists in the data bag
data_bag_response = `knife data bag show rBglobal ipvirtual-internal-postgresql 2>/dev/null`
virtual_ip_present = (data_bag_response.include?('ip:')) ? true : false
virtual_ip_present = data_bag_response.include?('ip:') ? true : false

# Get the list of alive server members from Serf
alive_server_members = `serf members -format=json -status=alive`
Expand Down

0 comments on commit f3ab46b

Please sign in to comment.