Is it me or are Automatic Migration Acceptance Test flakey? I feel like I keep seeing transient failures where it is complaining about connection to the db.
u
user
07/23/2021, 5:53 PM
This test is flaky.
This test first launches an old Airbyte version, 0.17.x-alpha, which is the flaky part. My guess is that the db connection there is flaky. We probably did not create the db connection with retry.
c
charles
07/23/2021, 5:54 PM
got it. thanks. that makes sense.
u
user
07/23/2021, 5:56 PM
The fix would be to find an old version that: 1) fixes the db connection issue, and 2) does not introduce a new migration.
Not sure if such version exists.
Alternative solution 1: we can patch the flaky version, and publish it just for the testing.
Alternative solution 2: we can change the starting point of the migration test.
Alternative solution 1 may be the easiest.