Michael Joyce
Michael Joyce
Remove author tags from the code base. For a good read on why, check out [this article](https://opensource.com/law/14/2/copyright-statements-source-files) that Rich Bowen wrote some time ago.
We should update the OpenMCT plugin to support configurable telemetry stream names in a similar way to the GUI plugin approach. ``` if hasattr(self, 'telem_stream_names'): if topic in self.telem_stream_names: self.process_telem_msg(input_data)...
The server should gracefully handle failed attempts at loading and initializing objects from the config. This should be happening for the most part already but I noticed an issue where...
Currently the `db` module returns query results in whatever format the database driver for the configured DB returns. We should abstract this out into a generic AIT data result interface...
The derived telemetry functionality from #7 is based heavily on the existing `!Field` implementation. there's a few pieces of functionality in !Field don't seem to have much use in the...
Add documentation explaining what functionality the `log` module provides, how it's built with syslog in mind, and provide directions for users to look up configuration options.
The `ait-create-dirs` help text incorrectly states what example calls are doing. ``` usage: ait-create-dirs [-h] [-d ] [-t ] AIT Create Directories Script Based on the data paths specified in...
The current include approach doesn't work if you want to have multiple `!include`s under a single key:value key. For example: #### tlm.yaml ``` - !Packet name: 1553_HS_Packet desc: Ethernet 1553...
The cmd schema doesn't require the `value` field of a `!Fixed` element to be defined.