Skip to content

Commit

Permalink
fix for jvm controller in ping - addresses issue #26
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan committed Mar 16, 2020
1 parent a380c3c commit 00aac1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DBmanager/DBapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def get(self):
for device_type in node.devices:
device = node.devices[device_type]
response[node.node_id].append([device.device_class, device.device_type, device.device_id])
response['jvm'] = JVMController.isJVMStarted()
response['jvm'] = JVMController().isJVMStarted()
return response, 200


Expand Down

0 comments on commit 00aac1c

Please sign in to comment.