Skip to content

Commit f9157d7

Browse files
authored
cleanup(bigtable): reduce test logs (#11603)
1 parent 69547bb commit f9157d7

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

google/cloud/bigtable/tests/table_sample_rows_integration_test.cc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,16 @@ class SampleRowsIntegrationTest
6767
: public ::google::cloud::testing_util::IntegrationTest {
6868
public:
6969
static void SetUpTestSuite() {
70-
// Create kBatchSize * kBatchCount rows. Use a special client with tracing
70+
// Create kBatchSize * kBatchCount rows. Use a special client with logging
7171
// disabled because it simply generates too much data.
72-
auto table = Table(
73-
MakeDataConnection(Options{}.set<TracingComponentsOption>({"rpc"})),
74-
TableResource(TableTestEnvironment::project_id(),
75-
TableTestEnvironment::instance_id(),
76-
TableTestEnvironment::table_id()));
72+
auto table =
73+
Table(MakeDataConnection(
74+
Options{}
75+
.set<TracingComponentsOption>({"rpc"})
76+
.set<GrpcTracingOptionsOption>(TracingOptions())),
77+
TableResource(TableTestEnvironment::project_id(),
78+
TableTestEnvironment::instance_id(),
79+
TableTestEnvironment::table_id()));
7780

7881
int constexpr kBatchCount = 10;
7982
int constexpr kBatchSize = 5000;

0 commit comments

Comments
 (0)