diff --git a/Ent-Changes.md b/Ent-Changes.md index 8cd5059..afe6887 100644 --- a/Ent-Changes.md +++ b/Ent-Changes.md @@ -5,6 +5,13 @@ Changelog: [Faktory](https://github.com/contribsys/faktory/blob/master/Changes.m A trial version of Faktory Enterprise for macOS is available with each [release](/contribsys/faktory/releases/). Click to purchase [Faktory Enterprise](https://billing.contribsys.com/fent/). +## HEAD + +- Add support for `DD_DOGSTATSD_URL`, you do not need statsd.toml at all anymore [#479] + `DD_DOGSTATSD_URL=udp://localhost:8125 faktory ...` +- Upgrade datadog client to v5.5.0 [#479] +- Print error if Faktory fails to start [#479] + ## 1.9.0 - Add Redis round trip time (in µs) to Statsd, "ops.redis.rtt_us" [#475] diff --git a/cmd/faktory/daemon.go b/cmd/faktory/daemon.go index 542c34c..e3a595c 100644 --- a/cmd/faktory/daemon.go +++ b/cmd/faktory/daemon.go @@ -44,7 +44,10 @@ func main() { go cli.HandleSignals(s) go func() { - _ = s.Run() + err = s.Run() + if err != nil { + util.Error("Unable to start Faktory", err) + } }() <-s.Stopper()