aquatic ws load test: use longer value for request offer/answer fields

This commit is contained in:
Joakim Frostegård 2020-08-01 22:57:13 +02:00
parent 6f2dc6a510
commit 953154824e
3 changed files with 6 additions and 2 deletions

View file

@ -201,7 +201,7 @@ impl Connection {
if let Some((peer_id, offer_id)) = self.send_answer {
r.to_peer_id = Some(peer_id);
r.offer_id = Some(offer_id);
r.answer = Some(JsonValue(::serde_json::Value::from("{}")));
r.answer = Some(JsonValue(::serde_json::Value::from(JSON_VALUE)));
r.offers = None;
}