Skip to content

Commit

Permalink
Fix CounterMutationCallbackTest
Browse files Browse the repository at this point in the history
  • Loading branch information
aymkhalil committed Oct 18, 2024
1 parent f8a1fc6 commit 7c19ca5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,12 @@ public void testCounterMutationCallback()
double actual = SensorsCustomParams.sensorValueFromBytes(v);
assertThat(actual).isEqualTo(COUNTER_MUTATION_WRITE_BYTES * expectedSensorValueMultiplier);
});
assertThat(customParam).hasEntrySatisfying("INTERNODE_MSG_BYTES_REQUEST.Counter",
assertThat(customParam).hasEntrySatisfying("INTERNODE_BYTES_REQUEST.Counter",
v -> {
double actual = SensorsCustomParams.sensorValueFromBytes(v);
assertThat(actual).isEqualTo(COUNTER_MUTATION_INTERNODE_BYTES * expectedSensorValueMultiplier);
});
assertThat(customParam).hasEntrySatisfying("INTERNODE_MSG_BYTES_TABLE.Counter",
assertThat(customParam).hasEntrySatisfying("INTERNODE_BYTES_TABLE.Counter",
v -> {
double actual = SensorsCustomParams.sensorValueFromBytes(v);
assertThat(actual).isEqualTo(COUNTER_MUTATION_INTERNODE_BYTES * expectedSensorValueMultiplier);
Expand Down

1 comment on commit 7c19ca5

@cassci-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build rejected: 4 NEW test failure(s) in 8 builds., Build ds-cassandra-pr-gate > cndb-8501 > #8: ran 18074 tests with 23 failures and 133 skipped.
Butler analysis done on ds-cassandra-pr-gate/cndb-8501 vs last 16 runs of ds-cassandra-build-nightly/main.
org.apache.cassandra.index.sai.cql.QueryWriteLifecycleTest.testWriteLifecycle[aa_CompoundKeyDataModel{primaryKey=p, c}]: test is constantly failing. No failures on upstream;
branch story: [FFF] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.distributed.test.NodeToolEnableDisableBinaryTest.testMaybeChangeDocs: test failed in the recent build. No failures on upstream;
branch story: [FF++F+++] vs upstream: [++++++++++++++]; [NEW]
org.apache.cassandra.index.sai.cql.TinySegmentQueryWriteLifecycleTest.testWriteLifecycle[aa_BaseDataModel{primaryKey=p}]: test is constantly failing. No failures on upstream;
branch story: [FFFFF] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
counter_test.TestCounters.test_counter_node_down: test failed in the recent build. No failures on upstream;
branch story: [FFF+] vs upstream: [+++++++++++]; [NEW]
butler comparison

Please sign in to comment.