Skip to content

Commit

Permalink
rename QueueDetails -> ActiveSqsSplits
Browse files Browse the repository at this point in the history
  • Loading branch information
t4lz committed Jul 18, 2024
1 parent 4ea2282 commit 4f003e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mirrord/operator/src/crd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ pub struct QueueNameUpdate {
// controller's code a bit simpler.
// Some information is present in the spec, but it is organized differently.
#[derive(Clone, Debug, Default, Deserialize, Serialize, JsonSchema)]
pub struct QueueDetails {
pub struct ActiveSqsSplits {
/// For each queue_id, the actual queue name as retrieved from the target's pod spec or config
/// map, together with the name of its temporary output queue.
pub queue_names: BTreeMap<QueueId, QueueNameUpdate>,
Expand All @@ -441,7 +441,7 @@ pub struct QueueDetails {
pub struct WorkloadQueueRegistryStatus {
/// Optional even though it's currently the only field, because in the future there will be
/// fields for other queue types.
pub sqs_details: Option<QueueDetails>,
pub sqs_details: Option<ActiveSqsSplits>,
}

impl WorkloadQueueRegistryStatus {
Expand Down

0 comments on commit 4f003e5

Please sign in to comment.