Forgot to write bootstrap to data dir during reload

main
Brian Picciano 7 months ago
parent 0b094f057e
commit a153911948
  1. 5
      entrypoint/src/cmd/entrypoint/daemon.go

@ -71,6 +71,11 @@ func reloadBootstrap(
}
hostBootstrap.Hosts = newHosts
if err := writeBootstrapToDataDir(hostBootstrap); err != nil {
return bootstrap.Bootstrap{}, false, fmt.Errorf("writing new bootstrap to data dir: %w", err)
}
return hostBootstrap, true, nil
}

Loading…
Cancel
Save