We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52d6fe9 commit 2ab71b1Copy full SHA for 2ab71b1
1 file changed
test/suites/lib/tarantool_server.py
@@ -160,6 +160,7 @@ def log_des(self):
160
"""
161
Get server log file descriptor.
162
163
+ # pylint: disable=consider-using-with
164
165
if self._log_des is None:
166
self._log_des = open(self.logfile_path, 'a')
@@ -204,6 +205,8 @@ def __init__(self,
204
205
ssl_password_file=None,
206
create_unix_socket=False,
207
auth_type=None):
208
209
+
210
os.popen('ulimit -c unlimited').close()
211
212
if create_unix_socket:
@@ -332,6 +335,7 @@ def start(self):
332
335
* Wait unitl Tarantool\\Box
333
336
started --DONE(wait_until_started)
334
337
338
339
340
self.generate_configuration()
341
if self.script:
0 commit comments