Skip to content

Commit 83257fd

Browse files
committed
feat: add warning instead of info when disabling storage on disconnected
Signed-off-by: Jorge Garcia Oncins <jgarciao@redhat.com>
1 parent 617e5e0 commit 83257fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/llama_stack/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def test_with_remote_milvus(llama_stack_server_config):
289289

290290
if params.get("llama_stack_storage_size"):
291291
if IS_DISCONNECTED_CLUSTER:
292-
LOGGER.info("Skipping storage_size configuration on disconnected clusters due to known bug RHAIENG-1819")
292+
LOGGER.warning("Skipping storage_size configuration on disconnected clusters due to known bug RHAIENG-1819")
293293
else:
294294
storage_size = params.get("llama_stack_storage_size")
295295
server_config["storage"] = {"size": storage_size}

0 commit comments

Comments
 (0)