Skip to content

Commit

Permalink
remove checkInMainThread from ::setHostId
Browse files Browse the repository at this point in the history
Summary: context in T205141168;

Reviewed By: frankfeir

Differential Revision: D64620159

fbshipit-source-id: 72721e7dde424bf660bf11541fb34a26e903f082
  • Loading branch information
hanidamlaj authored and facebook-github-bot committed Oct 24, 2024
1 parent 784bd91 commit cc14fe8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quic/server/QuicServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,8 @@ void QuicServer::runOnAllWorkersSync(
}

void QuicServer::setHostId(uint32_t hostId) noexcept {
checkRunningInThread(mainThreadId_);
// TODO(damlaj): T205141168; lift commmented checkRunningInThread check below
// checkRunningInThread(mainThreadId_);
if (hostId_ == hostId) {
LOG(WARNING) << "HostId is already set to " << hostId;
return;
Expand Down

0 comments on commit cc14fe8

Please sign in to comment.