Skip to content

Commit 36811d6

Browse files
author
Michael Penick
committed
Merge remote-tracking branch 'riptano/1.7.0_prep' into 2.11.0_prep
2 parents 66310c7 + b349b8d commit 36811d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/ccm_bridge/src/bridge.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,6 @@ bool CCM::Bridge::create_cluster(std::vector<unsigned short> data_center_nodes,
586586
} else {
587587
create_command.push_back(dse_version_.to_string());
588588
}
589-
create_command.push_back("--dse");
590589
if (dse_credentials_type_ == DseCredentialsType::USERNAME_PASSWORD) {
591590
create_command.push_back("--dse-username=" + dse_username_);
592591
create_command.push_back("--dse-password=" + dse_password_);
@@ -603,6 +602,9 @@ bool CCM::Bridge::create_cluster(std::vector<unsigned short> data_center_nodes,
603602
}
604603
}
605604
}
605+
if (use_dse_) {
606+
create_command.push_back("--dse");
607+
}
606608
create_command.push_back("-b");
607609

608610
// Determine if password authenticator or SSL and client authentication

0 commit comments

Comments
 (0)