mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-13 23:54:03 +00:00
ConfigPersistence was initialized with empty string instead of cfg.DataPath, causing webhooks to save to /etc/pulse instead of PULSE_DATA_DIR. This affected Docker deployments where /data is the persistent volume. Fixes #249
20 lines
521 B
Modula-2
20 lines
521 B
Modula-2
module github.com/rcourtman/pulse-go-rewrite
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/rs/zerolog v1.33.0
|
|
github.com/spf13/cobra v1.9.1
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
golang.org/x/crypto v0.14.0 // indirect
|
|
golang.org/x/sys v0.25.0 // indirect
|
|
golang.org/x/term v0.13.0 // indirect
|
|
)
|