Add Changelog and switch to using RESIN variables

This commit is contained in:
Praneeth Bodduluri 2015-10-07 00:00:14 +05:30 committed by Pablo Carranza Vélez
parent 96d4aebb76
commit 4130df7771
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
* Enable control of API poll interval through Device Variables [Praneeth]
* Allow control of VPN + TCP check + Pub nub logs with Device Environment variables [Praneeth]
* Add GO api for openvpn control [Praneeth]
# v1.0.2
* Fix getting API key from DB by returning its .value [Pablo]

View File

@ -300,10 +300,10 @@ apiPollInterval = (val) ->
specialActionEnvVars =
'RESIN_OVERRIDE_LOCK': null
'_RESIN_VPN_CONTROL': utils.vpnControl
'_RESIN_CONNECTIVITY_CHECK': utils.connectivityCheck
'_RESIN_POLL_INTERVAL': apiPollInterval
'_RESIN_LOG_CONTROL': utils.resinLogControl
'RESIN_VPN_CONTROL': utils.vpnControl
'RESIN_CONNECTIVITY_CHECK': utils.connectivityCheck
'RESIN_POLL_INTERVAL': apiPollInterval
'RESIN_LOG_CONTROL': utils.resinLogControl
executedSpecialActionEnvVars = {}