Skip to content

Commit cd43f25

Browse files
author
zhilingc
committed
Fix storetype enum type
1 parent 619da8c commit cd43f25

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

protos/feast/core/Store.proto

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,19 @@ option java_outer_classname = "StoreProto";
2222
option go_package = "github.com/gojek/feast/protos/generated/go/feast/core";
2323

2424
message Store {
25-
message StoreType {
26-
enum Enum {
27-
UNKNOWN = 0;
28-
REDIS = 1;
29-
BIGQUERY = 2;
30-
CASSANDRA = 3;
31-
}
25+
26+
enum StoreType {
27+
UNKNOWN = 0;
28+
REDIS = 1;
29+
BIGQUERY = 2;
30+
CASSANDRA = 3;
3231
}
3332

3433
// Name of the store.
3534
string name = 1;
3635

3736
// Type of store.
38-
Store.StoreType type = 2;
37+
StoreType type = 2;
3938

4039
// URI to connect to the database. Should contain all necessary information
4140
// to connect to and write/read to the store.

0 commit comments

Comments
 (0)