Skip to content

Commit

Permalink
ObjectStoreConfig.PipelineFolder should be ObjectStoreConfig.Pipeline…
Browse files Browse the repository at this point in the history
…Path. (kubeflow#3056)
  • Loading branch information
k8s-ci-robot authored and Jeffwan committed Dec 9, 2020
1 parent c54623f commit 81f962c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/apiserver/client_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func initMinioClient(initConnectionTimeout time.Duration) storage.ObjectStoreInt
accessKey := common.GetStringConfigWithDefault("ObjectStoreConfig.AccessKey", "")
secretKey := common.GetStringConfigWithDefault("ObjectStoreConfig.SecretAccessKey", "")
bucketName := common.GetStringConfigWithDefault("ObjectStoreConfig.BucketName", os.Getenv(pipelineBucketName))
pipelinePath := common.GetStringConfigWithDefault("ObjectStoreConfig.PipelineFolder", os.Getenv(pipelinePath))
pipelinePath := common.GetStringConfigWithDefault("ObjectStoreConfig.PipelinePath", os.Getenv(pipelinePath))
disableMultipart := common.GetBoolConfigWithDefault("ObjectStoreConfig.Multipart.Disable", true)

minioClient := client.CreateMinioClientOrFatal(minioServiceHost, minioServicePort, accessKey,
Expand Down
2 changes: 1 addition & 1 deletion backend/src/apiserver/config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"AccessKey": "minio",
"SecretAccessKey": "minio123",
"BucketName": "mlpipeline",
"PipelineFolder": "pipelines"
"PipelinePath": "pipelines"
},
"InitConnectionTimeout": "6m",
"DefaultPipelineRunnerServiceAccount": "pipeline-runner"
Expand Down

0 comments on commit 81f962c

Please sign in to comment.