Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jun 17, 2024
1 parent ec73667 commit 4e583de
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Ent-Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
5 changes: 4 additions & 1 deletion cmd/faktory/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4e583de

Please sign in to comment.