Skip to content

Fix race condition causing panic in downloadLoop during pause/resume#1232

Merged
monkeyWie merged 5 commits intoperf/dht_error_logsfrom
copilot/sub-pr-1186
Jan 10, 2026
Merged

Fix race condition causing panic in downloadLoop during pause/resume#1232
monkeyWie merged 5 commits intoperf/dht_error_logsfrom
copilot/sub-pr-1186

Conversation

Copy link
Contributor

Copilot AI commented Jan 10, 2026

Rapid pause/resume cycles caused panic: close of closed channel in TestPauseAllAndContinueALLTasks. When doStart() recreated f.downloadLoopDone, the previous downloadLoop's defer closure would close the new channel instead of its own, causing multiple goroutines to close the same channel.

Changes:

  • Pass downloadLoopDone channel as parameter to downloadLoop() instead of reading from struct field
  • Each goroutine now closes only its own channel instance

Before:

func (f *Fetcher) doStart() error {
    f.downloadLoopDone = make(chan struct{})
    go f.downloadLoop()
}

func (f *Fetcher) downloadLoop() {
    defer func() {
        if f.downloadLoopDone != nil {
            close(f.downloadLoopDone)  // May close wrong channel
        }
    }()
}

After:

func (f *Fetcher) doStart() error {
    doneCh := make(chan struct{})
    f.downloadLoopDone = doneCh
    go f.downloadLoop(doneCh)
}

func (f *Fetcher) downloadLoop(doneCh chan struct{}) {
    defer func() {
        if doneCh != nil {
            close(doneCh)  // Always closes correct channel
        }
    }()
}

💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 4 commits January 10, 2026 01:23
…le-close

The issue occurred when pause/resume happened rapidly. When doStart() was called
again, it created a new channel and assigned it to f.downloadLoopDone. However,
the previous downloadLoop's defer closure would then close this NEW channel instead
of its own, causing both the old and new downloadLoop to close the same channel,
resulting in "panic: close of closed channel".

Solution: Pass the channel as a parameter to downloadLoop so each goroutine has
its own dedicated channel to close, preventing any possibility of double-close.

Tested with 5 consecutive runs of the failing test - all passed.

Co-authored-by: monkeyWie <[email protected]>
Copy link
Contributor Author

Copilot AI commented Jan 10, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • 239.255.255.250
    • Triggering command: REDACTED, pid is -1 (packet block)
  • dht.aelitis.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • dht.anacrolix.link
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • dht.libtorrent.org
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • dht.transmissionbt.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • explodie.org
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • github.com.git
    • Triggering command: /tmp/go-build2326397063/b867/rest.test /tmp/go-build2326397063/b867/rest.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b867/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b867/_cover_.out [email protected] /tmp/go-build418--gdwarf2 ux_amd64/vet ternal/dilithium/opt/hostedtoolcache/go/1.24.11/x64/pkg/tool/linux_amd64/cover ternal/mat.go (dns block)
    • Triggering command: /tmp/go-build357054560/b001/rest.test /tmp/go-build357054560/b001/rest.test -test.paniconexit0 -test.timeout=10m0s -test.count=1 -test.v=true om/go-llsqlite/[email protected] -buildtags u/13/cc1plus (dns block)
    • Triggering command: /tmp/go-build2504604869/b001/rest.test /tmp/go-build2504604869/b001/rest.test -test.paniconexit0 -test.timeout=10m0s -test.count=1 -test.v=true tem ]; then /usr-p 9882455/b340/ (dns block)
  • https://api.github.com/repos/GopeedLab/gopeed/releases/latest
    • Triggering command: /tmp/go-build2326397063/b853/download.test /tmp/go-build2326397063/b853/download.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b853/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b853/_cover_.out /tmp/go-build418-p -trimpath u/13/cc1 -p github.com/go-gi-I -lang=go1.18 u/13/cc1 -ato�� [email protected] -buildtags .cfg -errorsas -ifaceassert -nilfunc ache/go/1.24.11//tmp/ccLOGpqA.o (http block)
  • ipv4.tracker.harry.lu
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • ipv6.torrent.ubuntu.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • non-existent-host-12345.example
    • Triggering command: /tmp/go-build2326397063/b853/download.test /tmp/go-build2326397063/b853/download.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b853/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b853/_cover_.out /tmp/go-build418-p -trimpath u/13/cc1 -p github.com/go-gi-I -lang=go1.18 u/13/cc1 -ato�� [email protected] -buildtags .cfg -errorsas -ifaceassert -nilfunc ache/go/1.24.11//tmp/ccLOGpqA.o (dns block)
  • open.stealth.si
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • opentor.org
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • p4p.arenabg.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • router.bittorrent.cloud
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • router.bittorrent.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • router.silotis.us
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • router.utorrent.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • torrent.ubuntu.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.birkenwald.de
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.bitsearch.to
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.cyberia.is
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.dler.org
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.files.fm
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.foreverpirates.co
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.moeking.me
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.opentrackr.org
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.tiny-vps.com
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • tracker.torrent.eu.org
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)
  • uploads.gamecoast.net
    • Triggering command: /tmp/go-build2326397063/b840/bt.test /tmp/go-build2326397063/b840/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build2326397063/b840/gocoverdir -test.timeout=10m0s -test.coverprofile=/tmp/go-build2326397063/b840/_cover_.out se 9882455/b221/vet.cfg x64/pkg/tool/linux_amd64/vet . --gdwarf2 --64 x64/pkg/tool/lin/tmp/go-build2326397063/b814/vet.cfg -o [email protected] -trimpath .cfg -p github.com/go-gi-I -lang=go1.18 ache/go/1.24.11/-I (dns block)
    • Triggering command: /tmp/go-build1728695429/b852/bt.test /tmp/go-build1728695429/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build1728695429/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.v=true -test.coverprofile=/tmp/go-build1728695429/b852/_cover_.out ux_amd64/compile--as-needed -errorsas (dns block)
    • Triggering command: /tmp/go-build4222122800/b852/bt.test /tmp/go-build4222122800/b852/bt.test -test.paniconexit0 -test.gocoverdir=/tmp/go-build4222122800/b852/gocoverdir -test.timeout=10m0s -test.count=1 -test.coverprofile=/tmp/go-build4222122800/b852/_cover_.out ervars.go x64/pkg/tool/lin-plugin-opt=-pass-through=-lc . again, it created a new channel and assigned it to f.downloadLoopDone. However, the�� --64 x64/pkg/tool/lin-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -I in.so /lto-wrapper go ver_.out c9f6_ -o 6397063/b510/cov--eh-frame-hdr (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title [WIP] Fix slow down DHT announcing on errors Fix race condition causing panic in downloadLoop during pause/resume Jan 10, 2026
Copilot AI requested a review from monkeyWie January 10, 2026 01:37
@monkeyWie monkeyWie marked this pull request as ready for review January 10, 2026 02:23
@monkeyWie monkeyWie merged commit 0863467 into perf/dht_error_logs Jan 10, 2026
@monkeyWie monkeyWie deleted the copilot/sub-pr-1186 branch January 10, 2026 02:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants