A community based topic aggregation platform built on atproto

refactor: update Jetstream consumer config for new namespace

Update Jetstream comment consumer configuration to subscribe to
social.coves.community.comment collection instead of
social.coves.feed.comment.

Changes:
- Update COMMENT_JETSTREAM_URL wantedCollections parameter
- Update log message to reflect new collection name

The consumer will now listen for CREATE/UPDATE/DELETE operations
on the community.comment collection from the Jetstream firehose.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+2 -2
+2 -2
cmd/server/main.go
··· 404 404 commentJetstreamURL := os.Getenv("COMMENT_JETSTREAM_URL") 405 405 if commentJetstreamURL == "" { 406 406 // Listen to comment record CREATE/UPDATE/DELETE events from user repositories 407 - commentJetstreamURL = "ws://localhost:6008/subscribe?wantedCollections=social.coves.feed.comment" 407 + commentJetstreamURL = "ws://localhost:6008/subscribe?wantedCollections=social.coves.community.comment" 408 408 } 409 409 410 410 commentEventConsumer := jetstream.NewCommentEventConsumer(commentRepo, db) ··· 417 417 }() 418 418 419 419 log.Printf("Started Jetstream comment consumer: %s", commentJetstreamURL) 420 - log.Println(" - Indexing: social.coves.feed.comment CREATE/UPDATE/DELETE operations") 420 + log.Println(" - Indexing: social.coves.community.comment CREATE/UPDATE/DELETE operations") 421 421 log.Println(" - Updating: Post comment counts and comment reply counts atomically") 422 422 423 423 // Register XRPC routes