A couple config options sneaked in defined as strings but
really expecting integer values. This causes errors with the
latest oslo.config that expects the appropriate type.
This patch changes these instances to be the expected IntOpt.
Change-Id: I449c1f0057d6f4afabfb8b71040427dbcb0ca4ee
default='',
help='NexentaEdge iSCSI Gateway client '
'address for non-VIP service'),
- cfg.StrOpt('nexenta_blocksize',
+ cfg.IntOpt('nexenta_blocksize',
default=4096,
help='NexentaEdge iSCSI LUN block size'),
- cfg.StrOpt('nexenta_chunksize',
+ cfg.IntOpt('nexenta_chunksize',
default=16384,
help='NexentaEdge iSCSI LUN object chunk size')
]