fix(flaky): typo Stopping/Stopped (#6894)

introduced in 8dee9908f8, should help with
the #6681 common problem which is just a mismatched allowed error.
This commit is contained in:
Joonas Koivunen
2024-02-24 23:32:41 +02:00
committed by GitHub
parent ec3efc56a8
commit b8f9e3a9eb

View File

@@ -130,7 +130,7 @@ pub(super) struct UploadQueueStopped {
pub(crate) enum NotInitialized {
#[error("queue is in state Uninitialized")]
Uninitialized,
#[error("queue is in state Stopping")]
#[error("queue is in state Stopped")]
Stopped,
#[error("queue is shutting down")]
ShuttingDown,