Skip to content

Commit

Permalink
fixup after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldjeffrey committed May 14, 2024
1 parent 8c0b654 commit 47f2f65
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion ingest/src/server_iot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,6 @@ pub async fn grpc_server(settings: &Settings) -> Result<()> {
.create()
.await?;

let grpc_addr = settings.listen;
let grpc_server = GrpcServer {
beacon_report_sink,
witness_report_sink,
Expand Down
1 change: 0 additions & 1 deletion ingest/src/server_mobile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,6 @@ pub async fn grpc_server(settings: &Settings) -> Result<()> {
bail!("expected valid api token in settings");
};

let grpc_addr = settings.listen;
let grpc_server = GrpcServer {
heartbeat_report_sink,
wifi_heartbeat_report_sink,
Expand Down
2 changes: 1 addition & 1 deletion iot_config/src/settings.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use config::{Config, Environment, File};
use humantime_serde::re::humantime;
use serde::Deserialize;
use std::{net::SocketAddr, path::Path, str::FromStr};
use std::{net::SocketAddr, path::Path, str::FromStr, time::Duration};

#[derive(Debug, Deserialize)]
pub struct Settings {
Expand Down

0 comments on commit 47f2f65

Please sign in to comment.