Skip to content

Commit

Permalink
Merge pull request #5 from johscheuer/master
Browse files Browse the repository at this point in the history
Correct method calls
  • Loading branch information
quolix authored Jun 27, 2016
2 parents 566ed3f + e0dc230 commit 3892fa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quobyte-docker-volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ def do_POST(self):
elif self.path == "/VolumeDriver.Create":
self.volume_driver_create()
elif self.path == "/VolumeDriver.Remove":
self.volume_driver_mount()
self.volume_driver_remove()
elif self.path == "/VolumeDriver.Path" or self.path == "/VolumeDriver.Mount":
self.volume_driver_mount()
elif self.path == "/VolumeDriver.Get":
self.volume_driver_list()
self.volume_driver_get()
elif self.path == "/VolumeDriver.Unmount":
self.respond({"Err": ""})
elif self.path == "/VolumeDriver.List":
Expand Down

0 comments on commit 3892fa6

Please sign in to comment.