File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,8 @@ def __new__(cls,
125
125
ssl_cert_file = None ,
126
126
ssl_ca_file = None ,
127
127
ssl_ciphers = None ,
128
- create_unix_socket = False ):
128
+ create_unix_socket = False ,
129
+ auth_type = None ):
129
130
if os .name == 'nt' :
130
131
from .remote_tarantool_server import RemoteTarantoolServer
131
132
return RemoteTarantoolServer ()
@@ -137,7 +138,8 @@ def __init__(self,
137
138
ssl_cert_file = None ,
138
139
ssl_ca_file = None ,
139
140
ssl_ciphers = None ,
140
- create_unix_socket = False ):
141
+ create_unix_socket = False ,
142
+ auth_type = None ):
141
143
os .popen ('ulimit -c unlimited' ).close ()
142
144
143
145
if create_unix_socket :
@@ -162,6 +164,7 @@ def __init__(self,
162
164
self .ssl_cert_file = ssl_cert_file
163
165
self .ssl_ca_file = ssl_ca_file
164
166
self .ssl_ciphers = ssl_ciphers
167
+ self .auth_type = auth_type
165
168
166
169
def find_exe (self ):
167
170
if 'TARANTOOL_BOX_PATH' in os .environ :
You can’t perform that action at this time.
0 commit comments