Patches begin here
(_ string, d *Daemon)
| 179 | // Patches begin here |
| 180 | |
| 181 | func patchDnsmasqEntriesIncludeDeviceName(_ string, d *Daemon) error { |
| 182 | err := network.UpdateDNSMasqStatic(d.State(), "") |
| 183 | if err != nil { |
| 184 | return err |
| 185 | } |
| 186 | |
| 187 | return nil |
| 188 | } |
| 189 | |
| 190 | func patchRemoveWarningsWithEmptyNode(_ string, d *Daemon) error { |
| 191 | err := d.db.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error { |
nothing calls this directly
no test coverage detected
searching dependent graphs…