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
3 changes: 2 additions & 1 deletion .config_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
},
"PASS": "$EE_MQTT",
"PAYLOADS_CHANNEL": {
"TOPIC": "naeural/payloads"
"TOPIC": "naeural/payloads",
"TARGETED_TOPIC": "naeural/{}/payloads"
},
"PORT": "$EE_MQTT_PORT",
"QOS": 2,
Expand Down
3 changes: 2 additions & 1 deletion .config_app_cluster.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
},
"PASS": "$EE_MQTT",
"PAYLOADS_CHANNEL": {
"TOPIC": "naeural_test/payloads"
"TOPIC": "naeural_test/payloads",
"TARGETED_TOPIC": "naeural_test/{}/payloads"
},
"PORT": "$EE_MQTT_PORT",
"QOS": 0,
Expand Down
4 changes: 3 additions & 1 deletion extensions/business/dauth/dauth_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ def on_response(self, method, response):
return

def process(self):
self._maybe_log_and_save_tracked_requests()
# TODO: this will be re-enabled in the future.
if False:
self._maybe_log_and_save_tracked_requests()
return

def __get_current_epoch(self):
Expand Down
2 changes: 1 addition & 1 deletion extensions/business/deeploy/deeploy_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2915,7 +2915,7 @@ def _get_apps_by_escrow_active_jobs(self, sender_escrow, owner, project_id=None)
)
continue

if project_id is not None and pipeline.get(NetMonCt.DEEPLOY_SPECS, {}).get(DEEPLOY_KEYS.PROJECT_ID) != project_id:
if project_id is not None and pipeline.get(NetMonCt.DEEPLOY_SPECS.upper(), {}).get(DEEPLOY_KEYS.PROJECT_ID) != project_id:
self.Pd(f"Skipping R1FS payload for job {job_id}: project_id mismatch.", color='y')
continue

Expand Down
2 changes: 0 additions & 2 deletions extensions/business/mixins/request_tracking_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ def _track_response(self, method, response):
break
except Exception as e:
self.P(f"Error tracking response in cstore: {e}", color='r')
if self.__rt_dirty:
self.__rt_save()
return

def __rt_save(self):
Expand Down
2 changes: 1 addition & 1 deletion ver.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VER__ = '2.10.130'
__VER__ = '2.10.140'
Loading