Skip to content

Commit d0a5795

Browse files
authored
Merge pull request #33953 from def-/pr-nightly56
ci: Ignore some new nightly failures
2 parents 59924d5 + c1518bc commit d0a5795

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

ci/nightly/pipeline.template.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,7 @@ steps:
564564
- ./ci/plugins/mzcompose:
565565
composition: zippy
566566
args: [--scenario=SqlServerCdc, --actions=10000, --max-execution-time=30m, --azurite]
567+
skip: "database-issues#9855"
567568

568569
- id: zippy-debezium-postgres
569570
label: "Zippy Debezium Postgres"
@@ -1416,6 +1417,11 @@ steps:
14161417
concurrency_group: 'terraform-upgrade-aws'
14171418
agents:
14181419
queue: linux-aarch64-small
1420+
# storage is (re)initializing: TooManyRequests, fixed in new version, but not old
1421+
retry:
1422+
automatic:
1423+
- exit_status: 1
1424+
limit: 3
14191425
plugins:
14201426
- ./ci/plugins/scratch-aws-access: ~
14211427
- ./ci/plugins/mzcompose:

misc/python/materialize/parallel_workload/action.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1575,6 +1575,14 @@ def flip_flag(self, conn: Connection, flag_name: str, flag_value: str) -> None:
15751575

15761576

15771577
class CreateViewAction(Action):
1578+
def errors_to_ignore(self, exe: Executor) -> list[str]:
1579+
errors = super().errors_to_ignore(exe)
1580+
if exe.db.scenario == Scenario.Rename:
1581+
# Columns could have been renamed, we don't lock the base objects
1582+
# to get more interesting race conditions
1583+
errors += ["does not exist"]
1584+
return errors
1585+
15781586
def run(self, exe: Executor) -> bool:
15791587
with exe.db.lock:
15801588
if len(exe.db.views) >= MAX_VIEWS:

0 commit comments

Comments
 (0)