From b6316996566cea3cdec34dc95d21a83a63f780b9 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 22 Sep 2017 09:06:42 -0400 Subject: [PATCH] Correct incorrect bank parameter on nodefirmware -b The bank should have been 'backup', not 'bank' which makes no sense. --- confluent_client/bin/nodefirmware | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/bin/nodefirmware b/confluent_client/bin/nodefirmware index 8cee84f4..249a3e3b 100755 --- a/confluent_client/bin/nodefirmware +++ b/confluent_client/bin/nodefirmware @@ -102,7 +102,7 @@ def update_firmware(session, filename): noderange) upargs = {'filename': filename} if options.backup: - upargs['bank'] = 'bank' + upargs['bank'] = 'backup' for res in session.create(resource, upargs): watchurl = res['created'] currnode = watchurl.split('/')[1]