AIT-Core icon indicating copy to clipboard operation
AIT-Core copied to clipboard

Results 111 AIT-Core issues
Sort by recently updated
recently updated
newest added

The current DB API documentation isn't great https://ait-core.readthedocs.io/en/latest/databases.html We're going to need to make changes here anyway as part of #303 so we should make sure to expand on the...

Hello, While trying to implement this repo, I ran into this error trying to setup the influxdb database to connect with the AIT GUI for telemetry playback. From following the...

The server port inbound streams use `gevent.server.DatagramServer` to handle data receipt. We pass only a port during initialization which results in an address family of `AF_INET6` being used. This can...

There's a few places in the documentation where server package paths are incorrectly listing old names. For example: The [Database API Page](https://ait-core.readthedocs.io/en/master/databases.html) lists the data archive server plugin as being...

Example config.yaml ``` inbound-streams: - stream: name: log_stream input: - 2514 - stream: name: telem_stream input: - 3076 handlers: - name: ait.core.server.handlers.PacketHandler packet: 1553_HS_Packet ``` Example in documentation ``` -...

When setting up AIT_CONFIG, path was not found due to "~" not properly expanding into the home directory. `export AIT_CONFIG=~/path/to/AIT-Core/config/config.yaml ` However, explicitly listing path was successful.

The leapsecond load / processing is a bit opaque at the moment. Adding a few logs in the process would help clear up what's going on when AIT boots up...

good first issue

Nose is really outdated and hasn't really been maintained for a long while. We should bite the bullet and switch to pytest

Consider adding a [pre-commit](https://pre-commit.com/) hook pipeline for covering common pre-commit / push checks. We could definitely do this via straight git hooks as well but I've found this library to...

[seq.py#L194](https://github.com/NASA-AMMOS/AIT-Core/blob/66f2ee05357056b0d4455129e1dc28c264d39634/ait/core/seq.py#L194 ) Order of parsing doesn't seems to be correct. For testing purpose, code was updated as follows. Need a further investigation for the appropriate fix: ``` stream = open(filename,...