Skip to content

Commit b4f140f

Browse files
author
dougbw
committed
fix fallthrough env var
1 parent 9563c5a commit b4f140f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Corefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
password {$OMADA_PASSWORD}
88
refresh_minutes 1
99
ignore_startup_errors {$OMADA_IGNORE_STARTUP_ERRORS}
10-
fallthrough ${FALLTHROUGH_ZONES}
10+
fallthrough {$FALLTHROUGH_ZONES}
1111
}
1212
forward . {$UPSTREAM_DNS}
1313
}

setup.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ func (o *Omada) controllerInit(ctx context.Context) error {
7878

7979
log.Info("starting initial omada setup...")
8080
if o.config.fallthrough_zones == nil {
81-
log.Debug("fallthrough disabled")
81+
log.Info("fallthrough disabled")
8282
} else {
83-
log.Debug("fallthrough zones: ", o.Fall.Zones)
83+
log.Info("fallthrough zones: ", o.Fall.Zones)
8484
}
8585

8686
const retrySeconds = 15

0 commit comments

Comments
 (0)