Class com.ustadmobile.core.trigger.ContentJobItemTriggerCallbackTest

9

tests

0

failures

0

ignored

1.276s

duration

100%

successful

Tests

Test Method name Duration Result
dumpSqlStatements[jvm] dumpSqlStatements 0.070s passed
givenAllChildItemsCanceled_whenRecursiveStatusUpdated_thenStatusShouldBeCanceled[jvm] givenAllChildItemsCanceled_whenRecursiveStatusUpdated_thenStatusShouldBeCanceled 0.095s passed
givenChildrenJobCompleted_whenRecursiveStatusUpdated_thenJobParentShouldBeCompleted[jvm] givenChildrenJobCompleted_whenRecursiveStatusUpdated_thenJobParentShouldBeCompleted 0.207s passed
givenChildrenJobInQueue_whenRecursiveStatusUpdated_thenJobParentShouldBeQueued[jvm] givenChildrenJobInQueue_whenRecursiveStatusUpdated_thenJobParentShouldBeQueued 0.130s passed
givenChildrenJobItemCompletedAndFailed_whenRecursiveStatusUpdated_thenJobParentShouldBePartialFailed[jvm] givenChildrenJobItemCompletedAndFailed_whenRecursiveStatusUpdated_thenJobParentShouldBePartialFailed 0.168s passed
givenChildrenJobItemFailed_whenRecursiveStatusUpdated_thenJobParentShouldBeFailed[jvm] givenChildrenJobItemFailed_whenRecursiveStatusUpdated_thenJobParentShouldBeFailed 0.146s passed
givenChildrenJobItemRunningJob_whenRecursiveStatusUpdated_thenParentShouldBeRunning[jvm] givenChildrenJobItemRunningJob_whenRecursiveStatusUpdated_thenParentShouldBeRunning 0.125s passed
givenChildrenJobItemWaitingForConnection_whenRecursiveStatusUpdated_thenJobParentShouldBeWaitingForConnection[jvm] givenChildrenJobItemWaitingForConnection_whenRecursiveStatusUpdated_thenJobParentShouldBeWaitingForConnection 0.102s passed
givenJobHasSubFoldersAndOneJobItemFailed_whenRecursiveStatusUpdated_thenParentOfSubFolderShouldBePartialFailed[jvm] givenJobHasSubFoldersAndOneJobItemFailed_whenRecursiveStatusUpdated_thenParentOfSubFolderShouldBePartialFailed 0.233s passed

Standard output

SQLITE:
" CREATE TRIGGER ContentJobItem_InsertTrigger AFTER INSERT ON ContentJobItem BEGIN UPDATE ContentJobItem SET cjiRecursiveProgress = NEW.cjiItemProgress, cjiRecursiveTotal = NEW.cjiItemTotal WHERE ContentJobItem.cjiUid = NEW.cjiUid; END; ",
" CREATE TRIGGER ContentJobItem_UpdateRecursiveTotals AFTER UPDATE ON ContentJobItem FOR EACH ROW WHEN ( NEW.cjiItemProgress != OLD.cjiItemProgress OR NEW.cjiItemTotal != OLD.cjiItemTotal) BEGIN UPDATE ContentJobItem SET cjiRecursiveProgress = (cjiRecursiveProgress + (NEW.cjiItemProgress - OLD.cjiItemProgress)), cjiRecursiveTotal = (cjiRecursiveTotal + (NEW.cjiItemTotal - OLD.cjiItemTotal)) WHERE ContentJobItem.cjiUid = NEW.cjiUid; END; ",
" CREATE TRIGGER ContentJobItem_UpdateRecursiveStatus AFTER UPDATE ON ContentJobItem FOR EACH ROW WHEN (NEW.cjiStatus != OLD.cjiStatus) BEGIN UPDATE ContentJobItem SET cjiRecursiveStatus = (CASE WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 24) THEN 24 WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 25) THEN 25 WHEN(SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus ) = (SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 28) THEN 28 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 12) THEN 12 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE (status = 25 OR status = 23)) THEN 23 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 5) THEN 5 ELSE 4 END) WHERE contentJobItem.cjiUid = NEW.cjiUid; END; ",
" CREATE TRIGGER ContentJobItem_UpdateParents AFTER UPDATE ON ContentJobItem FOR EACH ROW WHEN ( NEW.cjiParentCjiUid != 0 AND (NEW.cjiRecursiveProgress != OLD.cjiRecursiveProgress OR NEW.cjiRecursiveTotal != OLD.cjiRecursiveTotal)) BEGIN UPDATE ContentJobItem SET cjiRecursiveProgress = (cjiRecursiveProgress + (NEW.cjiRecursiveProgress - OLD.cjiRecursiveProgress)), cjiRecursiveTotal = (cjiRecursiveTotal + (NEW.cjiRecursiveTotal - OLD.cjiRecursiveTotal)) WHERE ContentJobItem.cjiUid = NEW.cjiParentCjiUid; END; ",
" CREATE TRIGGER ContentJobItem_UpdateStatusParent AFTER UPDATE ON ContentJobItem FOR EACH ROW WHEN ( NEW.cjiParentCjiUid != 0 AND (New.cjiRecursiveStatus != OLD.cjiRecursiveStatus)) BEGIN UPDATE ContentJobItem SET cjiRecursiveStatus = (CASE WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 24) THEN 24 WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 25) THEN 25 WHEN(SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus ) = (SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 28) THEN 28 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 12) THEN 12 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE (status = 25 OR status = 23)) THEN 23 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 5) THEN 5 ELSE 4 END) WHERE ContentJobItem.cjiUid = NEW.cjiParentCjiUid; END; "
POSTGRES
" CREATE OR REPLACE FUNCTION contentjobiteminsert_fn() RETURNS TRIGGER AS $$ BEGIN UPDATE ContentJobItem SET cjiRecursiveProgress = NEW.cjiItemProgress, cjiRecursiveTotal = NEW.cjiItemTotal WHERE ContentJobItem.cjiUid = NEW.cjiUid; RETURN NEW; END $$ LANGUAGE plpgsql ",
" CREATE TRIGGER contentjobiteminsert_trig AFTER INSERT ON ContentJobItem FOR EACH ROW EXECUTE PROCEDURE contentjobiteminsert_fn() ",
" CREATE OR REPLACE FUNCTION contentjobitem_updaterecursivetotals_fn() RETURNS TRIGGER AS $$ BEGIN UPDATE ContentJobItem SET cjiRecursiveProgress = (cjiRecursiveProgress + (NEW.cjiItemProgress - OLD.cjiItemProgress)), cjiRecursiveTotal = (cjiRecursiveTotal + (NEW.cjiItemTotal - OLD.cjiItemTotal)) WHERE (NEW.cjiItemProgress != OLD.cjiItemProgress OR NEW.cjiItemTotal != OLD.cjiItemTotal) AND ContentJobItem.cjiUid = NEW.cjiUid; RETURN NEW; END $$ LANGUAGE plpgsql ",
" CREATE TRIGGER contentjobitem_updaterecursivetotals_trig AFTER UPDATE ON ContentJobItem FOR EACH ROW EXECUTE PROCEDURE contentjobitem_updaterecursivetotals_fn(); ",
" CREATE OR REPLACE FUNCTION contentjobitem_updateparents_fn() RETURNS TRIGGER AS $$ BEGIN UPDATE ContentJobItem SET cjiRecursiveProgress = (cjiRecursiveProgress + (NEW.cjiRecursiveProgress - OLD.cjiRecursiveProgress)), cjiRecursiveTotal = (cjiRecursiveTotal + (NEW.cjiRecursiveTotal - OLD.cjiRecursiveTotal)) WHERE (NEW.cjiRecursiveProgress != OLD.cjiRecursiveProgress OR NEW.cjiRecursiveTotal != OLD.cjiRecursiveTotal) AND ContentJobItem.cjiUid = NEW.cjiParentCjiUid AND NEW.cjiParentCjiUid != 0; RETURN NEW; END $$ LANGUAGE plpgsql ",
" CREATE TRIGGER contentjobitem_updateparents_trig AFTER UPDATE ON ContentJobItem FOR EACH ROW EXECUTE PROCEDURE contentjobitem_updateparents_fn(); ",
" CREATE OR REPLACE FUNCTION contentjobitem_updatestatus_fn() RETURNS TRIGGER AS $$ BEGIN UPDATE ContentJobItem SET cjiRecursiveStatus = (CASE WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 24) THEN 24 WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 25) THEN 25 WHEN(SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus ) = (SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 28) THEN 28 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 12) THEN 12 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE (status = 25 OR status = 23)) THEN 23 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiUid) AS JobStatus WHERE status = 5) THEN 5 ELSE 4 END) WHERE contentJobItem.cjiUid = NEW.cjiUid AND NEW.cjiStatus != OLD.cjiStatus; RETURN NEW; END $$ LANGUAGE plpgsql ",
" CREATE TRIGGER contentjobitem_updatestatus_trig AFTER UPDATE ON ContentJobItem FOR EACH ROW EXECUTE PROCEDURE contentjobitem_updatestatus_fn(); ",
" CREATE OR REPLACE FUNCTION contentjobitem_updatestatusparents_fn() RETURNS TRIGGER AS $$ BEGIN UPDATE ContentJobItem SET cjiRecursiveStatus = (CASE WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 24) THEN 24 WHEN (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus ) = (SELECT Count(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 25) THEN 25 WHEN(SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus ) = (SELECT COUNT(*) FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 28) THEN 28 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 12) THEN 12 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE (status = 25 OR status = 23)) THEN 23 WHEN EXISTS (SELECT status FROM (SELECT cjiRecursiveStatus AS status FROM ContentJobItem WHERE cjiParentCjiUid = NEW.cjiParentCjiUid UNION SELECT cjiStatus AS status FROM ContentJobItem WHERE cjiUid = NEW.cjiParentCjiUid) AS JobStatus WHERE status = 5) THEN 5 ELSE 4 END) WHERE NEW.cjiParentCjiUid != 0 AND NEW.cjiRecursiveStatus != OLD.cjiRecursiveStatus AND ContentJobItem.cjiUid = NEW.cjiParentCjiUid; RETURN NEW; END $$ LANGUAGE plpgsql ",
" CREATE TRIGGER contentjobitem_updatestatusparents_trig AFTER UPDATE ON ContentJobItem FOR EACH ROW EXECUTE PROCEDURE contentjobitem_updatestatusparents_fn(); "

Standard error

Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e]: processing changes to HolidayCalendar, ChangeLog, Holiday, Clazz, Schedule, ClazzLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@2e47ec5e] findAndSendPendingReplicationNotifications  for table(s) ClazzLog, Schedule, HolidayCalendar, Holiday, Clazz
java.io.IOException: other event source error
	at com.ustadmobile.door.sse.DoorEventSource$eventSourceListener$1.onFailure(DoorEventSource.kt:43)
	at okhttp3.internal.sse.RealEventSource.processResponse(RealEventSource.kt:52)
	at okhttp3.internal.sse.RealEventSource.onResponse(RealEventSource.kt:46)
	at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:829)
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1126393731 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=9164893255286705028%2F03708a39-d888-4ea7-9371-a4e2a31228db] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306]: processing changes to Clazz, ChangeLog, Schedule
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] DoorLog - ReplicationNotificationDispatcher: findPendingReplications for Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
FINE: [DEBUG] ReplicationNotificationDispatcher$findAndSendPendingReplicationNotifications - ReplicationNotificationDispatcher for [com.ustadmobile.core.db.UmAppDatabase_JdbcKt@3fb2306] findAndSendPendingReplicationNotifications  for table(s) Schedule, Clazz
java.io.IOException: other event source error
	at com.ustadmobile.door.sse.DoorEventSource$eventSourceListener$1.onFailure(DoorEventSource.kt:43)
	at okhttp3.internal.sse.RealEventSource.processResponse(RealEventSource.kt:52)
	at okhttp3.internal.sse.RealEventSource.onResponse(RealEventSource.kt:46)
	at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:829)
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1526806870 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=2404249430295110319%2Fde9977f7-3e28-4990-b052-3c819e5ba695] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
java.io.IOException: other event source error
	at com.ustadmobile.door.sse.DoorEventSource$eventSourceListener$1.onFailure(DoorEventSource.kt:43)
	at okhttp3.internal.sse.RealEventSource.processResponse(RealEventSource.kt:52)
	at okhttp3.internal.sse.RealEventSource.onResponse(RealEventSource.kt:46)
	at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:829)
java.io.IOException: other event source error
	at com.ustadmobile.door.sse.DoorEventSource$eventSourceListener$1.onFailure(DoorEventSource.kt:43)
	at okhttp3.internal.sse.RealEventSource.processResponse(RealEventSource.kt:52)
	at okhttp3.internal.sse.RealEventSource.onResponse(RealEventSource.kt:46)
	at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:829)
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@533766347 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-4748779716712334871%2F0396eaea-c631-4f76-9147-8b1984bbc615] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:05 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@2079211566 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7733021498662810713%2Fb16fb2bb-080f-4bbd-a8c2-2f21c0f028fd] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
java.io.IOException: other event source error
	at com.ustadmobile.door.sse.DoorEventSource$eventSourceListener$1.onFailure(DoorEventSource.kt:43)
	at okhttp3.internal.sse.RealEventSource.processResponse(RealEventSource.kt:52)
	at okhttp3.internal.sse.RealEventSource.onResponse(RealEventSource.kt:46)
	at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:829)
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@347016305 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=-8454887591995023253%2Fbb847394-7b84-4842-b032-6989dc2cfc25] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
java.io.IOException: other event source error
	at com.ustadmobile.door.sse.DoorEventSource$eventSourceListener$1.onFailure(DoorEventSource.kt:43)
	at okhttp3.internal.sse.RealEventSource.processResponse(RealEventSource.kt:52)
	at okhttp3.internal.sse.RealEventSource.onResponse(RealEventSource.kt:46)
	at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:829)
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms
Feb 16, 2023 12:55:06 PM io.github.aakira.napier.DebugAntilog performLog
SEVERE: [ERROR] DoorEventSource$eventSourceListener$1$onFailure$invokeSuspend - [DoorEventSource@1060431378 - http://localhost/dummyreplication/subscribe?door-dbversion=107&door-node=7172833490942055276%2Fe6a5adce-e531-4e3c-9023-8512de42039b] error: java.io.IOException: other event source error . Attempting to reconnect after 2000ms