this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

goat: longer timeout for CAR export (#902)

Closes: https://github.com/bluesky-social/indigo/issues/896

Suspect repo exports to crop up in other places, but can start with this
here.

authored by

bnewbold and committed by
GitHub
ad3c38b9 c9312f11

+5
+5
cmd/goat/repo.go
··· 18 18 "github.com/bluesky-social/indigo/repo" 19 19 "github.com/bluesky-social/indigo/util" 20 20 "github.com/bluesky-social/indigo/xrpc" 21 + 21 22 "github.com/ipfs/go-cid" 22 23 cbor "github.com/ipfs/go-ipld-cbor" 23 24 ipld "github.com/ipfs/go-ipld-format" ··· 116 117 if xrpcc.Host == "" { 117 118 return fmt.Errorf("no PDS endpoint for identity") 118 119 } 120 + 121 + // set longer timeout, for large CAR files 122 + xrpcc.Client = util.RobustHTTPClient() 123 + xrpcc.Client.Timeout = 600 * time.Second 119 124 120 125 carPath := cctx.String("output") 121 126 if carPath == "" {