You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that the calls to delete_links and the traversing of the devices are being handled concurrently rather than sequentially. As a result, a psuedo log sequence looks like this:
Checking Device A for orphan links
Checking Device B for orphan links
Orphan link found on Device B
Checking Device C for orphan links
Checking Device D for orphan links
Orphan Links complete 1 link deleted
Deleting orphan link on Device B
Orphan Links complete 2 links deleted
The text was updated successfully, but these errors were encountered:
…ence
Remove message callback from PLM Delete_Link and insert ALDB_Callback in Insteon_PLM.
Message callback is called as soon as the message is sent, and then it was again called on receiving the ACK. Which resulted in at least two instances of Delete Orphans running.
Fixhollie#61
It appears that the calls to delete_links and the traversing of the devices are being handled concurrently rather than sequentially. As a result, a psuedo log sequence looks like this:
Checking Device A for orphan links
Checking Device B for orphan links
Orphan link found on Device B
Checking Device C for orphan links
Checking Device D for orphan links
Orphan Links complete 1 link deleted
Deleting orphan link on Device B
Orphan Links complete 2 links deleted
The text was updated successfully, but these errors were encountered: