Skip to content

Commit 7c48f4b

Browse files
committed
fix(router): custom domains
1 parent aa0c0f8 commit 7c48f4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

router/boot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func waitForInitialConfd(etcd string, timeout time.Duration) {
115115
var buffer bytes.Buffer
116116
output := bufio.NewWriter(&buffer)
117117
log.Debugf("Connecting to etcd server %s", etcd)
118-
cmd := exec.Command("confd", "-onetime", "-node", etcd, "--confdir", "/app", "--quiet")
118+
cmd := exec.Command("confd", "-node", etcd, "--confdir", "/app", "-onetime", "--log-level", "debug")
119119
cmd.Stdout = output
120120
cmd.Stderr = output
121121

@@ -132,7 +132,7 @@ func waitForInitialConfd(etcd string, timeout time.Duration) {
132132
}
133133

134134
func launchConfd(etcd string) {
135-
cmd := exec.Command("confd", "-node", etcd, "--confdir", "/app", "--interval", "5", "--quiet")
135+
cmd := exec.Command("confd", "-node", etcd, "--confdir", "/app", "--log-level", "debug", "--watch")
136136
cmd.Stdout = os.Stdout
137137
cmd.Stderr = os.Stderr
138138

0 commit comments

Comments
 (0)