Skip to content

Commit

Permalink
Fix meta internal tsan build failure (#9464)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #9464

Reviewed By: kewang1024

Differential Revision: D56051631

Pulled By: xiaoxmeng

fbshipit-source-id: 22ad72e67d091f098ca4a5280ec107a76c3d304b
  • Loading branch information
xiaoxmeng authored and facebook-github-bot committed Apr 12, 2024
1 parent 2b52132 commit b1252f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions velox/exec/Spill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ tsan_atomic<uint32_t>& testingSpillPct() {
return spillPct;
}

tsan_atomic<std::string>& testingSpillPoolRegExp() {
static tsan_atomic<std::string> spillPoolRegExp{".*"};
std::string testingSpillPoolRegExp() {
static std::string spillPoolRegExp{".*"};
return spillPoolRegExp;
}
} // namespace
Expand Down

0 comments on commit b1252f2

Please sign in to comment.