Skip to content
Snippets Groups Projects
Commit b0c4cf21 authored by Hanna Reitz's avatar Hanna Reitz
Browse files

iotests/147: Fix drive parameters


8dff69b9 added an aio parameter to the drive parameter but forgot to
add a comma before, thus breaking the test.  Fix it again.

Fixes: 8dff69b9
Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
Message-Id: <20200206130812.612960-1-mreitz@redhat.com>
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
Tested-by: default avatarEric Blake <eblake@redhat.com>
Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
parent 6756696e
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ class BuiltinNBD(NBDBlockdevAddBase):
self.server.add_drive_raw('if=none,id=nbd-export,' +
'file=%s,' % test_img +
'format=%s,' % imgfmt +
'cache=%s' % cachemode +
'cache=%s,' % cachemode +
'aio=%s' % aiomode)
self.server.launch()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment