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 151716a commit 1fffee1Copy full SHA for 1fffee1
1 file changed
tests/unit/client/retry_range/retry_range_ut.cpp
@@ -158,6 +158,16 @@ struct TTableClientFixture {
158
.SetDatabase("/Root/My/DB"));
159
Client = std::make_unique<NTable::TTableClient>(*Driver);
160
}
161
+
162
+ ~TTableClientFixture() {
163
+ Client.reset();
164
+ if (Driver) {
165
+ Driver->Stop(true);
166
+ }
167
+ if (GrpcServer) {
168
+ GrpcServer->Shutdown();
169
170
171
};
172
173
struct TQueryClientFixture {
@@ -180,6 +190,16 @@ struct TQueryClientFixture {
180
190
181
191
Client = std::make_unique<NQuery::TQueryClient>(*Driver);
182
192
193
194
+ ~TQueryClientFixture() {
195
196
197
198
199
200
201
202
183
203
184
204
185
205
} // namespace
0 commit comments