Fix heartbeat (#3262)

* Update fastbloom requirement from 0.9.0 to 0.10.0

---
updated-dependencies:
- dependency-name: fastbloom
  dependency-version: 0.9.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* manual upd

* dfasf

* put it back

* more

* fixer

* ci

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Dongjia "toka" Zhang 2025-05-22 18:14:16 +02:00 committed by GitHub
parent 6cd6600e7e
commit fa8fd63eb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -570,6 +570,8 @@ jobs:
run: rustup target add arm-linux-androideabi && rustup target add thumbv6m-none-eabi
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
shared-key: no-std
- name: Build aarch64-unknown-none
run: cd ./fuzzers/fuzz_anything/baby_no_std && cargo build -Zbuild-std=core,alloc --target aarch64-unknown-none -v --release && cd ../..
- name: run x86_64 until panic!
@ -587,6 +589,8 @@ jobs:
run: rustup target add arm-linux-androideabi && rustup target add thumbv6m-none-eabi
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
shared-key: no-std
- name: libafl armv6m-none-eabi (32 bit no_std) clippy
run: cd ./libafl && cargo clippy --target thumbv6m-none-eabi --no-default-features
- name: Build no_std no_alloc bolts
@ -733,6 +737,8 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/workflows/windows-tester-prepare
- uses: Swatinem/rust-cache@v2
with:
shared-key: windows-clippy
- name: Run real clippy, not the fake one
shell: pwsh
run: .\scripts\clippy.ps1

View File

@ -147,7 +147,10 @@ where
monitor.display(client_stats_manager, event.name(), id)?;
Ok(BrokerEventResult::Forward)
}
Event::Heartbeat => Ok(BrokerEventResult::Handled),
Event::Heartbeat => {
monitor.display(client_stats_manager, event.name(), client_id)?;
Ok(BrokerEventResult::Handled)
}
Event::UpdateUserStats { name, value, .. } => {
client_stats_manager.client_stats_insert(client_id)?;
client_stats_manager.update_client_stats_for(client_id, |client_stat| {