#146 increased minimum timeout

This commit is contained in:
Mikayla Fischler
2023-02-13 12:29:59 -05:00
parent 9784b4e165
commit fdf75350c0
8 changed files with 10 additions and 10 deletions

View File

@@ -44,7 +44,7 @@ cfv.assert_port(config.SERVER_PORT)
cfv.assert_port(config.LISTEN_PORT)
cfv.assert_type_int(config.TRUSTED_RANGE)
cfv.assert_type_num(config.COMMS_TIMEOUT)
cfv.assert_min(config.COMMS_TIMEOUT, 1)
cfv.assert_min(config.COMMS_TIMEOUT, 2)
cfv.assert_type_str(config.LOG_PATH)
cfv.assert_type_int(config.LOG_MODE)
cfv.assert_type_table(config.RTU_DEVICES)