P4DTI issue job000199

TitleAuxiliary scripts send e-mail
Statusclosed
Priorityessential
Assigned userGareth Rees
OrganizationRavenbrook
DescriptionThe auxiliary scripts, check.py and refresh_perforce.py, send e-mail to the administrator saying that the replicator is starting up. They shouldn't do this, because it's unnecessary and the message is not true.
AnalysisThe e-mail is sent at the end of the init() function. It should be sent at the start of the run() function.
How foundmanual_test
EvidenceObserved while testing.
Observed in0.5.1
Introduced in0.5.0
Test procedure<http://www.ravenbrook.com/project/p4dti/master/test/test_p4dti.py>, section 4.5
Created byGareth Rees
Created on2001-02-12 19:44:56
Last modified byGareth Rees
Last modified on2010-10-06 21:39:26
History2001-02-12 GDR Created.

Fixes

Change Effect Date User Description
8363 closed 2001-02-12 20:16:25 Gareth Rees Moved the initial e-mail message to its own method, mail_startup_message(). Send it in run(), not in init() so that it doesn't get sent by the auxiliary scripts like check and refresh.