Add comment.

This commit is contained in:
Vitaly Baranov 2024-12-12 17:21:53 +01:00
parent 29bf43eaf2
commit 22abc56a47

View File

@ -48,6 +48,9 @@ enum CancelReason
UNDEFINED,
TIMEOUT,
CANCELLED_BY_USER,
/// CANCELLED_BY_ERROR means that there were parallel processes/threads and some of them failed,
/// so we cancel other processes/threads with this cancel reason.
CANCELLED_BY_ERROR,
};