From 33e5b1fe45a552e2e41b347402599a088ede5378 Mon Sep 17 00:00:00 2001 From: Tom Keffer Date: Sun, 16 Feb 2014 14:39:23 +0000 Subject: [PATCH] Fixed bug that prevented Rapidfire posts from being identified as such. --- bin/weewx/restx.py | 4 +++- docs/changes.txt | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/weewx/restx.py b/bin/weewx/restx.py index 8457d7b1..fb7f5a69 100644 --- a/bin/weewx/restx.py +++ b/bin/weewx/restx.py @@ -678,7 +678,9 @@ class AmbientThread(RESTThread): 'hourRain' : 'rainin=%.2f', 'dayRain' : 'dailyrainin=%.2f', 'radiation' : 'solarradiation=%.2f', - 'UV' : 'UV=%.2f'} + 'UV' : 'UV=%.2f', + 'realtime' : 'realtime=%s', + 'rtfreq' : 'rtfreq=%s'} def format_url(self, record): """Return an URL for posting using the Ambient protocol.""" diff --git a/docs/changes.txt b/docs/changes.txt index 5223dad0..5979595b 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -10,10 +10,10 @@ Fixed bug that can crash RESTful threads if there is missing rain data. Sqlite connections can now explicitly specify a timeout and isolation_level. -Added 'timeout' and 'isolation_level' options for sqlite connections. - Server uptime now reported for MacOS +Fixed bug that prevented Rapidfire posts from being identified as such. + 2.6.1 02/08/14