2026/04/13
< 2026
|
Monday, April 13, 2026 (#103)
|
|
References |
- 08:35
IsRunning()is getting cleared during$qoUpdate->OnEvent($oeLoop);-- but when I put debug code inside that call, it never showed up. ??? - 11:17 The reason may be that the Updater wasn't set yet. The problem there may be that
QOUpdater()is defined and implemented way up in Connx, so anything under that can have its own Updater -- and they may or may not be the same object, and even if they are the same object the host-objects may or may not have access. I need to work out some more dependable, single-source way of managing the Updater. - 12:06 I've decided to JGIW for now by making
QOUpdater()a static function. This could cause issues if we ever need to have more than one of them, but I'm not sure this would ever be a design goal. (Hopefully this doesn't turn out to be a FAFO moment.) - 16:19 The Updater issue seems to be resolved, and also
IsRunning()remains TRUE through quite a few loops before turning FALSE. I'm still not receiving any data, but the length of time before the loop exits suggests that something is happening and I'm just not seeing it. - 20:51 We are, in fact, getting an error message: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
- The problem is, basically, questionable design in the message-checker:
- Because this message doesn't match the existing template, nothing is displayed.
- It seems likely that the existing template only works for Dump errors; this is a Main error.
- At the very least, we need multiple pattern-matchers, which seems to call for another clade.
- I'm trying to figure out if this fits into the
Codonclade-family. They're related, certainly...
- The problem is, basically, questionable design in the message-checker: