From 237351eb6f35e1fa1b83d17246a9840490bc76f3 Mon Sep 17 00:00:00 2001 From: James MacMahon Date: Tue, 18 Jun 2024 19:02:17 +0000 Subject: [PATCH] presense -> presence --- nexus/src/app/sagas/region_replacement_drive.rs | 2 +- nexus/tests/integration_tests/volume_management.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nexus/src/app/sagas/region_replacement_drive.rs b/nexus/src/app/sagas/region_replacement_drive.rs index af04786253..06d967ed1b 100644 --- a/nexus/src/app/sagas/region_replacement_drive.rs +++ b/nexus/src/app/sagas/region_replacement_drive.rs @@ -1368,7 +1368,7 @@ async fn srrd_drive_region_replacement_execute( // If the Volume is active, that means reconcilation // completed ok, and therefore Nexus can consider this // repair complete. This is only true if one repair occurs - // at a time per volume (which is true due to the presense + // at a time per volume (which is true due to the presence // of volume_repair records), and if this saga locks the // region replacement request record as part of it executing // (which it does through the SET_SAGA_ID forward action). diff --git a/nexus/tests/integration_tests/volume_management.rs b/nexus/tests/integration_tests/volume_management.rs index ae348e775d..73322e518f 100644 --- a/nexus/tests/integration_tests/volume_management.rs +++ b/nexus/tests/integration_tests/volume_management.rs @@ -356,7 +356,7 @@ async fn test_snapshot_prevents_other_disk( // The Crucible snapshots still remain assert!(!disk_test.crucible_resources_deleted().await); - // Attempt disk allocation, which will fail - the presense of the snapshot + // Attempt disk allocation, which will fail - the presence of the snapshot // means the region wasn't deleted. let disk_size = ByteCount::from_gibibytes_u32(10); let next_disk_name: Name = "next-disk".parse().unwrap();