Update some timeout field docstrings, per latest refactor
This commit is contained in:
parent
19553edda6
commit
871a9154da
|
@ -214,16 +214,14 @@ class Probe(Base):
|
||||||
|
|
||||||
# TODO: deprecate / remove this
|
# TODO: deprecate / remove this
|
||||||
therm_status_timeout = sa.Column(sa.Integer(), nullable=False, doc="""
|
therm_status_timeout = sa.Column(sa.Integer(), nullable=False, doc="""
|
||||||
Number of minutes the temperature is allowed to be "high" before the first
|
NOTE: This field is deprecated; please set the value for High Timeout instead.
|
||||||
"high temp" email alert is sent. This is typically meant to account for
|
|
||||||
the length of the defrost cycle. Note that this does *not* affect the
|
|
||||||
"critical temp" emails; those are sent as soon as critical temp is reached.
|
|
||||||
""")
|
""")
|
||||||
|
|
||||||
status_alert_timeout = sa.Column(sa.Integer(), nullable=False, doc="""
|
status_alert_timeout = sa.Column(sa.Integer(), nullable=False, doc="""
|
||||||
Number of minutes between successive "high/critical temp" emails. These
|
Number of minutes between successive status alert emails. These alerts
|
||||||
alerts will continue to be sent until the temperature returns to normal
|
will continue to be sent until the status changes. Note that the *first*
|
||||||
range.
|
alert for a given status will be delayed according to the timeout for that
|
||||||
|
status.
|
||||||
""")
|
""")
|
||||||
|
|
||||||
notes = sa.Column(sa.Text(), nullable=True, doc="""
|
notes = sa.Column(sa.Text(), nullable=True, doc="""
|
||||||
|
|
Loading…
Reference in a new issue