Skip to content

Commit

Permalink
Fix argument to GoalState.__init__ (#3073)
Browse files Browse the repository at this point in the history
Co-authored-by: narrieta <narrieta>
  • Loading branch information
narrieta authored Feb 29, 2024
1 parent cc6c5ef commit 8ac7e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurelinuxagent/daemon/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def daemon(self, child_args=None):
# current values.
protocol = self.protocol_util.get_protocol()

goal_state = GoalState(protocol, goal_state_properties=GoalStateProperties.SharedConfig)
goal_state = GoalState(protocol.client, goal_state_properties=GoalStateProperties.SharedConfig)

setup_rdma_device(nd_version, goal_state.shared_conf)
except Exception as e:
Expand Down

0 comments on commit 8ac7e66

Please sign in to comment.