Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed unneaded if statement
Co-authored-by: Tommy Hughes IV <tchughesiv@gmail.com>
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
  • Loading branch information
dandawg and tchughesiv committed Dec 11, 2024
commit 45349a45060533c97aed028b02e0da906c20213a
Original file line number Diff line number Diff line change
Expand Up @@ -496,11 +496,6 @@ func (feast *FeastServices) getServiceReplicas(feastType FeastServiceType) *int3
if feast.isOnlinStore() {
return appliedServices.OnlineStore.Replicas
}
case RegistryFeastType:
if feast.isLocalRegistry() {
return &DefaultReplicas
}
}
return &DefaultReplicas
}

Expand Down