diff options
author | Florin Coras <fcoras@cisco.com> | 2023-09-06 19:09:30 -0700 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-09-13 16:35:51 +0000 |
commit | e8a1dbf8da086da24f6bb8ce647e2e898c20df55 (patch) | |
tree | b2a340008b31517a0b523ebaa0aafac4b58a0123 /test/asf/test_quic.py | |
parent | 238cf3bd490fa0fd79929207d9d8ab71f91433e0 (diff) |
quic: fix quic sessions state updates
Session state cannot be updated after async notification event is
generated for app. Instead, make sure quic sessions that accept new
streams are switched to listening state only on accept.
Type: fix
Fixes: 0242d30
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I9663ccadbea99d555ad49e871f7dff897239dc84
Diffstat (limited to 'test/asf/test_quic.py')
-rw-r--r-- | test/asf/test_quic.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/asf/test_quic.py b/test/asf/test_quic.py index 8179b2f2366..4f816a36f0c 100644 --- a/test/asf/test_quic.py +++ b/test/asf/test_quic.py @@ -299,6 +299,7 @@ class QUICEchoExtTestCase(QUICTestCase): def validate_ext_test_results(self): server_result = self.worker_server.result + self.logger.debug(self.vapi.cli(f"show session verbose 2")) client_result = self.worker_client.result self.logger.info(f"Server worker result is `{server_result}'") self.logger.info(f"Client worker result is `{client_result}'") |