From ee4d682b29f18c59d9f4286fa61704ba65262269 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 9 Nov 2020 09:45:54 -0500 Subject: [PATCH] Correct faulty function naming --- api-daemon/pvcapid/helper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-daemon/pvcapid/helper.py b/api-daemon/pvcapid/helper.py index 84d33c87..8fb6594a 100755 --- a/api-daemon/pvcapid/helper.py +++ b/api-daemon/pvcapid/helper.py @@ -1464,7 +1464,7 @@ def ceph_volume_upload(pool, volume, img_type): parse_form_data(flask.request.environ, stream_factory=image_stream_factory) except Exception: output = { - 'message': "Failed to write image file to volume." + 'message': "Failed to upload or write image file to temporary volume." } retcode = 400 cleanup_maps_and_volumes() @@ -1523,9 +1523,9 @@ def ceph_volume_upload(pool, volume, img_type): # rather than the standard stream_factory which writes to a temporary file waiting # on a save() call. This will break if the API ever uploaded multiple files, but # this is an acceptable workaround. - def ova_stream_factory(total_content_length, filename, content_type, content_length=None): + def image_stream_factory(total_content_length, filename, content_type, content_length=None): return open(temp_blockdev, 'wb') - parse_form_data(flask.request.environ, stream_factory=ova_stream_factory) + parse_form_data(flask.request.environ, stream_factory=image_stream_factory) except Exception: output = { 'message': "Failed to upload or write image file to temporary volume."