diff --git a/tests/queries/0_stateless/2010_lc_native.python b/tests/queries/0_stateless/2010_lc_native.python index c850bf3f906..6b3cad89ed6 100755 --- a/tests/queries/0_stateless/2010_lc_native.python +++ b/tests/queries/0_stateless/2010_lc_native.python @@ -193,7 +193,7 @@ def readException(s): def insertValidLowCardinalityRow(): with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: - s.settimeout(10) + s.settimeout(30) s.connect((CLICKHOUSE_HOST, CLICKHOUSE_PORT)) sendHello(s) receiveHello(s) @@ -229,7 +229,7 @@ def insertValidLowCardinalityRow(): def insertLowCardinalityRowWithIndexOverflow(): with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: - s.settimeout(10) + s.settimeout(30) s.connect((CLICKHOUSE_HOST, CLICKHOUSE_PORT)) sendHello(s) receiveHello(s) @@ -262,7 +262,7 @@ def insertLowCardinalityRowWithIndexOverflow(): def insertLowCardinalityRowWithIncorrectDictType(): with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: - s.settimeout(10) + s.settimeout(30) s.connect((CLICKHOUSE_HOST, CLICKHOUSE_PORT)) sendHello(s) receiveHello(s)