isar 1.34.1__py3-none-any.whl → 1.34.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of isar might be problematic. Click here for more details.
- isar/robot/robot_monitor_mission.py +8 -1
- {isar-1.34.1.dist-info → isar-1.34.3.dist-info}/METADATA +1 -1
- {isar-1.34.1.dist-info → isar-1.34.3.dist-info}/RECORD +7 -7
- {isar-1.34.1.dist-info → isar-1.34.3.dist-info}/WHEEL +0 -0
- {isar-1.34.1.dist-info → isar-1.34.3.dist-info}/entry_points.txt +0 -0
- {isar-1.34.1.dist-info → isar-1.34.3.dist-info}/licenses/LICENSE +0 -0
- {isar-1.34.1.dist-info → isar-1.34.3.dist-info}/top_level.txt +0 -0
|
@@ -324,6 +324,7 @@ class RobotMonitorMissionThread(Thread):
|
|
|
324
324
|
)
|
|
325
325
|
break
|
|
326
326
|
except Exception:
|
|
327
|
+
self.logger.exception("Failed to collect task status")
|
|
327
328
|
break
|
|
328
329
|
|
|
329
330
|
if current_task.status != new_task_status:
|
|
@@ -351,7 +352,13 @@ class RobotMonitorMissionThread(Thread):
|
|
|
351
352
|
try:
|
|
352
353
|
new_mission_status = self._get_mission_status(self.current_mission.id)
|
|
353
354
|
except RobotMissionStatusException as e:
|
|
354
|
-
self.logger.
|
|
355
|
+
self.logger.exception("Failed to collect mission status")
|
|
356
|
+
self.robot_service_events.mission_failed.trigger_event(
|
|
357
|
+
ErrorMessage(
|
|
358
|
+
error_reason=e.error_reason,
|
|
359
|
+
error_description=e.error_description,
|
|
360
|
+
)
|
|
361
|
+
)
|
|
355
362
|
break
|
|
356
363
|
if new_mission_status != last_mission_status:
|
|
357
364
|
self.current_mission.status = new_mission_status
|
|
@@ -44,7 +44,7 @@ isar/models/events.py,sha256=lwjq745VWJLRLdqNke58sWMRt8zz75hUt7t0QkbLsFU,5602
|
|
|
44
44
|
isar/models/status.py,sha256=RCsf0p6FEsOFr4FGA6wekRdJIPrCOHMYuteXs2Mwwhk,430
|
|
45
45
|
isar/robot/robot.py,sha256=gppNNm_4yjjU3fqWrgBP1VaMcQqHXw8eJk2H41mhLco,10703
|
|
46
46
|
isar/robot/robot_battery.py,sha256=goLdgmn61QCgE2Ja3YuiwE_sqJzIhCkS3u90sz1kdug,2089
|
|
47
|
-
isar/robot/robot_monitor_mission.py,sha256=
|
|
47
|
+
isar/robot/robot_monitor_mission.py,sha256=OZzag2Curv47RYuuq93bc8N7tMUPVUvLx4uSvkSL-o0,15650
|
|
48
48
|
isar/robot/robot_pause_mission.py,sha256=BFTLVFOnCeuLlyz1Lu12_6EgYBhk8frsviCs-kGq7AA,2277
|
|
49
49
|
isar/robot/robot_start_mission.py,sha256=RPYH9VtXDFdPqhOpt6kSbT17RHkJQPKkQ6d4784_pFE,3210
|
|
50
50
|
isar/robot/robot_status.py,sha256=dfAls3s8_Vha7ZMLSYngELqsdpaEpcweAWRHanQj8u8,2361
|
|
@@ -104,7 +104,7 @@ isar/storage/local_storage.py,sha256=Rn-iiiz9DI7PzIhevOMshPIaqzJaqBXeVJMQRhVSl2M
|
|
|
104
104
|
isar/storage/storage_interface.py,sha256=x-imVeQTdL6dCaTaPTHpXwCR6N4e27WxK_Vpumg0x-Y,1230
|
|
105
105
|
isar/storage/uploader.py,sha256=0BBrxyZGGRkNxGeZeoREucegs4yKUow2523oLEie07o,10841
|
|
106
106
|
isar/storage/utilities.py,sha256=oLH0Rp7UtrQQdilfITnmXO1Z0ExdeDhBImYHid55vBA,3449
|
|
107
|
-
isar-1.34.
|
|
107
|
+
isar-1.34.3.dist-info/licenses/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
|
|
108
108
|
robot_interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
robot_interface/robot_interface.py,sha256=3JAVCzg4WV4gYgDxGfdmXPPlVETmwyoqLh7QZJMerKU,9886
|
|
110
110
|
robot_interface/test_robot_interface.py,sha256=FV1urn7SbsMyWBIcTKjsBwAG4IsXeZ6pLHE0mA9EGGs,692
|
|
@@ -128,8 +128,8 @@ robot_interface/telemetry/payloads.py,sha256=A0SWiG609k6o6-Y3vhDWE6an2-_m7D_ND85
|
|
|
128
128
|
robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
129
|
robot_interface/utilities/json_service.py,sha256=9N1zijW7K4d3WFR2autpaS8U9o1ibymiOX-6stTKCyk,1243
|
|
130
130
|
robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
|
|
131
|
-
isar-1.34.
|
|
132
|
-
isar-1.34.
|
|
133
|
-
isar-1.34.
|
|
134
|
-
isar-1.34.
|
|
135
|
-
isar-1.34.
|
|
131
|
+
isar-1.34.3.dist-info/METADATA,sha256=SXfVIK7BEx-EY7kd8Lu1c2aTEuSWU1CXATKJ1zvyLM8,28866
|
|
132
|
+
isar-1.34.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
133
|
+
isar-1.34.3.dist-info/entry_points.txt,sha256=TFam7uNNw7J0iiDYzsH2gfG0u1eV1wh3JTw_HkhgKLk,49
|
|
134
|
+
isar-1.34.3.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
|
|
135
|
+
isar-1.34.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|