Skip to content

Commit 71f9505

Browse files
authored
Bump versions for mssql strict-encrypt (#28964)
* Bump versions for mssql strict-encrypt * Fix failing test * Fix failing test
1 parent 7806c05 commit 71f9505

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

airbyte-integrations/connectors/source-mssql-strict-encrypt/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ ENV APPLICATION source-mssql-strict-encrypt
2424

2525
COPY --from=build /airbyte /airbyte
2626

27-
LABEL io.airbyte.version=1.1.0
27+
LABEL io.airbyte.version=1.1.1
2828
LABEL io.airbyte.name=airbyte/source-mssql-strict-encrypt

airbyte-integrations/connectors/source-mssql-strict-encrypt/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ data:
1111
connectorSubtype: database
1212
connectorType: source
1313
definitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1
14-
dockerImageTag: 1.1.0
14+
dockerImageTag: 1.1.1
1515
dockerRepository: airbyte/source-mssql-strict-encrypt
1616
githubIssueLabel: source-mssql
1717
icon: mssql.svg

airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public String createSchemaQuery(final String schemaName) {
181181

182182
// TODO : Delete this Override when MSSQL supports individual table snapshot
183183
@Override
184-
public void newTableSnapshotTest() throws Exception {
184+
public void newTableSnapshotTest() {
185185
// Do nothing
186186
}
187187

@@ -314,7 +314,7 @@ void testAssertSnapshotIsolationDisabled() {
314314
// set snapshot_isolation level to "Read Committed" to disable snapshot
315315
.put("snapshot_isolation", "Read Committed")
316316
.build());
317-
Jsons.replaceNestedValue(config, List.of("replication"), replicationConfig);
317+
Jsons.replaceNestedValue(config, List.of("replication_method"), replicationConfig);
318318
assertDoesNotThrow(() -> source.assertSnapshotIsolationAllowed(config, testJdbcDatabase));
319319
switchSnapshotIsolation(false, dbName);
320320
assertDoesNotThrow(() -> source.assertSnapshotIsolationAllowed(config, testJdbcDatabase));
@@ -350,7 +350,7 @@ void testCdcCheckOperations() throws Exception {
350350
void testCdcCheckOperationsWithDot() throws Exception {
351351
// assertCdcEnabledInDb and validate escape with special character
352352
switchCdcOnDatabase(true, dbNamewithDot);
353-
AirbyteConnectionStatus status = getSource().check(getConfig());
353+
final AirbyteConnectionStatus status = getSource().check(getConfig());
354354
assertEquals(status.getStatus(), AirbyteConnectionStatus.Status.SUCCEEDED);
355355
}
356356

0 commit comments

Comments
 (0)