Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions aidatlu/constellation/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ def main(args=None):
args = vars(parser.parse_args(args))

# set up logging
setup_cli_logging(args.pop("log_level"))
setup_cli_logging(args.pop("level"))

# start server with remaining args
# start satellite with remaining args
s = AidaTLU(**args)
s.run_satellite()


main()
if __name__ == "__main__":
main()
2 changes: 1 addition & 1 deletion aidatlu/constellation/aidatlu_satellite.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from constellation.core.cmdp import MetricsType
from constellation.core.configuration import Configuration
from constellation.core.fsm import SatelliteState
from constellation.core.message.cscp1 import SatelliteState
from constellation.core.monitoring import schedule_metric
from constellation.core.satellite import Satellite

Expand Down