We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18fb898 commit e75909cCopy full SHA for e75909c
3 files changed
.codespellrc
@@ -18,4 +18,5 @@ ignore-words-list =
18
anc,
19
soop,
20
CODIN,
21
- allright
+ allright,
22
+ incomming
stixcore/processing/pipeline_cron.py
@@ -327,7 +327,7 @@ def main():
327
if CONFIG.getboolean("Pipeline", "sync_tm_at_start", fallback=False):
328
logger.info("start sync_tm_at_start")
329
res = subprocess.run(
330
- f"rsync -av /data/stix/SOLSOC/from_edds/tm/incoming/*PktTmRaw*.xml {str(tmpath)}", shell=True
+ f"rsync -av /data/stix/SOLSOC/from_edds/tm/incomming/*PktTmRaw*.xml {str(tmpath)}", shell=True
331
) # noqa
332
logger.info(f"done sync_tm_at_start: {str(res)}")
333
stixcore/tmtc/tm/tm_1.py
@@ -17,9 +17,6 @@ def is_datasource_for(cls, tm_packet):
17
class TM_1_2(GenericTMPacket):
"""TM(1, 2) Telecommand acceptance report – failure."""
- def __init__(self, data):
- super().__init__(data)
-
23
@classmethod
24
def is_datasource_for(cls, tm_packet):
25
dh = tm_packet.data_header
@@ -29,9 +26,6 @@ def is_datasource_for(cls, tm_packet):
29
26
class TM_1_7(GenericTMPacket):
30
27
"""TM(1, 7) Telecommand execution completed report – success."""
31
28
32
33
34
35
36
37
@@ -41,9 +35,6 @@ def is_datasource_for(cls, tm_packet):
41
class TM_1_8(GenericTMPacket):
42
"""TM(1, 8) Telecommand execution completed report – failure."""
43
44
45
46
47
38
48
39
49
40
0 commit comments