Merge pull request #380 from CloCkWeRX/fix_mqtt_working

Add an expected event creation time by default

Andrew Cantino 10 anos atrás
pai
commit
44834cbbb5
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      app/models/agents/mqtt_agent.rb

+ 2 - 1
app/models/agents/mqtt_agent.rb

@@ -85,7 +85,8 @@ module Agents
85 85
         'cert_file' => './client.crt',
86 86
         'key_file' => './client.key',
87 87
         'topic' => 'huginn',
88
-        'max_read_time' => '10'
88
+        'max_read_time' => '10',
89
+        'expected_update_period_in_days' => '2'
89 90
       }
90 91
     end
91 92