Skip to content

Commit de40b51

Browse files
author
Dmitri Dolguikh
committed
Trying to fix test failures on Windows
Signed-off-by: Dmitri Dolguikh <[email protected]>
1 parent 03f7a7c commit de40b51

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

source/common/config/xds_mux/grpc_mux_impl.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ GrpcMuxImpl<S, F, RQ, RS>::GrpcMuxImpl(std::unique_ptr<F> subscription_state_fac
6060
}
6161

6262
template <class S, class F, class RQ, class RS> GrpcMuxImpl<S, F, RQ, RS>::~GrpcMuxImpl() {
63+
ENVOY_LOG(info, "in ~GrpcMuxImpl() !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
6364
AllMuxes::get().erase(this);
6465
}
6566

source/common/config/xds_mux/grpc_mux_impl.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ class GrpcMuxDelta : public GrpcMuxImpl<DeltaSubscriptionState, DeltaSubscriptio
221221
Random::RandomGenerator& random, Stats::Scope& scope,
222222
const RateLimitSettings& rate_limit_settings, const LocalInfo::LocalInfo& local_info,
223223
bool skip_subsequent_node);
224+
~GrpcMuxDelta() override = default;
224225

225226
// GrpcStreamCallbacks
226227
void requestOnDemandUpdate(const std::string& type_url,
@@ -237,6 +238,7 @@ class GrpcMuxSotw : public GrpcMuxImpl<SotwSubscriptionState, SotwSubscriptionSt
237238
Random::RandomGenerator& random, Stats::Scope& scope,
238239
const RateLimitSettings& rate_limit_settings, const LocalInfo::LocalInfo& local_info,
239240
bool skip_subsequent_node);
241+
~GrpcMuxSotw() override = default;
240242

241243
// GrpcStreamCallbacks
242244
void requestOnDemandUpdate(const std::string&, const absl::flat_hash_set<std::string>&) override {

0 commit comments

Comments
 (0)