• Looks like it is hanging

    By Chris Bordeleau 2 decades ago

    I am running into a problem where after not using the database that is being monitored for a long time I go back and try to open a doc the is being monitored only to find that it will not open. I have to do a CTRL-BREAK in order to get everything back… Is there any way to check the status of Trigger Happy?? Any ideas as to what could be happening??

    • try the debug settings

      By Damien Katz 2 decades ago

      Set TriggerHappyDebug=1 in the Notes ini. This will produce lots of Trigger Happy debug messages on the console. Then send me the log messages.





      Thanks!

      • I did this

        By Chris Bordeleau 2 decades ago

        I have to wait now… It always run fine when the server is first loaded… it is only after I let the server site idle for a time that the problem appears.. I will post back latter



        Here is my agent :


        Dim session As New NotesSession<br/>
        <br/>
        Dim db As NotesDatabase<br/>
        Dim doc As NotesDocument<br/>
        <br/>
        Dim ts As New TriggerSession<br/>
        <br/>
        Set db = New notesdatabase(&quot;&quot;,&quot;slnlog.nsf&quot;)<br/>
        Set doc = New NotesDocument(db)<br/>
        <br/>
        doc.date = Date$ <br/>
        doc.time = Time$()<br/>
        doc.username = ts.username<br/>
        doc.dbpath = session.CurrentDatabase.FilePath<br/>
        doc.DocUNID = session.DocumentContext.UniversalID<br/>
        doc.form=&quot;slnlog&quot;<br/>
        Call doc.Save(True,False)<br/>
        Print |A document with a subject of &quot;| &amp; session.DocumentContext.Subject(0) &amp; |&quot; is being saved.|
        
    • And...

      By Damien Katz 2 decades ago

      Could you send me the agent in question and the Trigger config db?