A tool for measuring the coverage of Bluesky/ATProto relays
9
fork

Configure Feed

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

cleaner shutdown on ctrl+c

+10
+10
run_test.rb
··· 122 122 rescue Interrupt 123 123 puts 124 124 puts "Stopping..." 125 + 126 + Process.kill('SIGINT', *workers.map(&:pid)) 127 + 128 + while !workers.empty? 129 + pid = Process.wait 130 + worker = workers.detect { |w| w.pid == pid } 131 + workers.delete(worker) 132 + 133 + line = worker.pipe.gets 134 + end 125 135 end