Skip to content

Commit

Permalink
Change JoinFuzzer iteration message to warning (facebookincubator#9509)
Browse files Browse the repository at this point in the history
Summary:
The CI pipeline runs the JoinFuzzer with --minloglevel=1 which excludes INFO messages. This change is to make sure that failures will have the iteration seed printed to allow an easy repro.

Pull Request resolved: facebookincubator#9509

Reviewed By: Yuhta

Differential Revision: D56247075

Pulled By: kgpai

fbshipit-source-id: b56de09e8163c95367ab09e2c9c1150fbd03dea1
  • Loading branch information
czentgr authored and Joe-Abraham committed Jun 7, 2024
1 parent d94b330 commit 3f3e4d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions velox/exec/tests/JoinFuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1221,16 +1221,16 @@ void JoinFuzzer::go() {
size_t iteration = 0;

while (!isDone(iteration, startTime)) {
LOG(INFO) << "==============================> Started iteration "
<< iteration << " (seed: " << currentSeed_ << ")";
LOG(WARNING) << "==============================> Started iteration "
<< iteration << " (seed: " << currentSeed_ << ")";

// Pick join type.
const auto joinType = pickJoinType();

verify(joinType);

LOG(INFO) << "==============================> Done with iteration "
<< iteration;
LOG(WARNING) << "==============================> Done with iteration "
<< iteration;

reSeed();
++iteration;
Expand Down

0 comments on commit 3f3e4d8

Please sign in to comment.