(ackdata)
| 165 | queues.workerQueue.put(('sendmessage', '')) |
| 166 | |
| 167 | def resendMsg(ackdata): |
| 168 | logger.debug('It has been a long time and we haven\'t heard an acknowledgement to our msg. Sending again.') |
| 169 | sqlExecute( |
| 170 | '''UPDATE sent SET status='msgqueued' WHERE ackdata=?''', |
| 171 | ackdata) |
| 172 | queues.workerQueue.put(('sendmessage', '')) |
| 173 | queues.UISignalQueue.put(( |
| 174 | 'updateStatusBar', 'Doing work necessary to again attempt to deliver a message...')) |
no test coverage detected