We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2be80cd commit 5cd2a86Copy full SHA for 5cd2a86
spark/ingestion/src/main/scala/feast/ingestion/stores/redis/PipelineProviderFactory.scala
@@ -51,8 +51,9 @@ object PipelineProviderFactory {
51
def newProvider(endpoint: RedisEndpoint): PipelineProvider = {
52
if (checkIfInClusterMode(endpoint)) {
53
clusterPipelineProvider(endpoint)
54
+ } else {
55
+ singleNodePipelineProvider(endpoint)
56
}
- singleNodePipelineProvider(endpoint)
57
58
59
def provider(endpoint: RedisEndpoint): PipelineProvider = {
0 commit comments