Skip to content

Commit 03f426f

Browse files
committed
fix: add workaround for RHAIENG-1819 on disconnected
As tlsconfig is used on disconnected, there is test inestability due of the usage of tlsconfig. Adding a workaround for it Signed-off-by: Jorge Garcia Oncins <jgarciao@redhat.com>
1 parent 53370a3 commit 03f426f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/llama_stack/conftest.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,11 @@ def test_with_remote_milvus(llama_stack_server_config):
288288
server_config["tlsConfig"] = tls_config
289289

290290
if params.get("llama_stack_storage_size"):
291-
storage_size = params.get("llama_stack_storage_size")
292-
server_config["storage"] = {"size": storage_size}
291+
if IS_DISCONNECTED_CLUSTER:
292+
LOGGER.info("Skipping storage_size configuration on disconnected clusters due to known bug RHAIENG-1819")
293+
else:
294+
storage_size = params.get("llama_stack_storage_size")
295+
server_config["storage"] = {"size": storage_size}
293296

294297
return server_config
295298

0 commit comments

Comments
 (0)