From 88b27e334ea409567c36f045d77dcefb66078597 Mon Sep 17 00:00:00 2001 From: Kayo Kallas Date: Sat, 12 Sep 2020 16:38:26 -0700 Subject: [PATCH 1/2] Issue #291 update server.handlers package path in doc --- doc/source/server_architecture.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/server_architecture.rst b/doc/source/server_architecture.rst index 6ba858a5..27c7587f 100644 --- a/doc/source/server_architecture.rst +++ b/doc/source/server_architecture.rst @@ -76,7 +76,7 @@ Example configuration: name: telem_testbed_stream input: telem_port_in_stream handlers: - - name: ait.server.handler.PacketHandler + - name: ait.server.handlers.PacketHandler packet: 1553_HS_Packet outbound-streams: @@ -142,7 +142,7 @@ Here is an example of how the **server** portion of **config.yaml** should look: name: telem_testbed_stream input: telem_port_in_stream handlers: - - name: ait.server.handler.PacketHandler + - name: ait.server.handlers.PacketHandler packet: 1553_HS_Packet outbound-streams: From d892d753e33cc2bc5eeacd4b56296b2dad581224 Mon Sep 17 00:00:00 2001 From: Kayo Kallas Date: Sat, 12 Sep 2020 16:41:17 -0700 Subject: [PATCH 2/2] Issue #291 update server.plugins package path in doc --- doc/source/databases.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/databases.rst b/doc/source/databases.rst index 9ce8c3cc..8fbe5be0 100644 --- a/doc/source/databases.rst +++ b/doc/source/databases.rst @@ -3,4 +3,4 @@ AIT Database API AIT provides a general database abstraction class on top of which custom implementations can be written. AIT comes packaged with abstractions for InfluxDB (:class:`ait.core.db.InfluxDBBackend`)and SQLite (:class:`ait.core.db.SQLiteBackend`). You can inherit from the abstract base class :class:`ait.core.db.GenericBackend` and implement your own database abstraction. -The Data Archive Plugin, which is provided as part of AIT-Core at :class:`ait.core.server.plugin.DataArchive`, uses this database backend for archiving incoming data. It uses the :class:`ait.core.db.InfluxDBBackend` by default, but a custom database can be implemented and used instead by specifying the ``datastore`` parameter in the plugin's configuration. +The Data Archive Plugin, which is provided as part of AIT-Core at :class:`ait.core.server.plugins.DataArchive`, uses this database backend for archiving incoming data. It uses the :class:`ait.core.db.InfluxDBBackend` by default, but a custom database can be implemented and used instead by specifying the ``datastore`` parameter in the plugin's configuration.