diff --git a/fizz/client/AsyncFizzClient-inl.h b/fizz/client/AsyncFizzClient-inl.h index ca9b0ae7f15..d1dc6d803fc 100644 --- a/fizz/client/AsyncFizzClient-inl.h +++ b/fizz/client/AsyncFizzClient-inl.h @@ -609,6 +609,7 @@ template void AsyncFizzClientT::ActionMoveVisitor::operator()( SecretAvailable& secret) { client_.secretAvailable(secret.secret); +#if 0 FOLLY_SDT( fizz, fizz_secret_available, @@ -616,6 +617,7 @@ void AsyncFizzClientT::ActionMoveVisitor::operator()( secret.secret.secret.data(), secret.secret.type, client_.getClientRandom()->data()); +#endif } template diff --git a/fizz/server/AsyncFizzServer-inl.h b/fizz/server/AsyncFizzServer-inl.h index 16e9d589698..d3f3d13b1a5 100644 --- a/fizz/server/AsyncFizzServer-inl.h +++ b/fizz/server/AsyncFizzServer-inl.h @@ -343,6 +343,7 @@ void AsyncFizzServerT::ActionMoveVisitor::operator()( template void AsyncFizzServerT::ActionMoveVisitor::operator()( SecretAvailable& secret) { +#if 0 FOLLY_SDT( fizz, fizz_secret_available, @@ -351,6 +352,7 @@ void AsyncFizzServerT::ActionMoveVisitor::operator()( KeyLogWriter::secretToNSSLabel(secret.secret.type) .value_or(std::numeric_limits::max()), server_.getClientRandom()->data()); +#endif server_.secretAvailable(secret.secret); }