tangled
alpha
login
or
join now
edavis.dev
/
bsky-tools
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
feat: execute pipe every 2.5k ops
Eric Davis
1 year ago
2f900e3a
0cd643f3
+1
-1
1 changed file
expand all
collapse all
unified
split
cmd
bsky-activity
main.go
+1
-1
cmd/bsky-activity/main.go
···
141
141
142
142
// add one to the count, every 500 ops execute the piepline
143
143
eventCount += 1
144
144
-
if eventCount%500 == 0 {
144
144
+
if eventCount%2500 == 0 {
145
145
if _, err := pipe.Exec(ctx); err != nil {
146
146
log.Printf("failed to exec pipe\n")
147
147
}