Skip to content

Commit 0131d38

Browse files
authored
fix: Fix L0_implicit_state and it's variants (#7941)
Server waits for max_sequence_idle_microseconds before closing the request sequence and expects the client to start a NEW sequence for ANY subsequent request. Test was failing because the max_sequence_idle_microseconds was set to low causing the server to believe the sequence is over and reject any further requests with SAME sequence_id without the START flag. Causing the test to fail.
1 parent 7fef0f1 commit 0131d38

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

qa/L0_implicit_state/models/growable_memory/config.pbtxt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
# Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
#
33
# Redistribution and use in source and binary forms, with or without
44
# modification, are permitted provided that the following conditions
@@ -28,6 +28,8 @@ name: "growable_memory"
2828
backend: "implicit_state"
2929
max_batch_size: 0
3030
sequence_batching {
31+
# Set large idle timeout to avoid inter-request timeouts for test consistency
32+
max_sequence_idle_microseconds: 10000000
3133
control_input [
3234
{
3335
name: "START"

0 commit comments

Comments
 (0)