cmd/storj-sim: fix printing node url

Fix printing satellite url to help configure authservice.
  storj-sim network env SATELLITE_0_URL

Change-Id: I786ab6723f837bbc35f1228eb73a82427d2f9250
This commit is contained in:
Paul Willoughby 2022-05-24 22:22:05 -06:00
parent 5bc4c254d4
commit 036d5a8619

View File

@ -383,7 +383,7 @@ func newNetwork(flags *Flags) (*Processes, error) {
if err != nil {
return err
}
process.AddExtra("ID", satNodeID.String())
process.Info.ID = satNodeID.String()
return nil
}