678618e8499dc5e281ed6a1fe18da71e43fa4b3a jnavarr5 Wed Apr 22 14:39:31 2026 -0700 Commenting out a line in the script to match the version running on hive, no Redmine. diff --git src/hg/utils/otto/userRequests/ottoRequest.py src/hg/utils/otto/userRequests/ottoRequest.py index 51d30188970..e148a9ced65 100755 --- src/hg/utils/otto/userRequests/ottoRequest.py +++ src/hg/utils/otto/userRequests/ottoRequest.py @@ -124,26 +124,26 @@ subject = f"ottoRequest #{req['id']}: {req['requestType']} pending" body = ( f"##################################################\n" f"Pending {req['requestType']} request #{req['id']}\n" f"\n" f" From: {req['fromDb']}\n" f" To: {req['toDb']}\n" f" Email: {req['email']}\n" f" Comment: {req['comment']}\n" f" Time: {req['requestTime']}\n" f"##################################################\n" f"testing ottoRequest watch cron job\n" f"##################################################\n" ) if sendMail(notifyEmail, subject, body): - print(f"Notified {notifyEmail} about request #{req['id']}") +# print(f"Notified {notifyEmail} about request #{req['id']}") hgsqlUpdate(dbName, f"UPDATE {table} SET doneStatus = 1" f" WHERE id = {req['id']}") else: print(f"Failed to notify about request #{req['id']}", file=sys.stderr) if __name__ == '__main__': main()