Update import paths in athena files

The changes here correct a misalignment in the import paths in the sunnylinkd.py and manage_sunnylinkd.py files. These updates ensure that system.athena modules are accurately referenced, which is critical for the function of these scripts.
This commit is contained in:
DevTekVE
2024-06-11 11:59:46 +02:00
parent ba3475a02c
commit de4cefdc1e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,4 +2,4 @@
from system.athena.manage_athenad import manage_athenad
if __name__ == '__main__':
manage_athenad("SunnylinkDongleId", "SunnylinkdPid", 'sunnylinkd', 'selfdrive.athena.sunnylinkd')
manage_athenad("SunnylinkDongleId", "SunnylinkdPid", 'sunnylinkd', 'system.athena.sunnylinkd')
+1 -1
View File
@@ -10,7 +10,7 @@ import os
import threading
import time
from openpilot.selfdrive.athena.athenad import ws_send, jsonrpc_handler, \
from openpilot.system.athena.athenad import ws_send, jsonrpc_handler, \
recv_queue, RECONNECT_TIMEOUT_S, UploadQueueCache, upload_queue, cur_upload_items, backoff, ws_manage, log_handler
from jsonrpc import dispatcher
from websocket import (ABNF, WebSocket, WebSocketException, WebSocketTimeoutException,