Occasionally we have been requested to duplicate data in an outbound thread. To enable a simple config file on/off switch, I added a thread with no route connections (see jpeg) and added a TCL module (code snip below) on the real outbound thread in the ‘TPS Outbound Data’ upoc and a config file containing the thread list which is either null, or contains the thread(s) to send data to.
I’ve tested this and used it before. In the last few days, some new sites have PANIC’d soon after initial start and are then then fine on a restart. After a few days the site was stopped and again on initial start the site PANIC’d but was find on the subsequent restart.
Any ideas?
Thanks
set myDispList {}
lappend myDispList “CONTINUE $aMsgId”
foreach myDest
set myMsgId [msgcopy $aMsgId]
msgmetaset $myMsgId DESTCONN $myDest
lappend myDispList “SEND $myMsgId”
}
return $myDispList