[grpc][grpc_fuzzers] Fix for the crash reported in the bug 331840428 (#36389)

<!--

If you know who should review your pull request, please assign it to that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the appropriate
lang label.

-->

Closes #36389

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/36389 from sastryvp:fuzzer_331840428 818112d75d
PiperOrigin-RevId: 629331008
pull/36478/head
Vishwanath Sastry 11 months ago committed by Copybara-Service
parent 1e25193d24
commit bd304b4b58
  1. 4
      test/core/end2end/fuzzers/network_input.cc

@ -506,8 +506,8 @@ Duration ScheduleConnection(
Duration::NanosecondsRoundUp(
(q.slices.Length() * event_engine->max_delay_write()).count()));
}
delay += Duration::Milliseconds(network_input.connect_delay_ms() +
network_input.connect_timeout_ms());
delay += Duration::Milliseconds(network_input.connect_delay_ms()) +
Duration::Milliseconds(network_input.connect_timeout_ms());
event_engine->RunAfterExactly(
Duration::Milliseconds(network_input.connect_delay_ms()),
[event_engine, channel_args,

Loading…
Cancel
Save