Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 23cd87d

Browse files
committed
Fix notification URL to use correct log server port in StreamRecorder
1 parent ed64096 commit 23cd87d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ async def update_recording_status(self):
397397
def send_notification(self):
398398
send_email.send(
399399
"HBNI Audio Stream Recorder Started Successfully",
400-
f"http://{os.getenv('LOG_SERVER_HOST')}:{os.getenv('PORT')}",
400+
f"http://{os.getenv('LOG_SERVER_HOST')}:{os.getenv('LOG_SERVER_PORT')}",
401401
)
402402

403403
class LogFileHandler(RequestHandler):

0 commit comments

Comments
 (0)