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
message.push_str("If you choose to reply (by using send_message with target_type bluesky and the target_id set to the uri), your response must contain under 300 characters or it will be truncated.\n");
3250
+
message.push_str("If you choose to reply (by using send_message with target_type bluesky and the target_id set to the uri), your response must contain under 300 graphemes or it won't go through. You can thread a longer reply by requesting a heartbeat when making a reply, posting the first part of the the reply, and then replying to the uri you get back from the first successful reply with the second part\n");
3244
3251
}
3245
3252
3246
3253
// Collect memory blocks
@@ -4169,8 +4176,6 @@ impl LexiconIngestor for PostIngestor {
4169
4176
ifletSome(buffer) = &self.buffer{
4170
4177
letmut buffer_guard = buffer.lock();
4171
4178
if buffer_guard.queue_for_processing(event.clone()){
4172
-
// Successfully queued for later processing
4173
-
tracing::debug!("Queued post for rate-limited processing");
4174
4179
}else{
4175
4180
// Queue full, drop the event
4176
4181
tracing::warn!(
@@ -4182,9 +4187,6 @@ impl LexiconIngestor for PostIngestor {
4182
4187
buffer_guard.push(event);
4183
4188
}
4184
4189
}else{
4185
-
// Can send immediately
4186
-
tracing::debug!("📤 Sending post to channel: @{}", post_to_filter.handle);
4187
-
4188
4190
// Always mark activity for watchdog regardless of send success - we're processing messages
0 commit comments