Skip to content

Commit

Permalink
make the error case more general for data only
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldjeffrey committed Sep 30, 2024
1 parent 43b0495 commit fcb0512
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ message speedtest_ingest_report_v1 {
enum speedtest_verification_result {
speedtest_valid = 0;
speedtest_gateway_not_found = 1;
speedtest_data_only = 2;
// Device Type not expected to submit speedtests
speedtest_invalid_device_type = 2;
}

message verified_speedtest {
Expand Down Expand Up @@ -368,8 +369,8 @@ enum heartbeat_validity {
heartbeat_validity_gateway_not_asserted = 10;
// heartbeat location is outside supported locations
heartbeat_validity_unsupported_location = 11;
//
heartbeat_validity_data_only = 12;
// Device Type not expected to submit heartbeats
heartbeat_validity_invalid_device_type = 12;
}

message seniority_update {
Expand Down

0 comments on commit fcb0512

Please sign in to comment.