Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdadh committed Aug 25, 2021
1 parent b819364 commit 8346385
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/microtvm/zephyr/template_project/microtvm_api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,9 @@ def open(self):
port_path = self._find_serial_port(self._options)
self._port = serial.Serial(port_path, baudrate=self._lookup_baud_rate(self._options))
return server.TransportTimeouts(
session_start_retry_timeout_sec=2.0,
session_start_timeout_sec=5.0,
session_established_timeout_sec=5.0,
session_start_retry_timeout_sec=10.0,
session_start_timeout_sec=10.0,
session_established_timeout_sec=10.0,
)

def close(self):
Expand Down

0 comments on commit 8346385

Please sign in to comment.