Hi, I have a test framework written using rpyc. So far I was using a custom service in server. But looking at the advantages of zero-deploy moving the test framework to zerodeploy.
I have a function to run any "BASH" commands remotely using *subprocess.Popen* synchronously. And Now I want to write a function which runs the remote BASH commands asynchronously. I know that I can start a subprocess.Popen which itself is a non-blocking (asynchronous). And then I can use wait/communicate/returncode to get output. But my problem is that means I have to change most of existing cases. Since I was using rpyc.async on the remote exposed_run function which was running in server. Since zero-deploy doesn't allow me to run a custom service, I wanted to know if there are any way to run BASH commands remotely with rpyc.async wrapper? So that I don't have to change my testcases which have been written using the framework. Thanks, MS -- --- You received this message because you are subscribed to the Google Groups "rpyc" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
