Skip to content

Commit

Permalink
increase cloud connection timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
StpMax committed Jun 30, 2022
1 parent e6605e2 commit 0ed5520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mindsdb/api/mysql/mysql_proxy/mysql_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def is_cloud_connection(self):

read_poller = select.poll()
read_poller.register(self.request, select.POLLIN)
events = read_poller.poll(7)
events = read_poller.poll(30)

if len(events) == 0:
return {
Expand Down

0 comments on commit 0ed5520

Please sign in to comment.