Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tickets/dm 47890: Support Summit Observing Weeks 49-50 of 2024 #168

Merged
merged 3 commits into from
Dec 17, 2024
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
1 change: 1 addition & 0 deletions doc/news/DM-47890.feature.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Move make_love_stress_tests received messages log from debug to info level.
1 change: 1 addition & 0 deletions doc/news/DM-47890.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update BaseMakeCalibrations.callpipetask to remove a call to ack.print_vars.
3 changes: 0 additions & 3 deletions python/lsst/ts/externalscripts/base_make_calibrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1002,15 +1002,12 @@ async def verify_calib(self, image_type, job_id_calib):
f"Received acknowledgement of ocps command for {image_type} verification."
)

ack.print_vars()
job_id_verify = json.loads(ack.result)["job_id"]

ack = await self.ocps.cmd_execute.next_ackcmd(ack)
self.log.debug(
f"Received command completion acknowledgement from ocps ({image_type})"
)
if ack.ack != salobj.SalRetCode.CMD_COMPLETE:
ack.print_vars()

while True:
msg = await self.ocps.evt_job_result.next(
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ts/externalscripts/make_love_stress_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ async def run(self):
await asyncio.sleep(self.loop_time_message_collection)
for client in self.clients:
msg_count += len(client.msg_traces)
self.log.debug(
self.log.info(
f"Received {msg_count}/{self.config.number_of_messages} messages"
)
self.log.info(
Expand Down
Loading