File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
orca-sql/src/main/kotlin/com/netflix/spinnaker/orca/sql/pipeline/persistence Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ class SqlExecutionRepository(
671
671
}
672
672
673
673
override fun retrieveOrchestrationForCorrelationId (correlationId : String ): PipelineExecution {
674
- withPool(readPoolName ) {
674
+ withPool(poolName ) {
675
675
val execution = jooq.selectExecution(ORCHESTRATION , compressionProperties)
676
676
.where(
677
677
field(" id" ).eq(
@@ -705,7 +705,7 @@ class SqlExecutionRepository(
705
705
}
706
706
707
707
override fun retrievePipelineForCorrelationId (correlationId : String ): PipelineExecution {
708
- withPool(readPoolName ) {
708
+ withPool(poolName ) {
709
709
val execution = jooq.selectExecution(PIPELINE , compressionProperties)
710
710
.where(
711
711
field(" id" ).eq(
You can’t perform that action at this time.
0 commit comments