1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Pin these destinations with flakey testing to latest CDK. (#65625)

Co-authored-by: davinchia <davinchia@gmail.com>
This commit is contained in:
Ryan Br...
2025-08-29 16:07:55 -07:00
committed by GitHub
parent f8ae71e16e
commit 373e73b1d8
4 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ plugins {
airbyteBulkConnector {
core = 'load'
toolkits = ['load-object-storage', 'load-azure-blob-storage']
cdk = 'local'
cdk = '0.1.19'
}
application {

View File

@@ -8,7 +8,7 @@ plugins {
airbyteBulkConnector {
core = 'load'
toolkits = ['load-gcs', 'load-db', 'load-s3']
cdk = 'local'
cdk = '0.1.19'
}
java {

View File

@@ -8,7 +8,7 @@ plugins {
airbyteBulkConnector {
core = 'load'
toolkits = ['load-s3', 'load-avro', 'load-aws']
cdk = 'local'
cdk = '0.1.19'
}
application {

View File

@@ -32,7 +32,7 @@ class AirbyteBulkConnectorExtension {
void setCdk(String cdk) {
this.cdk = cdk
if (cdk != "local" && !cdk.matches("^[0-9]+\\.[0-9]+")) {
if (cdk != "local" && !(cdk.matches("^[0-9]+\\.[0-9]+") || cdk.matches("^[0-9]+\\.[0-9]+\\.[0-9]+"))) {
throw new IllegalArgumentException("'cdk' should be either a well-formed version number or 'local'")
}