Skip to content

Commit

Permalink
chore: Use new BGS firehose websocket endpoint (#6)
Browse files Browse the repository at this point in the history
Bluesky has launched their new big graph server in production. In order
to get all posts from all personal data servers the feed generator
should listen to the BGS moving forward.
  • Loading branch information
snorremd authored Oct 8, 2023
1 parent 5a1a17d commit b7b6208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firehose/firehose.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type Firehose struct {
func New(postChan chan interface{}, context context.Context) *Firehose {
dialer := websocket.DefaultDialer
firehose := &Firehose{
address: "wss://bsky.social/xrpc/com.atproto.sync.subscribeRepos",
address: "wss://bsky.network/xrpc/com.atproto.sync.subscribeRepos",
dialer: dialer,
postChan: postChan,
context: context,
Expand Down

0 comments on commit b7b6208

Please sign in to comment.