1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-26 06:50:09 +03:00

Revert "StopMonitor action for IM dummy drivers"

This reverts commit b1d27857077be4a46049c908a7b32ed7e54f0502.
This commit is contained in:
Ruben S. Montero 2013-11-05 18:20:09 +01:00
parent 7420927e24
commit 3a67b4e4c8

View File

@ -45,7 +45,6 @@ class DummyInformationManager < OpenNebulaDriver
# register actions
register_action(:MONITOR, method("action_monitor"))
register_action(:STOPMONITOR, method("stop_monitor"))
end
# Execute the sensor array in the remote host
@ -73,10 +72,6 @@ class DummyInformationManager < OpenNebulaDriver
send_message("MONITOR", RESULT[:success], number, results)
end
def stop_monitor(number, host)
send_message("STOPMONITOR", RESULT[:success], number, nil)
end
end