Skip to content

Commit

Permalink
Switch VolumeFsVersion enum fields to proper standard (#2432)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbern authored Oct 31, 2024
1 parent 9b36523 commit 754fa03
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modal_proto/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,13 @@ enum TaskState {
}

enum VolumeFsVersion {
option allow_alias = true;
UNSPECIFIED = 0;
V1 = 1;
V2 = 2;
VOLUME_FS_VERSION_UNSPECIFIED = 0;
VOLUME_FS_VERSION_V1 = 1;
VOLUME_FS_VERSION_V2 = 2;
}

enum WebhookAsyncMode {
Expand Down

0 comments on commit 754fa03

Please sign in to comment.