Skip to content

Commit 443a5ed

Browse files
wip
1 parent 27dfbb4 commit 443a5ed

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/suites/lib/tarantool_server.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ def __new__(cls,
125125
ssl_cert_file=None,
126126
ssl_ca_file=None,
127127
ssl_ciphers=None,
128-
create_unix_socket=False):
128+
create_unix_socket=False,
129+
auth_type=None):
129130
if os.name == 'nt':
130131
from .remote_tarantool_server import RemoteTarantoolServer
131132
return RemoteTarantoolServer()
@@ -137,7 +138,8 @@ def __init__(self,
137138
ssl_cert_file=None,
138139
ssl_ca_file=None,
139140
ssl_ciphers=None,
140-
create_unix_socket=False):
141+
create_unix_socket=False,
142+
auth_type=None):
141143
os.popen('ulimit -c unlimited').close()
142144

143145
if create_unix_socket:
@@ -162,6 +164,7 @@ def __init__(self,
162164
self.ssl_cert_file = ssl_cert_file
163165
self.ssl_ca_file = ssl_ca_file
164166
self.ssl_ciphers = ssl_ciphers
167+
self.auth_type = auth_type
165168

166169
def find_exe(self):
167170
if 'TARANTOOL_BOX_PATH' in os.environ:

0 commit comments

Comments
 (0)