@@ -229,8 +229,9 @@ void testSuccess() {
229
229
verifyNormalize (normalizationActivity , normalizationInput );
230
230
verifyDbtTransform (dbtTransformationActivity , syncInput .getResourceRequirements (),
231
231
operatorDbtInput );
232
- verifyShouldRefreshSchema (refreshSchemaActivity );
233
- verifyRefreshSchema (refreshSchemaActivity , sync );
232
+ // Temporarily disabled to address OC issue #1210
233
+ // verifyShouldRefreshSchema(refreshSchemaActivity);
234
+ // verifyRefreshSchema(refreshSchemaActivity, sync);
234
235
assertEquals (
235
236
replicationSuccessOutput .withNormalizationSummary (normalizationSummary ).getStandardSyncSummary (),
236
237
actualOutput .getStandardSyncSummary ());
@@ -246,8 +247,9 @@ void testReplicationFailure() {
246
247
247
248
assertThrows (WorkflowFailedException .class , this ::execute );
248
249
249
- verifyShouldRefreshSchema (refreshSchemaActivity );
250
- verifyRefreshSchema (refreshSchemaActivity , sync );
250
+ // Temporarily disabled to address OC issue #1210
251
+ // verifyShouldRefreshSchema(refreshSchemaActivity);
252
+ // verifyRefreshSchema(refreshSchemaActivity, sync);
251
253
verifyReplication (replicationActivity , syncInput );
252
254
verifyNoInteractions (persistStateActivity );
253
255
verifyNoInteractions (normalizationActivity );
@@ -269,8 +271,9 @@ void testReplicationFailedGracefully() {
269
271
270
272
final StandardSyncOutput actualOutput = execute ();
271
273
272
- verifyShouldRefreshSchema (refreshSchemaActivity );
273
- verifyRefreshSchema (refreshSchemaActivity , sync );
274
+ // Temporarily disabled to address OC issue #1210
275
+ // verifyShouldRefreshSchema(refreshSchemaActivity);
276
+ // verifyRefreshSchema(refreshSchemaActivity, sync);
274
277
verifyReplication (replicationActivity , syncInput );
275
278
verifyPersistState (persistStateActivity , sync , replicationFailOutput , syncInput .getCatalog ());
276
279
verifyNormalize (normalizationActivity , normalizationInput );
@@ -296,8 +299,9 @@ void testNormalizationFailure() {
296
299
297
300
assertThrows (WorkflowFailedException .class , this ::execute );
298
301
299
- verifyShouldRefreshSchema (refreshSchemaActivity );
300
- verifyRefreshSchema (refreshSchemaActivity , sync );
302
+ // Temporarily disabled to address OC issue #1210
303
+ // verifyShouldRefreshSchema(refreshSchemaActivity);
304
+ // verifyRefreshSchema(refreshSchemaActivity, sync);
301
305
verifyReplication (replicationActivity , syncInput );
302
306
verifyPersistState (persistStateActivity , sync , replicationSuccessOutput , syncInput .getCatalog ());
303
307
verifyNormalize (normalizationActivity , normalizationInput );
@@ -317,8 +321,9 @@ void testCancelDuringReplication() {
317
321
318
322
assertThrows (WorkflowFailedException .class , this ::execute );
319
323
320
- verifyShouldRefreshSchema (refreshSchemaActivity );
321
- verifyRefreshSchema (refreshSchemaActivity , sync );
324
+ // Temporarily disabled to address OC issue #1210
325
+ // verifyShouldRefreshSchema(refreshSchemaActivity);
326
+ // verifyRefreshSchema(refreshSchemaActivity, sync);
322
327
verifyReplication (replicationActivity , syncInput );
323
328
verifyNoInteractions (persistStateActivity );
324
329
verifyNoInteractions (normalizationActivity );
@@ -343,8 +348,9 @@ void testCancelDuringNormalization() {
343
348
344
349
assertThrows (WorkflowFailedException .class , this ::execute );
345
350
346
- verifyShouldRefreshSchema (refreshSchemaActivity );
347
- verifyRefreshSchema (refreshSchemaActivity , sync );
351
+ // Temporarily disabled to address OC issue #1210
352
+ // verifyShouldRefreshSchema(refreshSchemaActivity);
353
+ // verifyRefreshSchema(refreshSchemaActivity, sync);
348
354
verifyReplication (replicationActivity , syncInput );
349
355
verifyPersistState (persistStateActivity , sync , replicationSuccessOutput , syncInput .getCatalog ());
350
356
verifyNormalize (normalizationActivity , normalizationInput );
@@ -397,9 +403,10 @@ void testWebhookOperation() {
397
403
}
398
404
399
405
@ Test
406
+ @ Disabled ("Temporarily disabled to address OC issue #1210" )
400
407
void testSkipReplicationAfterRefreshSchema () {
401
408
when (configFetchActivity .getStatus (any ())).thenReturn (Optional .of (Status .INACTIVE ));
402
- StandardSyncOutput output = execute ();
409
+ final StandardSyncOutput output = execute ();
403
410
verifyShouldRefreshSchema (refreshSchemaActivity );
404
411
verifyRefreshSchema (refreshSchemaActivity , sync );
405
412
verifyNoInteractions (replicationActivity );
0 commit comments