01-28-2020, 05:16 AM
Hello all,
We're on the enterprise version TACTIC 4.3.0.v02, and we're working on building integration tools into our DCC apps. As such, once a file gets 'checked in', it would launch a Python script that changes the status to submitted_for_review. However, very frequently, especially when multiple users are checking in, we receive the following error:
File "xmlrpclib.py", line 1243, in __call__
return self.__send(self.__name, args)
File "xmlrpclib.py", line 1602, in __request
verbose=self.__verbose
File "xmlrpclib.py", line 1283, in request
return self.single_request(host, handler, request_body, verbose)
File "xmlrpclib.py", line 1316, in single_request
return self.parse_response(response)
File "xmlrpclib.py", line 1493, in parse_response
return u.close()
File "xmlrpclib.py", line 800, in close
raise Fault(**self._stack[0])
xmlrpclib.Fault: <Fault 1: 'FATAL: sorry, too many clients already\n'>
[4528] Failed to execute script tactic_update[/code]
Any way to increase the number of clients?
We're on the enterprise version TACTIC 4.3.0.v02, and we're working on building integration tools into our DCC apps. As such, once a file gets 'checked in', it would launch a Python script that changes the status to submitted_for_review. However, very frequently, especially when multiple users are checking in, we receive the following error:
Code:
Traceback (most recent call last):
File "tactic_update.py", line 58, in <module>
File "tactic_update.py", line 37, in update_tactic
File "tactic_client_lib\tactic_server_stub.py", line 816, in finish
return self.__send(self.__name, args)
File "xmlrpclib.py", line 1602, in __request
verbose=self.__verbose
File "xmlrpclib.py", line 1283, in request
return self.single_request(host, handler, request_body, verbose)
File "xmlrpclib.py", line 1316, in single_request
return self.parse_response(response)
File "xmlrpclib.py", line 1493, in parse_response
return u.close()
File "xmlrpclib.py", line 800, in close
raise Fault(**self._stack[0])
xmlrpclib.Fault: <Fault 1: 'FATAL: sorry, too many clients already\n'>
[4528] Failed to execute script tactic_update[/code]
Any way to increase the number of clients?