Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
t4lz committed Jul 11, 2024
1 parent 24efd56 commit ed3d13f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mirrord/config/src/target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,12 +298,12 @@ impl Target {
pub fn get_target_type(&self) -> &str {
match self {
Target::Targetless => "targetless",
Target::Pod(pod) => pod.target_type(),
Target::Deployment(dep) => dep.target_type(),
Target::Rollout(roll) => roll.target_type(),
Target::Job(job) => job.target_type(),
Target::CronJob(cron_job) => cron_job.target_type(),
Target::StatefulSet(stateful_set) => stateful_set.target_type(),
Target::Pod(pod) => pod.type_(),
Target::Deployment(dep) => dep.type_(),
Target::Rollout(roll) => roll.type_(),
Target::Job(job) => job.type_(),
Target::CronJob(cron_job) => cron_job.type_(),
Target::StatefulSet(stateful_set) => stateful_set.type_(),
}
}

Expand Down

0 comments on commit ed3d13f

Please sign in to comment.