Dan Allan

Results 755 comments of Dan Allan

The container canary failed twice in a row, so there may be a real issue there.

Superseded by #781. This problem was canary here was simply that we were not waiting long enough for the container to start.

Python 3.10 failed on an unrelated test: ``` FAILED src/bluesky/tests/test_suspenders.py::test_unresumable_suspend_fail[False] - assert 0.1 < (1723211575.3399906 - 1723211575.2414505) ``` Re-running.

I pushed a documentation update. :-) If @burkeds is happy with it, let's merge.

This needs two additions: 1. Add a branch to this conditional that checks for `isinstance(dataframe, dict)` and, if so, attempts `dataframe = pandas.DataFrame(dataframe)`. https://github.com/bluesky/tiled/blob/07c8925746e977352606432743534158972e6da0/tiled/client/container.py#L943-L946 2. Add a variation on this...

Thanks @jwlodek! I am curious what led you to this change. I had to grep around to reconstruct my reasoning here. When I added this command we already had: ```...

Summarizing chat from this morning: - Remove the `dataframe_adapter` property from `arrow.py`. Instead of adding code to `table.py` but it directly in the `read`, `read_partition` (etc.) methods in `arrow.py`. -...

@mrakitin The legend label is set here. https://github.com/NSLS-II/bluesky/blob/master/bluesky/callbacks/mpl_plotting.py#L499

Reasons we want to do this: - Support a plan that opens multiple Runs that execute concurrently because one core RunEngine can have multiple "document bundlers". - Provide a RunEngine...