Skip to content

Commit

Permalink
Fix the failure of integration-test
Browse files Browse the repository at this point in the history
Since urfave/cli v1.22.3, string flag no longer persists the default value if the flag is explicitly initialized.
Please refer to urfave/cli#981.

Signed-off-by: Derek Su <derek.su@suse.com>
  • Loading branch information
derekbit committed Mar 26, 2023
1 parent a8c7a50 commit 32bd905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/common/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def create_engine_process(client, name=ENGINE_NAME,
binary=LONGHORN_BINARY,
listen="", listen_ip="localhost",
size=SIZE, frontend=FRONTEND_TGT_BLOCKDEV,
replicas=[], backends=["file"],
replicas=[], backends=["tcp", "file"],
disable_revision_counter=False):
args = ["controller", volume_name]
if frontend != "":
Expand Down

0 comments on commit 32bd905

Please sign in to comment.