You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I think tornado is a non block web server.
I just test the following simple function:
@webservice(_params=str,_returns=str)
def TestThread(self,a):
time.sleep(5)
return a
and try to run this web service in suds or soapui, I start two thread at once, but it need 10 secs for the second one to finish. Is there some parameters can be set to solve this issue?
Thanks~
The text was updated successfully, but these errors were encountered:
But I think tornado is a non block web server.
I just test the following simple function:
@webservice(_params=str,_returns=str)
def TestThread(self,a):
time.sleep(5)
return a
and try to run this web service in suds or soapui, I start two thread at once, but it need 10 secs for the second one to finish. Is there some parameters can be set to solve this issue?
Thanks~
The text was updated successfully, but these errors were encountered: