Skip to content

Commit

Permalink
More rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
macpie committed Oct 10, 2024
1 parent 4565c1d commit 5a4b999
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
9 changes: 3 additions & 6 deletions ingest/src/server_mobile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,10 @@ use helium_proto::services::poc_mobile::{
CoverageObjectIngestReportV1, CoverageObjectReqV1, CoverageObjectRespV1,
DataTransferSessionIngestReportV1, DataTransferSessionReqV1, DataTransferSessionRespV1,
InvalidatedRadioThresholdIngestReportV1, InvalidatedRadioThresholdReportReqV1,
InvalidatedRadioThresholdReportRespV1, InvalidatedRadioThresholdReportRespV1,
PromotionRewardIngestReportV1, PromotionRewardReqV1, PromotionRewardRespV1,
RadioLocationEstimatesIngestReportV1, RadioLocationEstimatesReqV1,
RadioLocationEstimatesRespV1, RadioThresholdIngestReportV1, RadioThresholdIngestReportV1,
RadioThresholdReportReqV1, RadioThresholdReportReqV1, RadioThresholdReportRespV1,
InvalidatedRadioThresholdReportRespV1, PromotionRewardIngestReportV1, PromotionRewardReqV1,
PromotionRewardRespV1, RadioLocationEstimatesIngestReportV1, RadioLocationEstimatesReqV1,
RadioLocationEstimatesRespV1, RadioThresholdIngestReportV1, RadioThresholdReportReqV1,
RadioThresholdReportRespV1, ServiceProviderBoostedRewardsBannedRadioIngestReportV1,
ServiceProviderBoostedRewardsBannedRadioIngestReportV1,
ServiceProviderBoostedRewardsBannedRadioReqV1, ServiceProviderBoostedRewardsBannedRadioRespV1,
SpeedtestIngestReportV1, SpeedtestReqV1, SpeedtestRespV1, SubscriberLocationIngestReportV1,
SubscriberLocationReqV1, SubscriberLocationRespV1,
Expand Down
3 changes: 1 addition & 2 deletions ingest/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ pub async fn setup_mobile() -> anyhow::Result<(TestClient, Trigger)> {
let (sp_boosted_tx, _rx) = tokio::sync::mpsc::channel(10);
let (subscriber_mapping_tx, subscriber_mapping_rx) = tokio::sync::mpsc::channel(10);
let (promotion_rewards_tx, _rx) = tokio::sync::mpsc::channel(10);
let (radio_location_estimates_tx, _radio_location_estimates_rx) =
tokio::sync::mpsc::channel(10);
let (radio_location_estimates_tx, radio_location_estimates_rx) = tokio::sync::mpsc::channel(10);

tokio::spawn(async move {
let grpc_server = GrpcServer::new(
Expand Down

0 comments on commit 5a4b999

Please sign in to comment.