Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ingest/pkg/settings-template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mode = "iot"
#
# token = "api-token"

# Listen addres for public grpc. Default below
# Listen address for public grpc. Default below
#
# listen = "0.0.0.0:9081"

Expand Down
2 changes: 1 addition & 1 deletion iot_config/pkg/settings-template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# log = "iot-config=debug,poc_store=info"


# Listen addres for public grpc. Default below
# Listen address for public grpc. Default below
#
# listen = "0.0.0.0:8080"

Expand Down
2 changes: 1 addition & 1 deletion mobile_config/pkg/settings-template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# log = "iot-mobile=debug,poc_store=info"


# Listen addres for public grpc. Default below
# Listen address for public grpc. Default below
#
# listen = "0.0.0.0:8080"

Expand Down
2 changes: 1 addition & 1 deletion mobile_config/tests/integrations/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub async fn spawn_gateway_service(
(format!("http://{addr}"), handle)
}

// When retreiving a timestamp from DB, depending on the version of postgres
// When retrieving a timestamp from DB, depending on the version of postgres
// the timestamp may be truncated. When comparing datetimes, to ones generated
// in a test with `Utc::now()`, you should truncate it.
pub fn nanos_trunc(ts: DateTime<Utc>) -> DateTime<Utc> {
Expand Down
2 changes: 1 addition & 1 deletion mobile_packet_verifier/src/banning/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use sqlx::{PgConnection, Row};

use super::{BannedRadios, BAN_CLEANUP_DAYS};

// When retreiving banned radios, we want to get the
// When retrieving banned radios, we want to get the
// latest ban for a radio at the given time.
//
// If a radio was banned for POC yesterday,
Expand Down
2 changes: 1 addition & 1 deletion mobile_verifier/src/banning/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use sqlx::{PgConnection, PgPool, Row};

use super::BAN_CLEANUP_DAYS;

// When retreiving banned radios, we want to get the
// When retrieving banned radios, we want to get the
// latest ban for a radio at the given time.
//
// If a radio was banned for POC yesterday,
Expand Down
2 changes: 1 addition & 1 deletion poc_entropy/pkg/settings-template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Source URL for entropy. Required
source = "https://entropy.source.url"

# Listen addres for public api. Default below
# Listen address for public api. Default below
#
# listen = "0.0.0.0:8080"

Expand Down
2 changes: 1 addition & 1 deletion reward_index/tests/integrations/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn bytes_mut_stream<T: MsgBytes + Send + 'static>(els: Vec<T>) -> BytesMutSt
)
}

// When retreiving a timestamp from DB, depending on the version of postgres
// When retrieving a timestamp from DB, depending on the version of postgres
// the timestamp may be truncated. When comparing datetimes, to ones generated
// in a test with `Utc::now()`, you should truncate it.
pub fn nanos_trunc(ts: DateTime<Utc>) -> DateTime<Utc> {
Expand Down