Skip to content

Commit

Permalink
feat(update-verifier): remove teleport from checks
Browse files Browse the repository at this point in the history
  • Loading branch information
oldgalileo committed Nov 26, 2024
1 parent faf212e commit 7a367d0
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 128 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[Unit]
Description=Worldcoin Update Verifier Service.
After=teleport.service
StartLimitInterval=0

[Service]
Expand Down
1 change: 0 additions & 1 deletion update-verifier/src/checks/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! A common health check module.

pub mod mcu;
pub mod teleport;

use tracing::{info, instrument};

Expand Down
122 changes: 0 additions & 122 deletions update-verifier/src/checks/teleport.rs

This file was deleted.

4 changes: 0 additions & 4 deletions update-verifier/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![warn(clippy::pedantic, missing_docs)]

use crate::checks::mcu::{Error, Mcu};
use crate::checks::teleport::Teleport;
use crate::checks::Check;
use orb_build_info::{make_build_info, BuildInfo};
use orb_slot_ctrl::OrbSlotCtrl;
Expand Down Expand Up @@ -69,9 +68,6 @@ pub fn run_health_check(orb_slot_ctrl: OrbSlotCtrl) -> eyre::Result<()> {
warn!("Could not get retry count or max retry count, skipping main MCU version check");
}

// check the teleport service health
Teleport::default().run_check()?;

info!("system health is OK");

info!("setting rootfs status to Normal");
Expand Down

0 comments on commit 7a367d0

Please sign in to comment.