Skip to content

Commit eb2f9f0

Browse files
committed
fix(linstorvhdutil.py): remove useless param on "call_remote_method"
Signed-off-by: Ronan Abhamon <ronan.abhamon@vates.tech>
1 parent 1768362 commit eb2f9f0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/linstorvhdutil.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
MANAGER_PLUGIN = 'linstor-manager'
3131

3232

33-
def call_remote_method(session, host_ref, method, device_path, args):
33+
def call_remote_method(session, host_ref, method, args):
3434
try:
3535
response = session.xenapi.host.call_plugin(
3636
host_ref, MANAGER_PLUGIN, method, args
@@ -574,7 +574,7 @@ def remote_call():
574574

575575
no_host_found = False
576576
try:
577-
return call_remote_method(self._session, host_ref, remote_method, device_path, remote_args)
577+
return call_remote_method(self._session, host_ref, remote_method, remote_args)
578578
except Exception:
579579
pass
580580

0 commit comments

Comments
 (0)