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
Seems to be a long-standing, very intermittent bug --
you post something
it's actually posted to SSB
but it takes a long time to show up on your timeline.
This could a text-post, or a like on someone else's post, and it doesn't show up on your timeline right away, it can take hours (or longer?)
e.g. I noticed this myself for the first time today, around 1:30 PM and now it's 6 PM and still I don't see these new events on my timeline.
The text was updated successfully, but these errors were encountered:
danlatorre
changed the title
Your post/event doesn’t show up after publishing
Your post/event doesn’t show up on your timeline after publishing
Jan 6, 2023
I think this happened to me once and I determined that it was caused by go-ssb. Maybe this won't happen after we switch to scuttlego. Either way this flow needs some attention (see #1033).
After gobot correctly publish something, we execute the following code:
Log.info("Published message with key \(key)")
// Copy the newly published post into the ViewDatabase immediately.
do{guardlet self =selfelse{
completionQueue.async{completion(MessageIdentifier.null,BotError.notLoggedIn)}return}letlastPostIndex=tryself.database.largestSeqFromPublishedLog()letpublishedPosts=tryself.bot.getPublishedLog(after: lastPostIndex)tryself.database.fillMessages(msgs: publishedPosts)tryself.updateNumberOfPublishedMessages(for: identity)self.numberOfPublishedMessagesLock.unlock()
completionQueue.async{completion(key,nil)}}catch{self?.numberOfPublishedMessagesLock.unlock()
completionQueue.async{completion(MessageIdentifier.null, error)}}
If any try fails, we fail the whole operation, but some steps could have executed correctly. We could benefit from having a single transaction to include all operations and rollback it if one of them fails.
Seems to be a long-standing, very intermittent bug --
you post something
it's actually posted to SSB
but it takes a long time to show up on your timeline.
This could a text-post, or a like on someone else's post, and it doesn't show up on your timeline right away, it can take hours (or longer?)
e.g. I noticed this myself for the first time today, around 1:30 PM and now it's 6 PM and still I don't see these new events on my timeline.
The text was updated successfully, but these errors were encountered: