We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f95cc6f commit 9f559d4Copy full SHA for 9f559d4
platform/fabric/core/generic/committer/committer.go
@@ -569,6 +569,10 @@ func (c *Committer) ReloadConfigTransactions() error {
569
570
c.logger.Infof("config block at txID [%s] unavailable, stop loading", txID)
571
done = true
572
+ case driver.Busy:
573
+ c.logger.Infof("someone else is modifying it. retry...")
574
+ time.Sleep(1 * time.Second)
575
+ continue
576
default:
577
return errors.Errorf("invalid configtx's [%s] status [%d]", txID, vc)
578
}
0 commit comments