Skip to content

Added support to disable connection pool. #1110

Added support to disable connection pool.

Added support to disable connection pool. #1110

Workflow file for this run

name: Pull Request Pipeline
on:
pull_request:
types:
- synchronize
- reopened
- opened
branches:
- '**'
jobs:
build-kafka-lightweight:
uses: ./.github/workflows/docker-build.yml
secrets: inherit
with:
IMAGE_TAG: ${{ github.event.number }}-${{ github.sha }}
testflows-kafka:
needs: [build-kafka-lightweight]
uses: ./.github/workflows/testflows-sink-connector-kafka.yml
secrets: inherit
with:
SINK_CONNECTOR_IMAGE: altinityinfra/clickhouse-sink-connector:${{ github.event.number }}-${{ github.sha }}-kafka
testflows-lightweight:
needs: [build-kafka-lightweight]
uses: ./.github/workflows/testflows-sink-connector-lightweight.yml

Check failure on line 28 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / Pull Request Pipeline

Invalid workflow file

The workflow is not valid. In .github/workflows/pull-request.yml (Line: 28, Col: 11): Error from called workflow Altinity/clickhouse-sink-connector/.github/workflows/testflows-sink-connector-lightweight.yml@c0a6069e609bd629b18a72fcb53f48369e81ee41 (Line: 28, Col: 5): Unexpected value 'extra_args'
secrets: inherit
with:
SINK_CONNECTOR_IMAGE: altinityinfra/clickhouse-sink-connector:${{ github.event.number }}-${{ github.sha }}-lt
testflows-lightweight-hikari-pool:
needs: [build-kafka-lightweight]
uses: ./.github/workflows/testflows-sink-connector-lightweight.yml
secrets: inherit
with:
SINK_CONNECTOR_IMAGE: altinityinfra/clickhouse-sink-connector:${{ github.event.number }}-${{ github.sha }}-lt
extra_args: --hikari-pool
java-tests-kafka:
needs: [build-kafka-lightweight]
uses: ./.github/workflows/sink-connector-kafka-tests.yml
with:
SINK_CONNECTOR_IMAGE: altinityinfra/clickhouse-sink-connector:${{ github.event.number }}-${{ github.sha }}-kafka
java-tests-lightweight:
needs: [build-kafka-lightweight]
uses: ./.github/workflows/sink-connector-lightweight-tests.yml
with:
SINK_CONNECTOR_IMAGE: altinityinfra/clickhouse-sink-connector:${{ github.event.number }}-${{ github.sha }}-lt