Skip to content

Commit c779586

Browse files
committed
libdatastore update
1 parent 8957c0d commit c779586

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lto = true
2020
strip = true
2121

2222
[dependencies]
23-
nullnet-libdatastore = "0.4.3"
23+
nullnet-libdatastore = "0.4.4"
2424
nullnet-libtoken = "0.2.0"
2525
nullnet-libfireparse = "0.3.2"
2626
nullnet-liberror = "0.1.1"

src/grpc_server/endpoints/handle_packets.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl WallGuardImpl {
7070
interface_name: connection.connection_key.interface_name.clone().into(),
7171
hypertable_timestamp: None,
7272
total_packet: (connection.connection_value.total_packet as i32).into(),
73-
total_bytes: (connection.connection_value.total_byte as i32).into(),
73+
total_byte: (connection.connection_value.total_byte as i32).into(),
7474
device_id: connection.connection_key.device_id.clone().into(),
7575
protocol: String::from(connection.connection_key.transport_header.protocol).into(),
7676
source_ip: connection
@@ -113,7 +113,7 @@ impl WallGuardImpl {
113113
entity_prefix: String::from("CN"),
114114
};
115115

116-
log::error!("Sending create connection request: {:?}", request);
116+
log::debug!("Sending create connection request: {:?}", request);
117117

118118
let timestamp = chrono::Utc::now();
119119

0 commit comments

Comments
 (0)