Skip to content

Commit d50c519

Browse files
authored
Merge pull request weewx#190 from alfh/master_fix_post_interval_wow
Let weewx.restx.StdWOW use post_interval=900
2 parents c0ab92e + 7dec603 commit d50c519

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: bin/weewx/restx.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,8 @@ def __init__(self, engine, config_dict):
683683
_ambient_dict.setdefault('server_url', StdWOW.archive_url)
684684
self.archive_queue = Queue.Queue()
685685
self.archive_thread = WOWThread(self.archive_queue, _manager_dict,
686-
protocol_name="WOW",
686+
protocol_name="WOW",
687+
post_interval=900,
687688
**_ambient_dict)
688689
self.archive_thread.start()
689690
self.bind(weewx.NEW_ARCHIVE_RECORD, self.new_archive_record)

0 commit comments

Comments
 (0)