Skip to content

Commit

Permalink
Merge pull request #1163 from NagiosEnterprises/bb_prepRelease
Browse files Browse the repository at this point in the history
fixing certain nodes for Windows
  • Loading branch information
ne-bbahn committed May 14, 2024
2 parents 99efc59 + dc31946 commit 945f7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/listener/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def add_child(self, new_node):
def accessor(self, path, config, full_path, args):
if path:
next_child_name, rest_path = path[0], path[1:]
if environment.SYSTEM == "Windows":
if environment.SYSTEM == "Windows" and self.__class__.__name__ == "PluginAgentNode":
next_child_name = next_child_name.lower()
try:
child = self.children[next_child_name]
Expand Down

0 comments on commit 945f7b6

Please sign in to comment.