Skip to content
Snippets Groups Projects
Unverified Commit 8c932abf authored by Daniel Nelson's avatar Daniel Nelson Committed by GitHub
Browse files

Disable keepalive in mqtt output. (#3779)

This functionality currently has race conditions that can result in the
output deadlocking.
parent fcd6d4eb
No related branches found
No related tags found
No related merge requests found
...@@ -162,6 +162,7 @@ func (m *MQTT) publish(topic string, body []byte) error { ...@@ -162,6 +162,7 @@ func (m *MQTT) publish(topic string, body []byte) error {
func (m *MQTT) createOpts() (*paho.ClientOptions, error) { func (m *MQTT) createOpts() (*paho.ClientOptions, error) {
opts := paho.NewClientOptions() opts := paho.NewClientOptions()
opts.KeepAlive = 0 * time.Second
if m.Timeout.Duration < time.Second { if m.Timeout.Duration < time.Second {
m.Timeout.Duration = 5 * time.Second m.Timeout.Duration = 5 * time.Second
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment