Commit 53607722 authored by Wade's avatar Wade

Fixed to_id

parent be08c114
...@@ -32,7 +32,7 @@ class ChatUser(HttpUser): ...@@ -32,7 +32,7 @@ class ChatUser(HttpUser):
"from": random.choice(names), "from": random.choice(names),
"from_id": f"user-{uuid.uuid4().hex[:8]}", "from_id": f"user-{uuid.uuid4().hex[:8]}",
"to": random.choice(names), "to": random.choice(names),
"to_id": f"user-{uuid.uuid4().hex[:8]}", "to_id": "user456", # Fixed to_id
"milvus": random.choice(boolean_options), "milvus": random.choice(boolean_options),
"graph": random.choice(boolean_options) "graph": random.choice(boolean_options)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment