You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
self.get_local_cluster_name() in key-sync.rb needs to verify that parameters are present, and/or not nil before attempting to iterate on the contents. For example, the following will fail when run on a machine where the interface does not posses 'addresses', resulting in a nil value which you can not iterate on here...
node["network"]["interfaces"].each do |interface, info|
info["addresses"].each do |address, info|
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
self.get_local_cluster_name() in key-sync.rb needs to verify that parameters are present, and/or not nil before attempting to iterate on the contents. For example, the following will fail when run on a machine where the interface does not posses 'addresses', resulting in a nil value which you can not iterate on here...
The text was updated successfully, but these errors were encountered: