Skip to content

Commit 0395a58

Browse files
committed
fixing provisioner CLI flag output
1 parent ad8361b commit 0395a58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/cratedb/provisioner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func (p CrateArgsProvisioner) Provision(ctx context.Context, in sdk.ProvisionInp
1818
user, userFound := in.ItemFields[fieldname.Username]
1919
host, hostFound := in.ItemFields[fieldname.Host]
2020
if userFound && hostFound {
21-
commandLine := []string{out.CommandLine[0], "--user", user, "--host", host}
21+
commandLine := []string{out.CommandLine[0], "--username", user, "--hosts", host}
2222
commandLine = append(commandLine, out.CommandLine[1:]...)
2323
out.CommandLine = commandLine
2424
}

0 commit comments

Comments
 (0)