We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 417605e commit e0f9989Copy full SHA for e0f9989
google/cloud/bigtable/examples/client_samples.cc
@@ -118,8 +118,9 @@ void TableWithServiceAccount(std::vector<std::string> const& argv) {
118
}
119
120
void TableSetUniverseDomain(std::vector<std::string> const& argv) {
121
- if (!argv.empty()) {
122
- throw google::cloud::testing_util::Usage{"table-set-universe-domain"};
+ if (argv.size() != 3) {
+ throw google::cloud::testing_util::Usage{
123
+ "table-set-endpoint <project-id> <instance-id> <table-id>"};
124
125
//! [table-set-universe-domain]
126
namespace bigtable = ::google::cloud::bigtable;
0 commit comments