Skip to content

Commit

Permalink
[HOPSWORKS-3253] Feature Group Type Enum breaks with Stream Feature G…
Browse files Browse the repository at this point in the history
…roup after upgrade (#1023) (#1138)
  • Loading branch information
moritzmeister committed Jul 15, 2022
1 parent aad37e7 commit fa44855
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
public enum FeaturegroupType {
@JsonProperty("CACHED_FEATURE_GROUP")
CACHED_FEATURE_GROUP,
@JsonProperty("STREAM_FEATURE_GROUP")
STREAM_FEATURE_GROUP,
@JsonProperty("ON_DEMAND_FEATURE_GROUP")
ON_DEMAND_FEATURE_GROUP; //Note: since we map enum directly to the DB the order is important!
ON_DEMAND_FEATURE_GROUP,
@JsonProperty("STREAM_FEATURE_GROUP")
STREAM_FEATURE_GROUP; //Note: since we map enum directly to the DB the order is important!
}

0 comments on commit fa44855

Please sign in to comment.