Skip to content

Commit

Permalink
733: fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
komarevtsev-d committed Mar 14, 2024
1 parent e863674 commit 46f4df6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cloud/blockstore/libs/storage/disk_common/monitoring_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ namespace NCloud::NBlockStore::NStorage {

enum EDeviceStateFlags : uint16_t
{
NONE = 0,
FRESH = 1 << 0,
DISABLED = 1 << 1,
DIRTY = 1 << 2,
NONE = 0,
FRESH = 1 << 0,
DISABLED = 1 << 1,
DIRTY = 1 << 2,
SUSPENDED = 1 << 3,
};

Expand Down

0 comments on commit 46f4df6

Please sign in to comment.