Skip to content

Commit

Permalink
cmd: fix typo in relayCmd.go (#5135)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Feb 13, 2023
1 parent 4bc7250 commit 71cec05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/algorelay/relayCmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -457,15 +457,15 @@ func ensureRelayStatus(checkOnly bool, relay eb.Relay, nameDomain string, srvDom
if err != nil {
return
}
fmt.Printf("[%d] Added boostrap SRV Record: %s:%d\n", relay.ID, targetDomainAlias, port)
fmt.Printf("[%d] Added bootstrap SRV Record: %s:%d\n", relay.ID, targetDomainAlias, port)
}
} else {
if matchCount > 0 {
err = clearSRVRecord(ctx.bootstrap.networkName, topmost, ctx.bootstrap.shortName, ctx.srvZoneID)
if err != nil {
return
}
fmt.Printf("[%d] Removed boostrap SRV Record: %s\n", relay.ID, targetDomainAlias)
fmt.Printf("[%d] Removed bootstrap SRV Record: %s\n", relay.ID, targetDomainAlias)
}
}

Expand Down

0 comments on commit 71cec05

Please sign in to comment.