From c877d7e980f4289b13cebd0d83b95df456c5f091 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sat, 21 May 2022 18:49:55 +0200 Subject: [PATCH] Forgot to merge the router failure status in chip.chip.doPnR(). --- cumulus/src/plugins/alpha/chip/chip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cumulus/src/plugins/alpha/chip/chip.py b/cumulus/src/plugins/alpha/chip/chip.py index 87a110ba..d1df6fe3 100644 --- a/cumulus/src/plugins/alpha/chip/chip.py +++ b/cumulus/src/plugins/alpha/chip/chip.py @@ -144,9 +144,9 @@ class Chip ( Block ): self.conf.refresh() def doPnR ( self ): - super(Chip,self).doPnR() + status = super(Chip,self).doPnR() self.conf.refresh( self.conf.chip ) - return self.conf.validated + return self.conf.validated and status def save ( self, flags=0 ): if not self.conf.validated: