Skip to content

Commit

Permalink
nit changes related to logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdeepc2792 committed Jun 28, 2023
1 parent c3bd264 commit 90a14d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/deploy/predeploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
const (
// Rotate the secret on every deploy of the RP if the most recent
// secret is greater than 7 days old
rotateSecretAfter = time.Hour * 168
rotateSecretAfter = time.Hour * 24 * 7
rpRestartScript = "systemctl restart aro-rp"
gatewayRestartScript = "systemctl restart aro-gateway"
)
Expand Down Expand Up @@ -533,7 +533,7 @@ func (d *deployer) restartOldScaleset(ctx context.Context, vmssName string, reso
}(*vm.InstanceID)
}

d.log.Print("waiting for instances to restart")
d.log.Print("waiting for restart script to complete")
for range scalesetVMs {
err := <-errors
if err != nil {
Expand Down

0 comments on commit 90a14d2

Please sign in to comment.