Read internal event data frames also through http

This commit is contained in:
Dominik Werder
2023-08-17 14:36:04 +02:00
parent 92e58291f3
commit 954cff05f0
19 changed files with 460 additions and 146 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ use netpod::Shape;
pub fn make_test_node(id: u32) -> Node {
Node {
host: "localhost".into(),
listen: "0.0.0.0".into(),
listen: None,
port: 8800 + id as u16,
port_raw: 8800 + id as u16 + 100,
// TODO use a common function to supply the tmp path.
+1 -1
View File
@@ -112,7 +112,7 @@ pub async fn gen_test_data() -> Result<(), Error> {
for i1 in 0..3 {
let node = Node {
host: "localhost".into(),
listen: "0.0.0.0".into(),
listen: None,
port: 7780 + i1 as u16,
port_raw: 7780 + i1 as u16 + 100,
cache_base_path: data_base_path.join(format!("node{:02}", i1)),