Skip to content

Commit 4c77fe2

Browse files
committed
chore: tidy up
1 parent 3b89af4 commit 4c77fe2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

cmd/uncloudd/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,4 @@ func main() {
5555
}()
5656

5757
cobra.CheckErr(cmd.ExecuteContext(ctx))
58-
5958
}

internal/machine/network.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ func (nc *networkController) Run(ctx context.Context) error {
191191
})
192192

193193
errGroup.Go(func() error {
194-
slog.Info("Starting Caddyfile controller.")
194+
slog.Info("Starting Caddyconfig controller.")
195195
if err := nc.caddyfileCtrl.Run(ctx); err != nil {
196196
//goland:noinspection GoErrorStringFormat
197-
return fmt.Errorf("Caddyfile controller failed: %w", err)
197+
return fmt.Errorf("Caddyconfig controller failed: %w", err)
198198
}
199199
return nil
200200
})

0 commit comments

Comments
 (0)