Yong Li

Results 10 comments of Yong Li

I just hit a similar problem when using `autobahn|python` as a client. In my case, the server can send large messages, but the client side runs into problem due to...

@mtrofimm Yes. My solution is to connect to WAMP server with my own code (rather than using the ApplicationRunner), and call `setProtocolOptions()` on the factory object to disable `maxMessagePayloadSize` (=0).

@mtrofimm Sorry, I am working on proprietary project. But you can take a look at https://github.com/crossbario/autobahn-python/blob/2cce98a41b9ae32870f950df3072d740d2c75548/autobahn/twisted/wamp.py#L208. Write your own method based on that, remove things you do not need, and...

I just managed to produce this issue. 1. let worker send many messages to reply channel 2. let the client get into an infinite loop upon first event. 3. no...

also, the ping timeout won't work. because it updates "last_data" even for server side send! I think that's another bug. When server is sending data, it doesn't mean the client/connection...

I tried to install push producer, and captured pauseProducing call from twisted. A trick is I have to unregister the previous producer (HTTPChannel) ``` # in onConnect: self.transport.unregisterProducer() self.registerProducer(PushProducer(self), True)...

I would. But I really know nothing about rrdtool, and don't have a test environment either. I am not certain what a correct fix here. Will this be good? ```...

Pull request created: https://github.com/oetiker/rrdtool-1.x/pull/1059

@cwecht I just want to log the error message. There are ways to work around it, like including the error message in response. But I am just saying there is...

Good to know. But in some cases, client wants to handle the error string by itself, for example: mapping to error messages in another language for globalization, or forward the...