Glenn Pierce
Glenn Pierce
Odd. I don't see anything before (aurena-server:25799): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed when settting GST_DEBUG to 3 In terms of the sync I have no idea why only...
> https://github.com/OctoPrint/octoprint-docker/blob/udev-rules-for-dynamic-usb-serial-support/71-octoprint.docker.rules Anything else needed other that adding this file to say /usr/lib/udev/rules.d and rebooting. When starting the container I get the same error about missing ttyACM0
In the end I forked and added the function below to get the effect I wanted. ``` pub fn run_pending_async(&mut self) { crossbeam::scope(|scope| { for job in &mut self.jobs {...
Actually I converted it to a DateTime outside the into_coroutine which solves the issue. I guess there may be times where that won't do so original question may stand. Thanks
I wanted to match on Custom { kind: Other, error: ExceptionResponse { function: 3, exception: GatewayTargetDevice } } => { } but you are right frame is private where I...
> any progress / plans for this? > > it made me ditch the sync client and write this async abomination instead (my first time using futures, too) > >...
I also believe there is an issue with sync::tcp::connect not closing the socket correctly. I have the following code that eventually fails with too many open files error. I have...
Not tested too much but in the end I did this hack ``` def span(self, frame, count=1): ''' Returns two new :class:`Arrow ` objects, representing the timespan of the :class:`Arrow...
Just to update I can run the loop script like ``` let future = Python::with_gil(|py| -> PyResult { let asyncio = py.import("asyncio")?; // calling the py_sleep method like a normal...
That's ok. I thought I had read through that. I must confess after having no luck I separated out my python / rust through ipc / protocol buffers which was...