fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Runner:
carl
online
linux/aarch64
Started: Jul 31, 2026 at 02:24 UTC
Completed: Jul 31, 2026 at 02:28 UTC
Duration: 3m 53s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Cover compiling modules ...
Running ExUnit with seed: 507137, max_cases: 8
Excluding tags: [:s3]
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: default values for the optional arguments in the private function http_post/4 are never used
│
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
│
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
.....................................................................................................................................................................................................................................
02:24:17.225 [info] The function passed as a handler with ID #Reference<0.1617038282.1745616899.63149> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
848 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:848:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
........................................................................................................................................................
02:24:18.734 [info] The function passed as a handler with ID "test-fail-#Reference<0.1617038282.1745616897.67521>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:24:18.736 [info] The function passed as a handler with ID "test-#Reference<0.1617038282.1745616900.67725>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1131 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1131:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1161 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1161:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
..............................................................................................................................................................................................................................................
02:24:21.452 [info] UploadPackV2: processing fetch command
02:24:21.452 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:21.468 [info] UploadPackV2: reused pack 12429 bytes, 160 objects
02:24:21.469 [info] UploadPackV2: fetch response 12451 bytes
.........
02:24:21.664 [info] UploadPackV2: processing fetch command
.
02:24:21.664 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:24:21.664 [info] UploadPackV2: collected 3 objects, generating pack
.
02:24:21.664 [info] UploadPackV2: pack generated, 191 bytes
.
02:24:21.664 [info] UploadPackV2: fetch response 213 bytes
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
.....
02:24:21.788 [info] UploadPackV2: processing fetch command
02:24:21.788 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:21.804 [info] UploadPackV2: collected 32 objects, streaming pack
warning: module attribute @git_lfs_available was set but never used
│
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
│
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
02:24:21.951 [info] UploadPackV2: streamed pack 2459750 bytes, 32 objects
02:24:21.951 [info] UploadPackV2: fetch streamed 2459750 pack bytes, 32 objects
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
...
02:24:22.204 [info] UploadPackV2: processing ls-refs command
.
02:24:22.205 [info] UploadPackV2: processing fetch command
.
02:24:22.205 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:24:22.206 [info] UploadPackV2: collected 15 objects, generating pack
02:24:22.207 [info] UploadPackV2: pack generated, 984 bytes
02:24:22.207 [info] UploadPackV2: fetch response 1006 bytes
02:24:22.207 [info] UploadPackV2: processing fetch command
02:24:22.207 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:24:22.208 [info] UploadPackV2: collected 15 objects, streaming pack
02:24:22.209 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
02:24:22.209 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
02:24:22.209 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
02:24:22.210 [info] UploadPackV2: processing fetch command
02:24:22.210 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.211 [info] UploadPackV2: collected 3 objects, generating pack
02:24:22.211 [info] UploadPackV2: pack generated, 191 bytes
02:24:22.211 [info] UploadPackV2: fetch response 213 bytes
..
02:24:22.278 [info] UploadPackV2: processing fetch command
02:24:22.278 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.310 [info] UploadPackV2: collected 700 objects, generating pack
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
02:24:22.326 [info] UploadPackV2: pack generated, 48139 bytes
02:24:22.326 [info] UploadPackV2: fetch response 48161 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
.
02:24:22.377 [info] UploadPackV2: processing fetch command
.
02:24:22.377 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:24:22.377 [info] UploadPackV2: collected 0 objects, generating pack
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
.
02:24:22.377 [info] UploadPackV2: pack generated, 32 bytes
02:24:22.377 [info] UploadPackV2: fetch response 54 bytes
02:24:22.378 [info] UploadPackV2: processing fetch command
02:24:22.378 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.379 [info] UploadPackV2: collected 3 objects, generating pack
02:24:22.379 [info] UploadPackV2: pack generated, 223 bytes
02:24:22.380 [info] UploadPackV2: fetch response 245 bytes
02:24:22.384 [info] UploadPackV2: processing fetch command
02:24:22.384 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.384 [info] UploadPackV2: collected 3 objects, generating pack
02:24:22.385 [info] UploadPackV2: pack generated, 195 bytes
02:24:22.385 [info] UploadPackV2: fetch response 217 bytes
.
02:24:22.505 [info] UploadPackV2: processing ls-refs command
02:24:22.505 [info] UploadPackV2: processing fetch command
02:24:22.505 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.505 [info] UploadPackV2: collected 3 objects, generating pack
02:24:22.505 [info] UploadPackV2: pack generated, 210 bytes
02:24:22.505 [info] UploadPackV2: fetch response 232 bytes
.
02:24:22.606 [info] UploadPackV2: processing fetch command
02:24:22.606 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.607 [info] UploadPackV2: collected 3 objects, streaming pack
02:24:22.610 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
02:24:22.610 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
..
02:24:22.616 [info] UploadPackV2: processing fetch command
02:24:22.616 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.617 [info] UploadPackV2: collected 9 objects, streaming pack
02:24:22.618 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
02:24:22.618 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
..
02:24:22.621 [info] UploadPackV2: processing fetch command
.
02:24:22.621 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:24:22.621 [info] UploadPackV2: fetch response 73 bytes
02:24:22.621 [info] UploadPackV2: processing fetch command
02:24:22.621 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:24:22.621 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
02:24:22.622 [info] UploadPackV2: processing ls-refs command
02:24:22.623 [info] UploadPackV2: processing ls-refs command
.
02:24:22.624 [info] UploadPackV2: processing ls-refs command
02:24:22.624 [info] UploadPackV2: processing fetch command
02:24:22.625 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.625 [info] UploadPackV2: collected 3 objects, generating pack
02:24:22.625 [info] UploadPackV2: pack generated, 206 bytes
.
02:24:22.625 [info] UploadPackV2: fetch response 228 bytes
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
..........................................................
02:24:22.749 [info] UploadPackV2: processing fetch command
02:24:22.749 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....
02:24:22.759 [info] UploadPackV2: collected 32 objects, generating pack
..........
02:24:22.860 [info] UploadPackV2: pack generated, 2459815 bytes
02:24:22.866 [info] UploadPackV2: fetch response 2460022 bytes
02:24:22.866 [info] UploadPackV2: processing fetch command
02:24:22.867 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.876 [info] UploadPackV2: collected 32 objects, streaming pack
..
02:24:22.987 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
02:24:22.988 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
.
02:24:22.991 [info] UploadPackV2: processing ls-refs command
.
02:24:22.992 [info] UploadPackV2: processing fetch command
.
02:24:22.992 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.993 [info] UploadPackV2: collected 3 objects, generating pack
02:24:22.993 [info] UploadPackV2: pack generated, 194 bytes
02:24:22.993 [info] UploadPackV2: fetch response 216 bytes
02:24:22.995 [info] UploadPackV2: processing fetch command
02:24:22.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:22.996 [info] UploadPackV2: collected 15 objects, generating pack
02:24:22.997 [info] UploadPackV2: pack generated, 984 bytes
.
02:24:22.997 [info] UploadPackV2: fetch response 1006 bytes
.
02:24:23.040 [info] UploadPackV2: processing fetch command
02:24:23.041 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...............
02:24:23.066 [info] UploadPackV2: collected 600 objects, generating pack
02:24:23.077 [info] UploadPackV2: pack generated, 39862 bytes
02:24:23.077 [info] UploadPackV2: fetch response 39884 bytes
.
02:24:23.126 [info] UploadPackV2: processing fetch command
02:24:23.126 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.126 [info] UploadPackV2: collected 3 objects, streaming pack
02:24:23.127 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
02:24:23.127 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
02:24:23.130 [info] UploadPackV2: processing fetch command
02:24:23.130 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.130 [info] UploadPackV2: collected 3 objects, generating pack
02:24:23.131 [info] UploadPackV2: pack generated, 191 bytes
02:24:23.131 [info] UploadPackV2: fetch response 213 bytes
.
02:24:23.137 [info] UploadPackV2: processing fetch command
02:24:23.137 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.144 [info] UploadPackV2: collected 90 objects, generating pack
02:24:23.145 [info] UploadPackV2: pack generated, 5946 bytes
02:24:23.146 [info] UploadPackV2: fetch response 5968 bytes
.
02:24:23.151 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
02:24:23.152 [info] UploadPackV2: processing fetch command
02:24:23.152 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.152 [info] UploadPackV2: collected 3 objects, generating pack
02:24:23.152 [info] UploadPackV2: pack generated, 195 bytes
02:24:23.153 [info] UploadPackV2: fetch response 217 bytes
.
02:24:23.154 [info] UploadPackV2: processing fetch command
02:24:23.155 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.155 [info] UploadPackV2: collected 6 objects, generating pack
02:24:23.155 [info] UploadPackV2: pack generated, 414 bytes
02:24:23.156 [info] UploadPackV2: fetch response 436 bytes
....................
02:24:23.248 [info] The function passed as a handler with ID #Reference<0.1617038282.1745616900.145026> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.............
02:24:23.257 [info] UploadPackV2: processing fetch command
02:24:23.257 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.258 [info] UploadPackV2: collected 20 objects, generating pack
02:24:23.259 [info] UploadPackV2: pack generated, 1490 bytes
02:24:23.259 [info] UploadPackV2: fetch response 1512 bytes
02:24:23.268 [info] UploadPackV2: processing fetch command
02:24:23.268 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.271 [info] UploadPackV2: collected 17 objects, generating pack
02:24:23.271 [info] UploadPackV2: pack generated, 1278 bytes
02:24:23.271 [info] UploadPackV2: fetch response 1300 bytes
02:24:23.278 [info] UploadPackV2: processing fetch command
02:24:23.279 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.281 [info] UploadPackV2: collected 18 objects, generating pack
02:24:23.282 [info] UploadPackV2: pack generated, 1250 bytes
02:24:23.282 [info] UploadPackV2: fetch response 1272 bytes
02:24:23.289 [info] UploadPackV2: processing fetch command
02:24:23.289 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.289 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.289 [info] UploadPackV2: pack generated, 639 bytes
02:24:23.290 [info] UploadPackV2: fetch response 661 bytes
02:24:23.292 [info] UploadPackV2: processing fetch command
02:24:23.292 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.295 [info] UploadPackV2: collected 3 objects, generating pack
02:24:23.295 [info] UploadPackV2: pack generated, 214 bytes
02:24:23.295 [info] UploadPackV2: fetch response 236 bytes
02:24:23.299 [info] UploadPackV2: processing fetch command
02:24:23.299 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.301 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.301 [info] UploadPackV2: pack generated, 854 bytes
02:24:23.301 [info] UploadPackV2: fetch response 876 bytes
02:24:23.306 [info] UploadPackV2: processing fetch command
02:24:23.307 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.307 [info] UploadPackV2: collected 18 objects, generating pack
02:24:23.308 [info] UploadPackV2: pack generated, 1250 bytes
02:24:23.308 [info] UploadPackV2: fetch response 1272 bytes
02:24:23.314 [info] UploadPackV2: processing fetch command
02:24:23.314 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.315 [info] UploadPackV2: collected 9 objects, generating pack
02:24:23.316 [info] UploadPackV2: pack generated, 642 bytes
.
02:24:23.316 [info] UploadPackV2: fetch response 664 bytes
02:24:23.324 [info] UploadPackV2: processing fetch command
02:24:23.324 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.327 [info] UploadPackV2: collected 10 objects, generating pack
02:24:23.328 [info] UploadPackV2: pack generated, 806 bytes
02:24:23.328 [info] UploadPackV2: fetch response 828 bytes
02:24:23.332 [info] UploadPackV2: processing fetch command
02:24:23.332 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.333 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.334 [info] UploadPackV2: pack generated, 636 bytes
02:24:23.334 [info] UploadPackV2: fetch response 658 bytes
02:24:23.342 [info] UploadPackV2: processing fetch command
02:24:23.342 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.343 [info] UploadPackV2: collected 20 objects, generating pack
02:24:23.344 [info] UploadPackV2: pack generated, 1492 bytes
02:24:23.344 [info] UploadPackV2: fetch response 1514 bytes
02:24:23.351 [info] UploadPackV2: processing fetch command
02:24:23.351 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.352 [info] UploadPackV2: collected 17 objects, generating pack
02:24:23.353 [info] UploadPackV2: pack generated, 1276 bytes
02:24:23.353 [info] UploadPackV2: fetch response 1298 bytes
...
02:24:23.360 [info] UploadPackV2: processing fetch command
02:24:23.360 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.360 [info] UploadPackV2: collected 6 objects, generating pack
02:24:23.361 [info] UploadPackV2: pack generated, 428 bytes
02:24:23.361 [info] UploadPackV2: fetch response 450 bytes
02:24:23.363 [info] UploadPackV2: processing fetch command
02:24:23.363 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.364 [info] UploadPackV2: collected 6 objects, generating pack
02:24:23.364 [info] UploadPackV2: pack generated, 428 bytes
02:24:23.364 [info] UploadPackV2: fetch response 450 bytes
02:24:23.368 [info] UploadPackV2: processing fetch command
02:24:23.369 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.370 [info] UploadPackV2: collected 17 objects, generating pack
02:24:23.371 [info] UploadPackV2: pack generated, 1219 bytes
02:24:23.371 [info] UploadPackV2: fetch response 1241 bytes
02:24:23.379 [info] UploadPackV2: processing fetch command
02:24:23.379 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.380 [info] UploadPackV2: collected 9 objects, generating pack
02:24:23.380 [info] UploadPackV2: pack generated, 642 bytes
02:24:23.380 [info] UploadPackV2: fetch response 664 bytes
02:24:23.385 [info] UploadPackV2: processing fetch command
02:24:23.386 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:24:23.388 [info] UploadPackV2: collected 14 objects, generating pack
02:24:23.388 [info] UploadPackV2: pack generated, 1062 bytes
02:24:23.388 [info] UploadPackV2: fetch response 1084 bytes
02:24:23.394 [info] UploadPackV2: processing fetch command
02:24:23.394 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.394 [info] UploadPackV2: collected 3 objects, generating pack
02:24:23.395 [info] UploadPackV2: pack generated, 214 bytes
02:24:23.395 [info] UploadPackV2: fetch response 236 bytes
02:24:23.397 [info] UploadPackV2: processing fetch command
02:24:23.397 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.399 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.399 [info] UploadPackV2: pack generated, 853 bytes
02:24:23.399 [info] UploadPackV2: fetch response 875 bytes
02:24:23.407 [info] UploadPackV2: processing fetch command
02:24:23.407 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.409 [info] UploadPackV2: collected 32 objects, generating pack
02:24:23.410 [info] UploadPackV2: pack generated, 2301 bytes
02:24:23.410 [info] UploadPackV2: fetch response 2323 bytes
02:24:23.417 [info] UploadPackV2: processing fetch command
02:24:23.417 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.419 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.419 [info] UploadPackV2: pack generated, 639 bytes
02:24:23.419 [info] UploadPackV2: fetch response 661 bytes
02:24:23.423 [info] UploadPackV2: processing fetch command
02:24:23.423 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.424 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.424 [info] UploadPackV2: pack generated, 639 bytes
02:24:23.424 [info] UploadPackV2: fetch response 661 bytes
02:24:23.429 [info] UploadPackV2: processing fetch command
02:24:23.429 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.430 [info] UploadPackV2: collected 9 objects, generating pack
02:24:23.430 [info] UploadPackV2: pack generated, 642 bytes
02:24:23.430 [info] UploadPackV2: fetch response 664 bytes
02:24:23.434 [info] UploadPackV2: processing fetch command
02:24:23.434 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.435 [info] UploadPackV2: collected 15 objects, generating pack
02:24:23.436 [info] UploadPackV2: pack generated, 1037 bytes
02:24:23.436 [info] UploadPackV2: fetch response 1059 bytes
02:24:23.448 [info] UploadPackV2: processing fetch command
02:24:23.448 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.451 [info] UploadPackV2: collected 26 objects, generating pack
02:24:23.452 [info] UploadPackV2: pack generated, 1871 bytes
02:24:23.452 [info] UploadPackV2: fetch response 1893 bytes
02:24:23.460 [info] UploadPackV2: processing fetch command
02:24:23.460 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.461 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.462 [info] UploadPackV2: pack generated, 819 bytes
02:24:23.462 [info] UploadPackV2: fetch response 841 bytes
02:24:23.466 [info] UploadPackV2: processing fetch command
02:24:23.466 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.466 [info] UploadPackV2: collected 5 objects, generating pack
02:24:23.466 [info] UploadPackV2: pack generated, 424 bytes
02:24:23.466 [info] UploadPackV2: fetch response 446 bytes
02:24:23.472 [info] UploadPackV2: processing fetch command
02:24:23.472 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.474 [info] UploadPackV2: collected 26 objects, generating pack
02:24:23.475 [info] UploadPackV2: pack generated, 1856 bytes
02:24:23.475 [info] UploadPackV2: fetch response 1878 bytes
02:24:23.480 [info] UploadPackV2: processing fetch command
02:24:23.480 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.480 [info] UploadPackV2: collected 9 objects, generating pack
02:24:23.480 [info] UploadPackV2: pack generated, 642 bytes
02:24:23.481 [info] UploadPackV2: fetch response 664 bytes
02:24:23.486 [info] UploadPackV2: processing fetch command
02:24:23.486 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.486 [info] UploadPackV2: collected 9 objects, generating pack
02:24:23.486 [info] UploadPackV2: pack generated, 642 bytes
02:24:23.488 [info] UploadPackV2: fetch response 664 bytes
02:24:23.492 [info] UploadPackV2: processing fetch command
02:24:23.492 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.494 [info] UploadPackV2: collected 15 objects, generating pack
02:24:23.495 [info] UploadPackV2: pack generated, 1068 bytes
02:24:23.495 [info] UploadPackV2: fetch response 1090 bytes
02:24:23.501 [info] UploadPackV2: processing fetch command
02:24:23.502 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.503 [info] UploadPackV2: collected 34 objects, generating pack
02:24:23.504 [info] UploadPackV2: pack generated, 2508 bytes
02:24:23.504 [info] UploadPackV2: fetch response 2530 bytes
02:24:23.511 [info] UploadPackV2: processing fetch command
02:24:23.512 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.512 [info] UploadPackV2: collected 6 objects, generating pack
02:24:23.513 [info] UploadPackV2: pack generated, 428 bytes
02:24:23.513 [info] UploadPackV2: fetch response 450 bytes
02:24:23.517 [info] UploadPackV2: processing fetch command
02:24:23.517 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.518 [info] UploadPackV2: collected 32 objects, generating pack
02:24:23.519 [info] UploadPackV2: pack generated, 2301 bytes
02:24:23.519 [info] UploadPackV2: fetch response 2323 bytes
02:24:23.527 [info] UploadPackV2: processing fetch command
02:24:23.527 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.529 [info] UploadPackV2: collected 14 objects, generating pack
02:24:23.529 [info] UploadPackV2: pack generated, 1023 bytes
02:24:23.530 [info] UploadPackV2: fetch response 1045 bytes
.
02:24:23.534 [info] UploadPackV2: processing fetch command
02:24:23.535 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.536 [info] UploadPackV2: collected 17 objects, generating pack
02:24:23.536 [info] UploadPackV2: pack generated, 1278 bytes
02:24:23.536 [info] UploadPackV2: fetch response 1300 bytes
02:24:23.543 [info] UploadPackV2: processing fetch command
02:24:23.543 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.545 [info] UploadPackV2: collected 31 objects, generating pack
02:24:23.546 [info] UploadPackV2: pack generated, 2298 bytes
02:24:23.546 [info] UploadPackV2: fetch response 2320 bytes
02:24:23.554 [info] UploadPackV2: processing fetch command
02:24:23.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.555 [info] UploadPackV2: collected 17 objects, generating pack
02:24:23.558 [info] UploadPackV2: pack generated, 1276 bytes
02:24:23.558 [info] UploadPackV2: fetch response 1298 bytes
02:24:23.564 [info] UploadPackV2: processing fetch command
02:24:23.564 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.565 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.565 [info] UploadPackV2: pack generated, 639 bytes
02:24:23.565 [info] UploadPackV2: fetch response 661 bytes
02:24:23.570 [info] UploadPackV2: processing fetch command
02:24:23.570 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:23.571 [info] UploadPackV2: collected 20 objects, generating pack
02:24:23.572 [info] UploadPackV2: pack generated, 1490 bytes
02:24:23.572 [info] UploadPackV2: fetch response 1512 bytes
.....
02:24:23.583 [info] UploadPackV2: processing fetch command
..
02:24:23.584 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
02:24:23.585 [info] UploadPackV2: collected 27 objects, generating pack
.
02:24:23.586 [info] UploadPackV2: pack generated, 1676 bytes
.
02:24:23.586 [info] UploadPackV2: fetch response 1698 bytes
.
02:24:23.590 [info] UploadPackV2: processing fetch command
.
02:24:23.590 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:24:23.592 [info] UploadPackV2: collected 23 objects, generating pack
.
02:24:23.592 [info] UploadPackV2: pack generated, 1437 bytes
.
02:24:23.592 [info] UploadPackV2: fetch response 1459 bytes
02:24:23.597 [info] UploadPackV2: processing fetch command
02:24:23.597 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.598 [info] UploadPackV2: collected 24 objects, generating pack
02:24:23.599 [info] UploadPackV2: pack generated, 1412 bytes
02:24:23.599 [info] UploadPackV2: fetch response 1434 bytes
02:24:23.606 [info] UploadPackV2: processing fetch command
02:24:23.606 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.607 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.607 [info] UploadPackV2: pack generated, 717 bytes
02:24:23.607 [info] UploadPackV2: fetch response 739 bytes
02:24:23.611 [info] UploadPackV2: processing fetch command
02:24:23.611 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.611 [info] UploadPackV2: collected 4 objects, generating pack
02:24:23.611 [info] UploadPackV2: pack generated, 241 bytes
02:24:23.612 [info] UploadPackV2: fetch response 263 bytes
02:24:23.615 [info] UploadPackV2: processing fetch command
02:24:23.615 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.617 [info] UploadPackV2: collected 16 objects, generating pack
02:24:23.617 [info] UploadPackV2: pack generated, 962 bytes
02:24:23.618 [info] UploadPackV2: fetch response 984 bytes
02:24:23.622 [info] UploadPackV2: processing fetch command
02:24:23.622 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.624 [info] UploadPackV2: collected 24 objects, generating pack
02:24:23.624 [info] UploadPackV2: pack generated, 1412 bytes
02:24:23.625 [info] UploadPackV2: fetch response 1434 bytes
02:24:23.629 [info] UploadPackV2: processing fetch command
02:24:23.629 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.630 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.630 [info] UploadPackV2: pack generated, 723 bytes
02:24:23.630 [info] UploadPackV2: fetch response 745 bytes
02:24:23.634 [info] UploadPackV2: processing fetch command
02:24:23.635 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.635 [info] UploadPackV2: collected 14 objects, generating pack
02:24:23.635 [info] UploadPackV2: pack generated, 899 bytes
02:24:23.635 [info] UploadPackV2: fetch response 921 bytes
02:24:23.637 [info] UploadPackV2: processing fetch command
02:24:23.637 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.637 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.638 [info] UploadPackV2: pack generated, 714 bytes
02:24:23.638 [info] UploadPackV2: fetch response 736 bytes
02:24:23.643 [info] UploadPackV2: processing fetch command
02:24:23.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.644 [info] UploadPackV2: collected 27 objects, generating pack
02:24:23.645 [info] UploadPackV2: pack generated, 1678 bytes
02:24:23.645 [info] UploadPackV2: fetch response 1700 bytes
.
02:24:23.652 [info] UploadPackV2: processing fetch command
02:24:23.652 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.653 [info] UploadPackV2: collected 23 objects, generating pack
02:24:23.654 [info] UploadPackV2: pack generated, 1435 bytes
02:24:23.654 [info] UploadPackV2: fetch response 1457 bytes
02:24:23.659 [info] UploadPackV2: processing fetch command
02:24:23.659 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.659 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.660 [info] UploadPackV2: pack generated, 482 bytes
02:24:23.660 [info] UploadPackV2: fetch response 504 bytes
02:24:23.661 [info] UploadPackV2: processing fetch command
02:24:23.661 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.661 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.662 [info] UploadPackV2: pack generated, 482 bytes
02:24:23.662 [info] UploadPackV2: fetch response 504 bytes
02:24:23.667 [info] UploadPackV2: processing fetch command
02:24:23.667 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.669 [info] UploadPackV2: collected 23 objects, generating pack
02:24:23.670 [info] UploadPackV2: pack generated, 1378 bytes
02:24:23.670 [info] UploadPackV2: fetch response 1400 bytes
02:24:23.673 [info] UploadPackV2: processing fetch command
02:24:23.673 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.682 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.682 [info] UploadPackV2: pack generated, 723 bytes
02:24:23.682 [info] UploadPackV2: fetch response 745 bytes
02:24:23.685 [info] UploadPackV2: processing fetch command
02:24:23.685 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.686 [info] UploadPackV2: collected 19 objects, generating pack
02:24:23.686 [info] UploadPackV2: pack generated, 1194 bytes
02:24:23.686 [info] UploadPackV2: fetch response 1216 bytes
02:24:23.688 [info] UploadPackV2: processing fetch command
02:24:23.689 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.689 [info] UploadPackV2: collected 4 objects, generating pack
02:24:23.689 [info] UploadPackV2: pack generated, 241 bytes
02:24:23.689 [info] UploadPackV2: fetch response 263 bytes
02:24:23.691 [info] UploadPackV2: processing fetch command
02:24:23.691 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.692 [info] UploadPackV2: collected 15 objects, generating pack
02:24:23.692 [info] UploadPackV2: pack generated, 958 bytes
02:24:23.693 [info] UploadPackV2: fetch response 980 bytes
02:24:23.699 [info] UploadPackV2: processing fetch command
02:24:23.699 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.700 [info] UploadPackV2: collected 43 objects, generating pack
02:24:23.702 [info] UploadPackV2: pack generated, 2586 bytes
02:24:23.702 [info] UploadPackV2: fetch response 2608 bytes
02:24:23.708 [info] UploadPackV2: processing fetch command
02:24:23.708 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.709 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.709 [info] UploadPackV2: pack generated, 717 bytes
02:24:23.709 [info] UploadPackV2: fetch response 739 bytes
02:24:23.711 [info] UploadPackV2: processing fetch command
02:24:23.711 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.711 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.712 [info] UploadPackV2: pack generated, 717 bytes
02:24:23.712 [info] UploadPackV2: fetch response 739 bytes
02:24:23.716 [info] UploadPackV2: processing fetch command
02:24:23.716 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.717 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.717 [info] UploadPackV2: pack generated, 723 bytes
02:24:23.717 [info] UploadPackV2: fetch response 745 bytes
02:24:23.720 [info] UploadPackV2: processing fetch command
02:24:23.720 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.721 [info] UploadPackV2: collected 20 objects, generating pack
02:24:23.722 [info] UploadPackV2: pack generated, 1172 bytes
02:24:23.722 [info] UploadPackV2: fetch response 1194 bytes
02:24:23.725 [info] UploadPackV2: processing fetch command
02:24:23.725 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.727 [info] UploadPackV2: collected 35 objects, generating pack
02:24:23.728 [info] UploadPackV2: pack generated, 2102 bytes
02:24:23.728 [info] UploadPackV2: fetch response 2124 bytes
02:24:23.733 [info] UploadPackV2: processing fetch command
02:24:23.733 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.733 [info] UploadPackV2: collected 15 objects, generating pack
02:24:23.733 [info] UploadPackV2: pack generated, 924 bytes
02:24:23.734 [info] UploadPackV2: fetch response 946 bytes
02:24:23.736 [info] UploadPackV2: processing fetch command
02:24:23.736 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.737 [info] UploadPackV2: collected 7 objects, generating pack
02:24:23.737 [info] UploadPackV2: pack generated, 475 bytes
02:24:23.737 [info] UploadPackV2: fetch response 497 bytes
02:24:23.737 [info] UploadPackV2: processing fetch command
02:24:23.737 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.740 [info] UploadPackV2: processing fetch command
02:24:23.740 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.741 [info] UploadPackV2: collected 35 objects, generating pack
02:24:23.742 [info] UploadPackV2: pack generated, 2096 bytes
02:24:23.742 [info] UploadPackV2: fetch response 2118 bytes
02:24:23.746 [info] UploadPackV2: processing fetch command
02:24:23.746 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.746 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.746 [info] UploadPackV2: pack generated, 723 bytes
................................................................................
02:24:23.746 [info] UploadPackV2: fetch response 745 bytes
02:24:26.011 [notice] Handler :default switched from :sync to :drop mode
02:24:23.747 [info] UploadPackV2: collected 163 objects, generating pack
02:24:23.749 [info] UploadPackV2: processing fetch command
.
02:24:23.750 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.750 [info] UploadPackV2: collected 12 objects, generating pack
.
02:24:23.750 [info] UploadPackV2: pack generated, 723 bytes
.
02:24:23.750 [info] UploadPackV2: fetch response 745 bytes
.
02:24:23.752 [info] UploadPackV2: pack generated, 15088 bytes
.
02:24:23.752 [info] UploadPackV2: fetch response 15110 bytes
.
02:24:23.753 [info] UploadPackV2: processing fetch command
.
02:24:23.753 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:24:23.754 [info] UploadPackV2: collected 20 objects, generating pack
.
02:24:23.754 [info] UploadPackV2: pack generated, 1203 bytes
.
02:24:23.754 [info] UploadPackV2: fetch response 1225 bytes
.
02:24:23.758 [info] UploadPackV2: processing fetch command
.
02:24:23.758 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.760 [info] UploadPackV2: collected 46 objects, generating pack
02:24:23.761 [info] UploadPackV2: pack generated, 2817 bytes
02:24:23.761 [info] UploadPackV2: fetch response 2839 bytes
02:24:23.766 [info] UploadPackV2: processing fetch command
02:24:23.766 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.766 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.766 [info] UploadPackV2: pack generated, 482 bytes
02:24:23.766 [info] UploadPackV2: fetch response 504 bytes
02:24:23.772 [info] UploadPackV2: processing fetch command
02:24:23.772 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.773 [info] UploadPackV2: collected 43 objects, generating pack
02:24:23.774 [info] UploadPackV2: pack generated, 2586 bytes
02:24:23.774 [info] UploadPackV2: fetch response 2608 bytes
02:24:23.780 [info] UploadPackV2: processing fetch command
02:24:23.780 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.781 [info] UploadPackV2: collected 19 objects, generating pack
02:24:23.781 [info] UploadPackV2: pack generated, 1146 bytes
02:24:23.781 [info] UploadPackV2: fetch response 1168 bytes
02:24:23.784 [info] UploadPackV2: processing fetch command
02:24:23.784 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.785 [info] UploadPackV2: collected 23 objects, generating pack
02:24:23.785 [info] UploadPackV2: pack generated, 1437 bytes
02:24:23.785 [info] UploadPackV2: fetch response 1459 bytes
02:24:23.790 [info] UploadPackV2: processing fetch command
02:24:23.791 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.793 [info] UploadPackV2: collected 42 objects, generating pack
02:24:23.793 [info] UploadPackV2: pack generated, 2580 bytes
02:24:23.793 [info] UploadPackV2: fetch response 2602 bytes
02:24:23.801 [info] UploadPackV2: processing fetch command
02:24:23.802 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.802 [info] UploadPackV2: collected 23 objects, generating pack
02:24:23.803 [info] UploadPackV2: pack generated, 1435 bytes
02:24:23.803 [info] UploadPackV2: fetch response 1457 bytes
02:24:23.809 [info] UploadPackV2: processing fetch command
02:24:23.809 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.809 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.810 [info] UploadPackV2: pack generated, 717 bytes
02:24:23.810 [info] UploadPackV2: fetch response 739 bytes
02:24:23.813 [info] UploadPackV2: processing fetch command
02:24:23.813 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.814 [info] UploadPackV2: collected 27 objects, generating pack
02:24:23.814 [info] UploadPackV2: pack generated, 1676 bytes
02:24:23.814 [info] UploadPackV2: fetch response 1698 bytes
02:24:23.818 [info] UploadPackV2: processing fetch command
02:24:23.818 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.819 [info] UploadPackV2: collected 24 objects, generating pack
02:24:23.819 [info] UploadPackV2: pack generated, 1443 bytes
02:24:26.077 [notice] Handler :default switched from :drop to :sync mode
02:24:23.820 [info] UploadPackV2: fetch response 1465 bytes
02:24:23.824 [info] UploadPackV2: processing fetch command
02:24:23.825 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.826 [info] UploadPackV2: collected 27 objects, generating pack
02:24:23.826 [info] UploadPackV2: pack generated, 1676 bytes
02:24:23.826 [info] UploadPackV2: fetch response 1698 bytes
02:24:23.830 [info] UploadPackV2: processing fetch command
02:24:23.830 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.831 [info] UploadPackV2: collected 38 objects, generating pack
02:24:23.832 [info] UploadPackV2: pack generated, 2340 bytes
02:24:23.832 [info] UploadPackV2: fetch response 2362 bytes
02:24:23.838 [info] UploadPackV2: processing fetch command
02:24:23.838 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.839 [info] UploadPackV2: collected 46 objects, generating pack
02:24:23.840 [info] UploadPackV2: pack generated, 2820 bytes
02:24:23.840 [info] UploadPackV2: fetch response 2842 bytes
02:24:23.846 [info] UploadPackV2: processing fetch command
02:24:23.846 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.846 [info] UploadPackV2: collected 7 objects, generating pack
02:24:23.847 [info] UploadPackV2: pack generated, 475 bytes
02:24:23.847 [info] UploadPackV2: fetch response 497 bytes
02:24:23.849 [info] UploadPackV2: processing fetch command
02:24:23.849 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.850 [info] UploadPackV2: collected 24 objects, generating pack
02:24:23.851 [info] UploadPackV2: pack generated, 1443 bytes
02:24:23.851 [info] UploadPackV2: fetch response 1465 bytes
02:24:23.854 [info] UploadPackV2: processing fetch command
02:24:23.854 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.854 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.854 [info] UploadPackV2: pack generated, 714 bytes
02:24:23.854 [info] UploadPackV2: fetch response 736 bytes
02:24:23.856 [info] UploadPackV2: processing fetch command
02:24:23.856 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.856 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.856 [info] UploadPackV2: pack generated, 482 bytes
02:24:23.856 [info] UploadPackV2: fetch response 504 bytes
02:24:23.861 [info] UploadPackV2: processing fetch command
02:24:23.862 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.864 [info] UploadPackV2: collected 62 objects, generating pack
02:24:23.865 [info] UploadPackV2: pack generated, 3779 bytes
02:24:23.865 [info] UploadPackV2: fetch response 3801 bytes
02:24:23.874 [info] UploadPackV2: processing fetch command
02:24:23.874 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.875 [info] UploadPackV2: collected 27 objects, generating pack
02:24:23.876 [info] UploadPackV2: pack generated, 1678 bytes
02:24:23.876 [info] UploadPackV2: fetch response 1700 bytes
02:24:23.880 [info] UploadPackV2: processing fetch command
02:24:23.881 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.881 [info] UploadPackV2: collected 31 objects, generating pack
02:24:23.882 [info] UploadPackV2: pack generated, 1865 bytes
02:24:23.882 [info] UploadPackV2: fetch response 1887 bytes
02:24:23.888 [info] UploadPackV2: processing fetch command
02:24:23.888 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.889 [info] UploadPackV2: collected 24 objects, generating pack
02:24:23.890 [info] UploadPackV2: pack generated, 1411 bytes
02:24:23.890 [info] UploadPackV2: fetch response 1433 bytes
02:24:23.895 [info] UploadPackV2: processing fetch command
02:24:23.895 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.896 [info] UploadPackV2: collected 43 objects, generating pack
02:24:23.897 [info] UploadPackV2: pack generated, 2605 bytes
02:24:23.897 [info] UploadPackV2: fetch response 2627 bytes
02:24:23.904 [info] UploadPackV2: processing fetch command
02:24:23.904 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.906 [info] UploadPackV2: collected 31 objects, generating pack
02:24:23.906 [info] UploadPackV2: pack generated, 1866 bytes
02:24:23.906 [info] UploadPackV2: fetch response 1888 bytes
02:24:23.911 [info] UploadPackV2: processing fetch command
02:24:23.911 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.915 [info] UploadPackV2: collected 35 objects, generating pack
02:24:23.916 [info] UploadPackV2: pack generated, 2106 bytes
02:24:23.916 [info] UploadPackV2: fetch response 2128 bytes
02:24:23.921 [info] UploadPackV2: processing fetch command
02:24:23.921 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.922 [info] UploadPackV2: collected 34 objects, generating pack
02:24:23.923 [info] UploadPackV2: pack generated, 2099 bytes
02:24:23.923 [info] UploadPackV2: fetch response 2121 bytes
02:24:23.929 [info] UploadPackV2: processing fetch command
02:24:23.929 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.930 [info] UploadPackV2: collected 31 objects, generating pack
02:24:23.930 [info] UploadPackV2: pack generated, 1887 bytes
02:24:23.930 [info] UploadPackV2: fetch response 1909 bytes
02:24:23.937 [info] UploadPackV2: processing fetch command
02:24:23.937 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.939 [info] UploadPackV2: collected 55 objects, generating pack
02:24:23.940 [info] UploadPackV2: pack generated, 3295 bytes
02:24:23.940 [info] UploadPackV2: fetch response 3317 bytes
02:24:23.947 [info] UploadPackV2: processing fetch command
02:24:23.947 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.947 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.947 [info] UploadPackV2: pack generated, 723 bytes
02:24:23.947 [info] UploadPackV2: fetch response 745 bytes
02:24:23.950 [info] UploadPackV2: processing fetch command
02:24:23.951 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.952 [info] UploadPackV2: collected 43 objects, generating pack
02:24:23.952 [info] UploadPackV2: pack generated, 2576 bytes
02:24:23.953 [info] UploadPackV2: fetch response 2598 bytes
02:24:23.957 [info] UploadPackV2: processing fetch command
02:24:23.957 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.958 [info] UploadPackV2: collected 27 objects, generating pack
02:24:23.958 [info] UploadPackV2: pack generated, 1678 bytes
02:24:23.958 [info] UploadPackV2: fetch response 1700 bytes
02:24:23.963 [info] UploadPackV2: processing fetch command
02:24:23.963 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.964 [info] UploadPackV2: collected 47 objects, generating pack
02:24:23.965 [info] UploadPackV2: pack generated, 2828 bytes
02:24:23.965 [info] UploadPackV2: fetch response 2850 bytes
02:24:23.970 [info] UploadPackV2: processing fetch command
02:24:23.970 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.970 [info] UploadPackV2: collected 19 objects, generating pack
02:24:23.971 [info] UploadPackV2: pack generated, 1194 bytes
02:24:23.971 [info] UploadPackV2: fetch response 1216 bytes
02:24:23.973 [info] UploadPackV2: processing fetch command
02:24:23.973 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.973 [info] UploadPackV2: collected 11 objects, generating pack
02:24:23.973 [info] UploadPackV2: pack generated, 714 bytes
02:24:23.973 [info] UploadPackV2: fetch response 736 bytes
02:24:23.976 [info] UploadPackV2: processing fetch command
02:24:23.976 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.978 [info] UploadPackV2: collected 44 objects, generating pack
02:24:23.978 [info] UploadPackV2: pack generated, 2614 bytes
02:24:23.978 [info] UploadPackV2: fetch response 2636 bytes
02:24:23.983 [info] UploadPackV2: processing fetch command
02:24:23.983 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.983 [info] UploadPackV2: collected 12 objects, generating pack
02:24:23.983 [info] UploadPackV2: pack generated, 723 bytes
02:24:23.984 [info] UploadPackV2: fetch response 745 bytes
02:24:23.986 [info] UploadPackV2: processing fetch command
02:24:23.986 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.987 [info] UploadPackV2: collected 39 objects, generating pack
02:24:23.988 [info] UploadPackV2: pack generated, 2335 bytes
02:24:23.988 [info] UploadPackV2: fetch response 2357 bytes
02:24:23.992 [info] UploadPackV2: processing fetch command
02:24:23.992 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.992 [info] UploadPackV2: collected 8 objects, generating pack
02:24:23.992 [info] UploadPackV2: pack generated, 482 bytes
02:24:23.992 [info] UploadPackV2: fetch response 504 bytes
02:24:23.994 [info] UploadPackV2: processing fetch command
02:24:23.994 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.995 [info] UploadPackV2: collected 24 objects, generating pack
02:24:23.995 [info] UploadPackV2: pack generated, 1443 bytes
02:24:23.995 [info] UploadPackV2: fetch response 1465 bytes
02:24:23.998 [info] UploadPackV2: processing fetch command
02:24:23.998 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:23.999 [info] UploadPackV2: collected 15 objects, generating pack
02:24:23.999 [info] UploadPackV2: pack generated, 956 bytes
02:24:23.999 [info] UploadPackV2: fetch response 978 bytes
02:24:24.002 [info] UploadPackV2: processing fetch command
02:24:24.002 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.004 [info] UploadPackV2: collected 23 objects, generating pack
02:24:24.004 [info] UploadPackV2: pack generated, 1437 bytes
02:24:24.005 [info] UploadPackV2: fetch response 1459 bytes
02:24:24.009 [info] UploadPackV2: processing fetch command
02:24:24.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.010 [info] UploadPackV2: collected 12 objects, generating pack
02:24:24.010 [info] UploadPackV2: pack generated, 723 bytes
02:24:24.010 [info] UploadPackV2: fetch response 745 bytes
02:24:24.013 [info] UploadPackV2: processing fetch command
02:24:24.014 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.015 [info] UploadPackV2: collected 27 objects, generating pack
02:24:24.016 [info] UploadPackV2: pack generated, 1676 bytes
02:24:24.016 [info] UploadPackV2: fetch response 1698 bytes
02:24:24.020 [info] UploadPackV2: processing fetch command
02:24:24.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.021 [info] UploadPackV2: collected 27 objects, generating pack
02:24:24.021 [info] UploadPackV2: pack generated, 1676 bytes
02:24:24.021 [info] UploadPackV2: fetch response 1698 bytes
02:24:24.025 [info] UploadPackV2: processing fetch command
02:24:24.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.025 [info] UploadPackV2: collected 8 objects, generating pack
02:24:24.026 [info] UploadPackV2: pack generated, 482 bytes
02:24:24.026 [info] UploadPackV2: fetch response 504 bytes
02:24:24.028 [info] UploadPackV2: processing fetch command
02:24:24.028 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.029 [info] UploadPackV2: collected 27 objects, generating pack
02:24:24.030 [info] UploadPackV2: pack generated, 1643 bytes
02:24:24.030 [info] UploadPackV2: fetch response 1665 bytes
02:24:24.033 [info] UploadPackV2: processing fetch command
02:24:24.033 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.034 [info] UploadPackV2: collected 19 objects, generating pack
02:24:24.034 [info] UploadPackV2: pack generated, 1194 bytes
02:24:24.034 [info] UploadPackV2: fetch response 1216 bytes
02:24:24.037 [info] UploadPackV2: processing fetch command
02:24:24.038 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.038 [info] UploadPackV2: collected 7 objects, generating pack
02:24:24.038 [info] UploadPackV2: pack generated, 475 bytes
02:24:24.038 [info] UploadPackV2: fetch response 497 bytes
02:24:24.041 [info] UploadPackV2: processing fetch command
02:24:24.041 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.043 [info] UploadPackV2: collected 20 objects, generating pack
02:24:24.044 [info] UploadPackV2: pack generated, 1203 bytes
02:24:24.044 [info] UploadPackV2: fetch response 1225 bytes
02:24:24.049 [info] UploadPackV2: processing fetch command
02:24:24.049 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:24.051 [info] UploadPackV2: collected 59 objects, generating pack
02:24:24.052 [info] UploadPackV2: pack generated, 3537 bytes
02:24:24.052 [info] UploadPackV2: fetch response 3559 bytes
02:24:25.095 [info] UploadPackV2: processing fetch command
02:24:25.095 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:25.104 [info] UploadPackV2: reused pack 12015 bytes, 160 objects
02:24:25.104 [info] UploadPackV2: fetch response 12037 bytes
.............................
02:24:29.830 [info] UploadPackV2: processing ls-refs command
02:24:29.833 [info] UploadPackV2: processing fetch command
02:24:29.833 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:29.833 [info] UploadPackV2: collected 15 objects, generating pack
02:24:29.834 [info] UploadPackV2: pack generated, 919 bytes
02:24:29.834 [info] UploadPackV2: fetch response 941 bytes
.
02:24:29.871 [info] UploadPackV2: processing ls-refs command
02:24:29.873 [info] UploadPackV2: processing fetch command
02:24:29.873 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:29.874 [info] UploadPackV2: collected 6 objects, generating pack
02:24:29.874 [info] UploadPackV2: pack generated, 366 bytes
02:24:29.874 [info] UploadPackV2: fetch response 388 bytes
02:24:29.904 [info] UploadPackV2: processing ls-refs command
.
02:24:29.929 [info] UploadPackV2: processing ls-refs command
02:24:29.932 [info] UploadPackV2: processing fetch command
02:24:29.932 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:29.932 [info] UploadPackV2: collected 9 objects, generating pack
02:24:29.933 [info] UploadPackV2: pack generated, 549 bytes
02:24:29.933 [info] UploadPackV2: fetch response 571 bytes
02:24:29.962 [info] UploadPackV2: processing ls-refs command
..
02:24:30.024 [info] UploadPackV2: processing ls-refs command
02:24:30.026 [info] UploadPackV2: processing fetch command
02:24:30.026 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:30.027 [info] UploadPackV2: collected 3 objects, generating pack
02:24:30.027 [info] UploadPackV2: pack generated, 183 bytes
02:24:30.027 [info] UploadPackV2: fetch response 205 bytes
.
02:24:30.120 [info] UploadPackV2: processing fetch command
02:24:30.120 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:30.120 [info] UploadPackV2: collected 3 objects, generating pack
02:24:30.121 [info] UploadPackV2: pack generated, 183 bytes
02:24:30.121 [info] UploadPackV2: fetch response 205 bytes
.
02:24:30.161 [info] UploadPackV2: processing ls-refs command
02:24:30.164 [info] UploadPackV2: processing fetch command
02:24:30.164 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:30.168 [info] UploadPackV2: collected 180 objects, generating pack
02:24:30.173 [info] UploadPackV2: pack generated, 11106 bytes
02:24:30.173 [info] UploadPackV2: fetch response 11128 bytes
.............................
02:24:30.221 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303411740" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:24:30.221 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303411708" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:24:30.222 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303411676" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:24:30.222 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303406431" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:24:30.222 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303406399" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:24:30.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303406367" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:24:30.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303411644" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:24:30.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303406335" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.*****.
02:24:45.342 [info] UploadPackV2: processing ls-refs command
02:24:45.344 [info] UploadPackV2: processing fetch command
02:24:45.344 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:45.344 [info] UploadPackV2: collected 3 objects, generating pack
02:24:45.345 [info] UploadPackV2: pack generated, 185 bytes
02:24:45.345 [info] UploadPackV2: fetch response 207 bytes
.
02:24:45.414 [info] UploadPackV2: processing ls-refs command
02:24:45.416 [info] UploadPackV2: processing fetch command
02:24:45.416 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:24:45.417 [info] UploadPackV2: collected 3 objects, generating pack
02:24:45.417 [info] UploadPackV2: pack generated, 196 bytes
02:24:45.417 [info] UploadPackV2: fetch response 218 bytes
.
02:24:45.433 [info] The function passed as a handler with ID "telemetry-test-11877" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:24:45.434 [info] UploadPackV2: processing fetch command
02:24:45.434 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:24:45.435 [info] UploadPackV2: collected 3 objects, generating pack
02:24:45.435 [info] UploadPackV2: pack generated, 183 bytes
02:24:45.435 [info] UploadPackV2: fetch response 205 bytes
.
02:24:45.435 [info] The function passed as a handler with ID "telemetry-test-17186" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:24:45.436 [info] UploadPackV2: processing fetch command
.
02:24:45.436 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:24:45.436 [info] UploadPackV2: collected 2 objects, generating pack
02:24:45.436 [info] UploadPackV2: pack generated, 169 bytes
02:24:45.437 [info] UploadPackV2: fetch response 191 bytes
02:24:45.442 [info] The function passed as a handler with ID "telemetry-test-17218" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:25:00.509 [info] The function passed as a handler with ID "telemetry-test-11909" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:25:00.510 [info] UploadPackV2: processing fetch command
02:25:00.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:25:00.511 [info] UploadPackV2: collected 3 objects, generating pack
02:25:00.511 [info] UploadPackV2: pack generated, 186 bytes
02:25:00.511 [info] UploadPackV2: fetch response 208 bytes
..
02:25:15.638 [info] UploadPackV2: processing ls-refs command
02:25:15.640 [info] UploadPackV2: processing fetch command
02:25:15.640 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:25:15.640 [info] UploadPackV2: collected 3 objects, generating pack
02:25:15.641 [info] UploadPackV2: pack generated, 183 bytes
02:25:15.641 [info] UploadPackV2: fetch response 205 bytes
...
02:26:00.962 [info] UploadPackV2: processing ls-refs command
02:26:00.964 [info] UploadPackV2: processing fetch command
02:26:00.965 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:26:00.965 [info] UploadPackV2: collected 6 objects, generating pack
02:26:00.966 [info] UploadPackV2: pack generated, 365 bytes
02:26:00.966 [info] UploadPackV2: fetch response 387 bytes
.
02:26:16.106 [info] UploadPackV2: processing ls-refs command
02:26:16.108 [info] UploadPackV2: processing fetch command
02:26:16.108 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:26:16.109 [info] UploadPackV2: collected 3 objects, generating pack
02:26:16.109 [info] UploadPackV2: pack generated, 183 bytes
02:26:16.109 [info] UploadPackV2: fetch response 205 bytes
...
02:26:46.386 [info] UploadPackV2: processing ls-refs command
02:26:46.388 [info] UploadPackV2: processing fetch command
02:26:46.388 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:26:46.389 [info] UploadPackV2: collected 3 objects, generating pack
02:26:46.389 [info] UploadPackV2: pack generated, 201 bytes
02:26:46.389 [info] UploadPackV2: fetch response 223 bytes
.
02:27:01.522 [info] UploadPackV2: processing ls-refs command
02:27:01.524 [info] UploadPackV2: processing fetch command
02:27:01.524 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:01.525 [info] UploadPackV2: collected 6 objects, generating pack
02:27:01.525 [info] UploadPackV2: pack generated, 365 bytes
02:27:01.525 [info] UploadPackV2: fetch response 387 bytes
..
02:27:16.634 [info] The function passed as a handler with ID "graph-query-test-17282" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..
02:27:16.637 [info] The function passed as a handler with ID "rev-list-range-test-17378" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
...
02:27:16.644 [info] The function passed as a handler with ID "graph-query-test-11684" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
........
02:27:16.658 [info] The function passed as a handler with ID "rev-list-range-test-26563" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:27:16.662 [info] The function passed as a handler with ID "graph-query-test-11780" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:27:16.665 [info] The function passed as a handler with ID "rev-list-range-test-26627" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:27:16.770 [info] UploadPackV2: processing ls-refs command
02:27:16.772 [info] UploadPackV2: processing fetch command
02:27:16.772 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:16.794 [info] UploadPackV2: collected 600 objects, generating pack
02:27:16.812 [info] UploadPackV2: pack generated, 45197 bytes
02:27:16.812 [info] UploadPackV2: fetch response 45219 bytes
.
02:27:16.950 [info] UploadPackV2: processing ls-refs command
02:27:16.952 [info] UploadPackV2: processing fetch command
02:27:16.952 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:16.952 [info] UploadPackV2: collected 3 objects, generating pack
02:27:16.952 [info] UploadPackV2: pack generated, 231 bytes
02:27:16.952 [info] UploadPackV2: fetch response 327 bytes
.
02:27:17.018 [info] UploadPackV2: processing ls-refs command
.
02:27:17.070 [info] UploadPackV2: processing ls-refs command
.
02:27:17.130 [info] UploadPackV2: processing ls-refs command
02:27:17.132 [info] UploadPackV2: processing fetch command
02:27:17.132 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.138 [info] UploadPackV2: collected 240 objects, generating pack
02:27:17.142 [info] UploadPackV2: pack generated, 16258 bytes
02:27:17.142 [info] UploadPackV2: fetch response 16280 bytes
.
02:27:17.165 [info] UploadPackV2: processing fetch command
02:27:17.165 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.165 [info] UploadPackV2: collected 0 objects, generating pack
02:27:17.165 [info] UploadPackV2: pack generated, 32 bytes
02:27:17.166 [info] UploadPackV2: fetch response 54 bytes
.
02:27:17.367 [info] UploadPackV2: processing fetch command
02:27:17.367 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.367 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.367 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.367 [info] UploadPackV2: fetch response 205 bytes
02:27:17.367 [info] UploadPackV2: processing fetch command
02:27:17.367 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.367 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.368 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.368 [info] UploadPackV2: fetch response 205 bytes
02:27:17.368 [info] UploadPackV2: processing fetch command
02:27:17.368 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.368 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.368 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.368 [info] UploadPackV2: fetch response 205 bytes
02:27:17.368 [info] UploadPackV2: processing fetch command
02:27:17.368 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.368 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.368 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.368 [info] UploadPackV2: fetch response 205 bytes
02:27:17.368 [info] UploadPackV2: processing fetch command
02:27:17.368 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.369 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.369 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.369 [info] UploadPackV2: fetch response 205 bytes
02:27:17.369 [info] UploadPackV2: processing fetch command
02:27:17.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.369 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.369 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.369 [info] UploadPackV2: fetch response 205 bytes
02:27:17.369 [info] UploadPackV2: processing fetch command
02:27:17.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.369 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.369 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.369 [info] UploadPackV2: fetch response 205 bytes
02:27:17.369 [info] UploadPackV2: processing fetch command
02:27:17.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.370 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.370 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.370 [info] UploadPackV2: fetch response 205 bytes
02:27:17.370 [info] UploadPackV2: processing fetch command
02:27:17.370 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.370 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.370 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.370 [info] UploadPackV2: fetch response 205 bytes
02:27:17.371 [info] UploadPackV2: processing fetch command
02:27:17.371 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.371 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.371 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.372 [info] UploadPackV2: fetch response 205 bytes
02:27:17.372 [info] UploadPackV2: processing fetch command
02:27:17.372 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.372 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.372 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.372 [info] UploadPackV2: fetch response 205 bytes
02:27:17.373 [info] UploadPackV2: processing fetch command
02:27:17.373 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.373 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.373 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.373 [info] UploadPackV2: fetch response 205 bytes
02:27:17.373 [info] UploadPackV2: processing fetch command
02:27:17.373 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.373 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.374 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.374 [info] UploadPackV2: fetch response 205 bytes
02:27:17.374 [info] UploadPackV2: processing fetch command
02:27:17.374 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.374 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.374 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.374 [info] UploadPackV2: fetch response 205 bytes
02:27:17.374 [info] UploadPackV2: processing fetch command
02:27:17.374 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.375 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.375 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.375 [info] UploadPackV2: fetch response 205 bytes
02:27:17.375 [info] UploadPackV2: processing fetch command
02:27:17.375 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.375 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.375 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.375 [info] UploadPackV2: fetch response 205 bytes
02:27:17.375 [info] UploadPackV2: processing fetch command
02:27:17.375 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.376 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.376 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.376 [info] UploadPackV2: fetch response 205 bytes
02:27:17.376 [info] UploadPackV2: processing fetch command
02:27:17.376 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.376 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.376 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.376 [info] UploadPackV2: fetch response 205 bytes
02:27:17.376 [info] UploadPackV2: processing fetch command
02:27:17.376 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.376 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.377 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.377 [info] UploadPackV2: fetch response 205 bytes
02:27:17.377 [info] UploadPackV2: processing fetch command
02:27:17.377 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.377 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.377 [info] UploadPackV2: pack generated, 183 bytes
02:27:17.377 [info] UploadPackV2: fetch response 205 bytes
02:27:17.377 [info] UploadPackV2: processing fetch command
02:27:17.377 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:17.378 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.378 [info] UploadPackV2: pack generated, 183 bytes
.
02:27:17.378 [info] UploadPackV2: fetch response 205 bytes
02:27:17.430 [info] UploadPackV2: processing ls-refs command
02:27:17.433 [info] UploadPackV2: processing fetch command
02:27:17.433 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:27:17.434 [info] UploadPackV2: collected 6 objects, generating pack
02:27:17.434 [info] UploadPackV2: pack generated, 513 bytes
02:27:17.434 [info] UploadPackV2: fetch response 535 bytes
.
02:27:17.494 [info] UploadPackV2: processing ls-refs command
..
02:27:17.546 [info] UploadPackV2: processing ls-refs command
02:27:17.549 [info] UploadPackV2: processing fetch command
02:27:17.549 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
02:27:17.550 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.550 [info] UploadPackV2: pack generated, 381 bytes
02:27:17.550 [info] UploadPackV2: fetch response 403 bytes
..
02:27:17.618 [info] UploadPackV2: processing ls-refs command
02:27:17.620 [info] UploadPackV2: processing fetch command
02:27:17.620 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:17.620 [info] UploadPackV2: collected 9 objects, generating pack
02:27:17.621 [info] UploadPackV2: pack generated, 585 bytes
02:27:17.621 [info] UploadPackV2: fetch response 681 bytes
.
02:27:17.690 [info] UploadPackV2: processing ls-refs command
02:27:17.693 [info] UploadPackV2: processing fetch command
02:27:17.693 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:combine, [:blob_none, {:tree_depth, 1}]}, send_packfile=true
02:27:17.694 [info] UploadPackV2: collected 6 objects, generating pack
02:27:17.694 [info] UploadPackV2: pack generated, 513 bytes
02:27:17.694 [info] UploadPackV2: fetch response 535 bytes
.
02:27:17.758 [info] UploadPackV2: processing ls-refs command
.
02:27:17.810 [info] UploadPackV2: processing ls-refs command
.
02:27:17.862 [info] UploadPackV2: processing ls-refs command
02:27:17.864 [info] UploadPackV2: processing fetch command
02:27:17.864 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:17.864 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.864 [info] UploadPackV2: pack generated, 216 bytes
02:27:17.864 [info] UploadPackV2: fetch response 312 bytes
.
02:27:17.926 [info] UploadPackV2: processing ls-refs command
.
02:27:17.978 [info] UploadPackV2: processing ls-refs command
02:27:17.981 [info] UploadPackV2: processing fetch command
02:27:17.981 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
02:27:17.982 [info] UploadPackV2: collected 3 objects, generating pack
02:27:17.982 [info] UploadPackV2: pack generated, 381 bytes
02:27:17.982 [info] UploadPackV2: fetch response 403 bytes
.
02:27:18.054 [info] UploadPackV2: processing ls-refs command
02:27:18.056 [info] UploadPackV2: processing fetch command
02:27:18.056 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:18.056 [info] UploadPackV2: collected 3 objects, generating pack
02:27:18.056 [info] UploadPackV2: pack generated, 216 bytes
02:27:18.056 [info] UploadPackV2: fetch response 312 bytes
02:27:18.114 [info] UploadPackV2: processing ls-refs command
02:27:18.115 [info] UploadPackV2: processing fetch command
02:27:18.115 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:18.116 [info] UploadPackV2: collected 12 objects, generating pack
02:27:18.116 [info] UploadPackV2: pack generated, 768 bytes
02:27:18.116 [info] UploadPackV2: fetch response 1002 bytes
.
02:27:18.174 [info] UploadPackV2: processing ls-refs command
02:27:18.176 [info] UploadPackV2: processing fetch command
02:27:18.176 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:18.176 [info] UploadPackV2: collected 9 objects, generating pack
02:27:18.177 [info] UploadPackV2: pack generated, 549 bytes
02:27:18.177 [info] UploadPackV2: fetch response 571 bytes
02:27:18.194 [info] UploadPackV2: processing fetch command
02:27:18.194 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
02:27:18.194 [info] UploadPackV2: fetch response 171 bytes
.
02:27:18.246 [info] UploadPackV2: processing ls-refs command
02:27:18.248 [info] UploadPackV2: processing fetch command
02:27:18.248 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:18.248 [info] UploadPackV2: collected 3 objects, generating pack
02:27:18.248 [info] UploadPackV2: pack generated, 218 bytes
02:27:18.248 [info] UploadPackV2: fetch response 314 bytes
.
02:27:18.318 [info] UploadPackV2: processing ls-refs command
02:27:18.321 [info] UploadPackV2: processing fetch command
02:27:18.321 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
02:27:18.322 [info] UploadPackV2: collected 5 objects, generating pack
02:27:18.322 [info] UploadPackV2: pack generated, 319 bytes
02:27:18.322 [info] UploadPackV2: fetch response 341 bytes
........
02:27:18.530 [info] UploadPackV2: processing ls-refs command
02:27:18.532 [info] UploadPackV2: processing fetch command
02:27:18.532 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:18.532 [info] UploadPackV2: collected 6 objects, generating pack
02:27:18.532 [info] UploadPackV2: pack generated, 365 bytes
02:27:18.532 [info] UploadPackV2: fetch response 387 bytes
.
02:27:33.606 [info] UploadPackV2: processing ls-refs command
02:27:33.607 [info] UploadPackV2: processing fetch command
02:27:33.607 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:33.608 [info] UploadPackV2: collected 3 objects, generating pack
02:27:33.608 [info] UploadPackV2: pack generated, 216 bytes
02:27:33.608 [info] UploadPackV2: fetch response 346 bytes
.
02:27:33.674 [info] UploadPackV2: processing ls-refs command
02:27:33.675 [info] UploadPackV2: processing ls-refs command
02:27:33.677 [info] UploadPackV2: processing fetch command
02:27:33.677 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:33.677 [info] UploadPackV2: processing fetch command
02:27:33.677 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:33.678 [info] UploadPackV2: collected 6 objects, generating pack
02:27:33.678 [info] UploadPackV2: collected 6 objects, generating pack
02:27:33.678 [info] UploadPackV2: pack generated, 365 bytes
02:27:33.678 [info] UploadPackV2: fetch response 387 bytes
02:27:33.678 [info] UploadPackV2: pack generated, 365 bytes
02:27:33.678 [info] UploadPackV2: fetch response 387 bytes
.
02:27:33.762 [info] UploadPackV2: processing ls-refs command
02:27:33.764 [info] UploadPackV2: processing fetch command
02:27:33.764 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:33.765 [info] UploadPackV2: collected 9 objects, generating pack
02:27:33.765 [info] UploadPackV2: pack generated, 547 bytes
02:27:33.765 [info] UploadPackV2: fetch response 569 bytes
02:27:33.838 [info] UploadPackV2: processing ls-refs command
.
02:27:33.914 [info] UploadPackV2: processing ls-refs command
02:27:33.916 [info] UploadPackV2: processing fetch command
02:27:33.916 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:33.920 [info] UploadPackV2: collected 90 objects, generating pack
02:27:33.922 [info] UploadPackV2: pack generated, 5649 bytes
02:27:33.922 [info] UploadPackV2: fetch response 5671 bytes
02:27:34.226 [info] UploadPackV2: processing ls-refs command
.
02:27:34.286 [info] UploadPackV2: processing ls-refs command
02:27:34.288 [info] UploadPackV2: processing fetch command
02:27:34.288 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:34.288 [info] UploadPackV2: collected 6 objects, generating pack
02:27:34.288 [info] UploadPackV2: pack generated, 365 bytes
02:27:34.288 [info] UploadPackV2: fetch response 387 bytes
02:27:34.310 [info] UploadPackV2: processing fetch command
02:27:34.310 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
02:27:34.310 [info] UploadPackV2: fetch response 122 bytes
.
02:27:34.362 [info] UploadPackV2: processing ls-refs command
02:27:34.364 [info] UploadPackV2: processing fetch command
02:27:34.364 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:34.364 [info] UploadPackV2: collected 6 objects, generating pack
02:27:34.364 [info] UploadPackV2: pack generated, 366 bytes
02:27:34.364 [info] UploadPackV2: fetch response 388 bytes
02:27:34.422 [info] UploadPackV2: processing ls-refs command
02:27:34.423 [info] UploadPackV2: processing fetch command
02:27:34.423 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:27:34.423 [info] UploadPackV2: fetch response 32 bytes
02:27:34.423 [info] UploadPackV2: processing fetch command
02:27:34.423 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:34.424 [info] UploadPackV2: collected 3 objects, generating pack
02:27:34.424 [info] UploadPackV2: pack generated, 183 bytes
02:27:34.424 [info] UploadPackV2: fetch response 205 bytes
.
02:27:34.431 [info] UploadPackV2: processing fetch command
02:27:34.431 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:34.431 [info] UploadPackV2: collected 3 objects, generating pack
02:27:34.431 [info] UploadPackV2: pack generated, 183 bytes
02:27:34.431 [info] UploadPackV2: fetch response 205 bytes
.
02:27:34.534 [info] UploadPackV2: processing ls-refs command
02:27:34.536 [info] UploadPackV2: processing fetch command
02:27:34.536 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:34.536 [info] UploadPackV2: collected 6 objects, generating pack
02:27:34.536 [info] UploadPackV2: pack generated, 365 bytes
02:27:34.536 [info] UploadPackV2: fetch response 387 bytes
02:27:49.002 [info] UploadPackV2: processing ls-refs command
.
02:27:49.066 [info] UploadPackV2: processing ls-refs command
02:27:49.068 [info] UploadPackV2: processing fetch command
02:27:49.068 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:49.069 [info] UploadPackV2: collected 15 objects, generating pack
02:27:49.070 [info] UploadPackV2: pack generated, 952 bytes
02:27:49.070 [info] UploadPackV2: fetch response 974 bytes
.
02:27:49.566 [info] UploadPackV2: processing ls-refs command
02:27:49.567 [info] UploadPackV2: processing fetch command
02:27:49.567 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:27:49.568 [info] UploadPackV2: collected 3 objects, generating pack
02:27:49.568 [info] UploadPackV2: pack generated, 200 bytes
02:27:49.568 [info] UploadPackV2: fetch response 256 bytes
.
02:27:49.630 [info] UploadPackV2: processing ls-refs command
02:27:49.632 [info] UploadPackV2: processing fetch command
02:27:49.632 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:49.632 [info] UploadPackV2: collected 3 objects, generating pack
02:27:49.633 [info] UploadPackV2: pack generated, 185 bytes
02:27:49.633 [info] UploadPackV2: fetch response 207 bytes
02:27:49.922 [info] UploadPackV2: processing ls-refs command
.
02:27:50.042 [info] UploadPackV2: processing ls-refs command
02:27:50.044 [info] UploadPackV2: processing fetch command
02:27:50.044 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:27:50.045 [info] UploadPackV2: collected 3 objects, generating pack
02:27:50.045 [info] UploadPackV2: pack generated, 196 bytes
02:27:50.045 [info] UploadPackV2: fetch response 218 bytes
.***********.
Finished in 214.7 seconds (13.0s async, 201.7s sync)
Result: 1055 passed (2 properties, 1053 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)