From e288e8bad5f0ce3df3087cb6b3224cf78669c82e Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 5 Jun 2019 11:16:44 -0400 Subject: [PATCH] Add stripsize to the input on volume Explictly ensure a stripsize key. --- confluent_server/confluent/messages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_server/confluent/messages.py b/confluent_server/confluent/messages.py index 6f1b63d1..089162ef 100644 --- a/confluent_server/confluent/messages.py +++ b/confluent_server/confluent/messages.py @@ -851,6 +851,7 @@ class InputVolumes(ConfluentInputMessage): self.inputbynode[node].append({'name': volname, 'size': volsize, 'disks': disks, + 'stripsize': input.get('stripsize', None), 'raidlevel': raidlvl, })