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/arm64
Started: Jun 19, 2026 at 04:37 UTC Completed: Jun 19, 2026 at 04:41 UTC Duration: 3m 39s
Exit code: 0

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 2 files (.ex)
Cover compiling modules ...
Running ExUnit with seed: 631867, max_cases: 8
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
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:63: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
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
Excluding tags: [:s3]
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
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:151: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
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
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: 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
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
..........................................................................................................................................................................................
04:37:34.973 [info] UploadPackV2: processing fetch command
04:37:34.973 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:34.979 [info] UploadPackV2: collected 15 objects, generating pack
04:37:34.979 [info] UploadPackV2: pack generated, 1068 bytes
04:37:34.980 [info] UploadPackV2: fetch response 1090 bytes
04:37:35.053 [info] UploadPackV2: processing fetch command
04:37:35.053 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.062 [info] UploadPackV2: collected 12 objects, generating pack
04:37:35.062 [info] UploadPackV2: pack generated, 854 bytes
04:37:35.063 [info] UploadPackV2: fetch response 876 bytes
04:37:35.100 [info] UploadPackV2: processing fetch command
04:37:35.100 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.108 [info] UploadPackV2: collected 9 objects, generating pack
04:37:35.109 [info] UploadPackV2: pack generated, 642 bytes
04:37:35.109 [info] UploadPackV2: fetch response 664 bytes
04:37:35.152 [info] UploadPackV2: processing fetch command
04:37:35.152 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.164 [info] UploadPackV2: collected 12 objects, generating pack
04:37:35.164 [info] UploadPackV2: pack generated, 854 bytes
04:37:35.165 [info] UploadPackV2: fetch response 876 bytes
.....
04:37:35.275 [info] UploadPackV2: processing fetch command
04:37:35.276 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.316 [info] UploadPackV2: collected 45 objects, generating pack
04:37:35.318 [info] UploadPackV2: pack generated, 3139 bytes
04:37:35.318 [info] UploadPackV2: fetch response 3161 bytes
.
04:37:35.472 [info] UploadPackV2: processing fetch command
04:37:35.473 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.482 [info] UploadPackV2: collected 15 objects, generating pack
04:37:35.482 [info] UploadPackV2: pack generated, 1068 bytes
04:37:35.484 [info] UploadPackV2: fetch response 1090 bytes
04:37:35.513 [info] UploadPackV2: processing fetch command
04:37:35.513 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.519 [info] UploadPackV2: collected 20 objects, generating pack
04:37:35.520 [info] UploadPackV2: pack generated, 1490 bytes
04:37:35.520 [info] UploadPackV2: fetch response 1512 bytes
04:37:35.577 [info] UploadPackV2: processing fetch command
04:37:35.577 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.583 [info] UploadPackV2: collected 3 objects, generating pack
04:37:35.583 [info] UploadPackV2: pack generated, 214 bytes
04:37:35.584 [info] UploadPackV2: fetch response 236 bytes
04:37:35.611 [info] UploadPackV2: processing fetch command
04:37:35.611 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.623 [info] UploadPackV2: collected 14 objects, generating pack
04:37:35.625 [info] UploadPackV2: pack generated, 1062 bytes
04:37:35.625 [info] UploadPackV2: fetch response 1084 bytes
04:37:35.700 [info] UploadPackV2: processing fetch command
04:37:35.700 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:35.720 [info] UploadPackV2: collected 21 objects, generating pack
04:37:35.721 [info] UploadPackV2: pack generated, 1462 bytes
04:37:35.722 [info] UploadPackV2: fetch response 1484 bytes
........
04:37:35.997 [info] UploadPackV2: processing fetch command
.
04:37:35.998 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.054 [info] UploadPackV2: collected 8 objects, generating pack
04:37:36.054 [info] UploadPackV2: pack generated, 639 bytes
04:37:36.057 [info] UploadPackV2: fetch response 661 bytes
..................
04:37:36.281 [info] UploadPackV2: processing fetch command
.
04:37:36.281 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.302 [info] UploadPackV2: collected 23 objects, generating pack
.
04:37:36.303 [info] UploadPackV2: pack generated, 1674 bytes
.
04:37:36.303 [info] UploadPackV2: fetch response 1696 bytes
.......
04:37:36.334 [info] UploadPackV2: processing fetch command
.
04:37:36.334 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.339 [info] UploadPackV2: collected 16 objects, generating pack
.
04:37:36.339 [info] UploadPackV2: pack generated, 1232 bytes
.
04:37:36.339 [info] UploadPackV2: fetch response 1254 bytes
.
04:37:36.352 [info] UploadPackV2: processing fetch command
.
04:37:36.352 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.363 [info] UploadPackV2: collected 14 objects, generating pack
.
04:37:36.363 [info] UploadPackV2: pack generated, 1021 bytes
.
04:37:36.363 [info] UploadPackV2: fetch response 1043 bytes
.
04:37:36.384 [info] UploadPackV2: processing fetch command
.
04:37:36.384 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.385 [info] UploadPackV2: collected 6 objects, generating pack
.
04:37:36.385 [info] UploadPackV2: pack generated, 428 bytes
.
04:37:36.385 [info] UploadPackV2: fetch response 450 bytes
.
04:37:36.434 [info] UploadPackV2: processing fetch command
.
04:37:36.434 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.451 [info] UploadPackV2: collected 30 objects, generating pack
.
04:37:36.455 [info] UploadPackV2: pack generated, 2075 bytes
.
04:37:36.455 [info] UploadPackV2: fetch response 2097 bytes
.
04:37:36.472 [info] UploadPackV2: processing fetch command
.
04:37:36.472 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.472 [info] UploadPackV2: collected 3 objects, generating pack
.
04:37:36.473 [info] UploadPackV2: pack generated, 214 bytes
.
04:37:36.473 [info] UploadPackV2: fetch response 236 bytes
.
04:37:36.490 [info] UploadPackV2: processing fetch command
.
04:37:36.491 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.496 [info] UploadPackV2: collected 37 objects, generating pack
.
04:37:36.499 [info] UploadPackV2: pack generated, 2723 bytes
.
04:37:36.499 [info] UploadPackV2: fetch response 2745 bytes
.
04:37:36.541 [info] UploadPackV2: processing fetch command
04:37:36.541 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.542 [info] UploadPackV2: collected 17 objects, generating pack
.
04:37:36.546 [info] UploadPackV2: pack generated, 1276 bytes
...
04:37:36.546 [info] UploadPackV2: fetch response 1298 bytes
...
04:37:36.562 [info] UploadPackV2: processing fetch command
.
04:37:36.562 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.563 [info] UploadPackV2: collected 17 objects, generating pack
..
04:37:36.565 [info] UploadPackV2: pack generated, 1276 bytes
.
04:37:36.565 [info] UploadPackV2: fetch response 1298 bytes
.
04:37:36.578 [info] UploadPackV2: processing fetch command
.
04:37:36.578 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
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
.
04:37:36.579 [info] UploadPackV2: collected 14 objects, generating pack
04:37:36.580 [info] UploadPackV2: pack generated, 1062 bytes
.
04:37:36.580 [info] UploadPackV2: fetch response 1084 bytes
....
04:37:36.589 [info] UploadPackV2: processing fetch command
04:37:36.590 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.590 [info] UploadPackV2: collected 12 objects, generating pack
.
04:37:36.591 [info] UploadPackV2: pack generated, 854 bytes
.
04:37:36.592 [info] UploadPackV2: fetch response 876 bytes
04:37:36.604 [info] UploadPackV2: processing fetch command
04:37:36.604 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.607 [info] UploadPackV2: collected 26 objects, generating pack
04:37:36.610 [info] UploadPackV2: pack generated, 1871 bytes
04:37:36.610 [info] UploadPackV2: fetch response 1893 bytes
04:37:36.621 [info] UploadPackV2: processing fetch command
04:37:36.621 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.622 [info] UploadPackV2: collected 3 objects, generating pack
04:37:36.622 [info] UploadPackV2: pack generated, 214 bytes
04:37:36.623 [info] UploadPackV2: fetch response 236 bytes
.
04:37:36.627 [info] UploadPackV2: processing fetch command
04:37:36.627 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.628 [info] UploadPackV2: collected 8 objects, generating pack
04:37:36.628 [info] UploadPackV2: pack generated, 636 bytes
04:37:36.628 [info] UploadPackV2: fetch response 658 bytes
04:37:36.637 [info] UploadPackV2: processing fetch command
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
04:37:36.637 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.642 [info] UploadPackV2: collected 32 objects, generating pack
04:37:36.644 [info] UploadPackV2: pack generated, 2283 bytes
04:37:36.644 [info] UploadPackV2: fetch response 2305 bytes
04:37:36.678 [info] UploadPackV2: processing fetch command
04:37:36.678 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.679 [info] UploadPackV2: collected 11 objects, generating pack
04:37:36.679 [info] UploadPackV2: pack generated, 851 bytes
04:37:36.680 [info] UploadPackV2: fetch response 873 bytes
04:37:36.772 [info] UploadPackV2: processing fetch command
04:37:36.772 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.775 [info] UploadPackV2: collected 5 objects, generating pack
04:37:36.776 [info] UploadPackV2: pack generated, 424 bytes
04:37:36.776 [info] UploadPackV2: fetch response 446 bytes
04:37:36.808 [info] UploadPackV2: processing fetch command
04:37:36.809 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.820 [info] UploadPackV2: collected 14 objects, generating pack
04:37:36.820 [info] UploadPackV2: pack generated, 1064 bytes
04:37:36.821 [info] UploadPackV2: fetch response 1086 bytes
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
04:37:36.831 [info] UploadPackV2: processing fetch command
04:37:36.832 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.832 [info] UploadPackV2: collected 9 objects, generating pack
04:37:36.833 [info] UploadPackV2: pack generated, 642 bytes
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
04:37:36.833 [info] UploadPackV2: fetch response 664 bytes
04:37:36.859 [info] UploadPackV2: processing fetch command
04:37:36.859 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.862 [info] UploadPackV2: collected 24 objects, generating pack
04:37:36.864 [info] UploadPackV2: pack generated, 1675 bytes
04:37:36.864 [info] UploadPackV2: fetch response 1697 bytes
04:37:36.877 [info] UploadPackV2: processing fetch command
04:37:36.877 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:36.878 [info] UploadPackV2: collected 5 objects, generating pack
04:37:36.878 [info] UploadPackV2: pack generated, 424 bytes
04:37:36.878 [info] UploadPackV2: fetch response 446 bytes
04:37:36.883 [info] UploadPackV2: processing fetch command
04:37:36.974 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:36.986 [info] UploadPackV2: collected 12 objects, generating pack
04:37:36.987 [info] UploadPackV2: pack generated, 854 bytes
04:37:36.987 [info] UploadPackV2: fetch response 876 bytes
.......
04:37:37.080 [info] UploadPackV2: processing fetch command
04:37:37.080 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:37.083 [info] UploadPackV2: collected 6 objects, generating pack
04:37:37.083 [info] UploadPackV2: pack generated, 428 bytes
04:37:37.083 [info] UploadPackV2: fetch response 450 bytes
04:37:37.096 [info] UploadPackV2: processing fetch command
04:37:37.097 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:37.097 [info] UploadPackV2: collected 12 objects, generating pack
04:37:37.098 [info] UploadPackV2: pack generated, 854 bytes
04:37:37.098 [info] UploadPackV2: fetch response 876 bytes
04:37:37.102 [info] UploadPackV2: processing fetch command
04:37:37.103 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:37:37.103 [info] UploadPackV2: collected 12 objects, generating pack
04:37:37.104 [info] UploadPackV2: pack generated, 854 bytes
04:37:37.104 [info] UploadPackV2: fetch response 876 bytes
04:37:37.111 [info] UploadPackV2: processing fetch command
04:37:37.111 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
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
04:37:37.112 [info] UploadPackV2: collected 12 objects, generating pack
04:37:37.113 [info] UploadPackV2: pack generated, 854 bytes
04:37:37.113 [info] UploadPackV2: fetch response 876 bytes
04:37:37.117 [info] UploadPackV2: processing fetch command
04:37:37.117 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:37.118 [info] UploadPackV2: collected 3 objects, generating pack
04:37:37.118 [info] UploadPackV2: pack generated, 214 bytes
.
04:37:37.118 [info] UploadPackV2: fetch response 236 bytes
04:37:37.123 [info] UploadPackV2: processing fetch command
04:37:37.124 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:37.126 [info] UploadPackV2: collected 25 objects, generating pack
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
04:37:37.127 [info] UploadPackV2: pack generated, 1872 bytes
04:37:37.127 [info] UploadPackV2: fetch response 1894 bytes
04:37:37.140 [info] UploadPackV2: processing fetch command
04:37:37.140 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:37:37.146 [info] UploadPackV2: collected 34 objects, generating pack
04:37:37.148 [info] UploadPackV2: pack generated, 2514 bytes
04:37:37.148 [info] UploadPackV2: fetch response 2536 bytes
04:37:37.164 [info] UploadPackV2: processing fetch command
04:37:37.164 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.170 [info] UploadPackV2: collected 20 objects, generating pack
04:37:37.171 [info] UploadPackV2: pack generated, 1203 bytes
04:37:37.174 [info] UploadPackV2: fetch response 1225 bytes
04:37:37.181 [info] UploadPackV2: processing fetch command
.
04:37:37.181 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.183 [info] UploadPackV2: collected 16 objects, generating pack
.
04:37:37.183 [info] UploadPackV2: pack generated, 962 bytes
04:37:37.183 [info] UploadPackV2: fetch response 984 bytes
.
04:37:37.188 [info] UploadPackV2: processing fetch command
04:37:37.188 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.190 [info] UploadPackV2: collected 12 objects, generating pack
04:37:37.191 [info] UploadPackV2: pack generated, 723 bytes
04:37:37.191 [info] UploadPackV2: fetch response 745 bytes
04:37:37.196 [info] UploadPackV2: processing fetch command
04:37:37.196 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.198 [info] UploadPackV2: collected 16 objects, generating pack
04:37:37.199 [info] UploadPackV2: pack generated, 962 bytes
04:37:37.199 [info] UploadPackV2: fetch response 984 bytes
04:37:37.209 [info] UploadPackV2: processing fetch command
04:37:37.286 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.351 [info] UploadPackV2: collected 60 objects, generating pack
04:37:37.353 [info] UploadPackV2: pack generated, 3544 bytes
04:37:37.354 [info] UploadPackV2: fetch response 3566 bytes
04:37:37.393 [info] UploadPackV2: processing fetch command
.
04:37:37.393 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.398 [info] UploadPackV2: collected 20 objects, generating pack
04:37:37.399 [info] UploadPackV2: pack generated, 1203 bytes
04:37:37.399 [info] UploadPackV2: fetch response 1225 bytes
04:37:37.424 [info] UploadPackV2: processing fetch command
04:37:37.424 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.447 [info] UploadPackV2: collected 27 objects, generating pack
04:37:37.449 [info] UploadPackV2: pack generated, 1676 bytes
04:37:37.449 [info] UploadPackV2: fetch response 1698 bytes
04:37:37.502 [info] UploadPackV2: processing fetch command
04:37:37.502 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.511 [info] UploadPackV2: collected 4 objects, generating pack
04:37:37.511 [info] UploadPackV2: pack generated, 241 bytes
04:37:37.511 [info] UploadPackV2: fetch response 263 bytes
04:37:37.536 [info] UploadPackV2: processing fetch command
04:37:37.536 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.542 [info] UploadPackV2: collected 19 objects, generating pack
04:37:37.543 [info] UploadPackV2: pack generated, 1194 bytes
04:37:37.543 [info] UploadPackV2: fetch response 1216 bytes
04:37:37.561 [info] UploadPackV2: processing fetch command
04:37:37.562 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.572 [info] UploadPackV2: collected 28 objects, generating pack
.
04:37:37.577 [info] UploadPackV2: pack generated, 1651 bytes
04:37:37.577 [info] UploadPackV2: fetch response 1673 bytes
.
04:37:37.607 [info] UploadPackV2: processing fetch command
04:37:37.607 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.616 [info] UploadPackV2: collected 11 objects, generating pack
04:37:37.616 [info] UploadPackV2: pack generated, 717 bytes
04:37:37.620 [info] UploadPackV2: fetch response 739 bytes
..
04:37:37.701 [info] UploadPackV2: processing fetch command
04:37:37.701 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.762 [info] UploadPackV2: collected 31 objects, generating pack
.
04:37:37.764 [info] UploadPackV2: pack generated, 1887 bytes
.
04:37:37.764 [info] UploadPackV2: fetch response 1909 bytes
...
04:37:37.855 [info] UploadPackV2: processing fetch command
04:37:37.855 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:37.900 [info] UploadPackV2: collected 22 objects, generating pack
04:37:37.900 [info] UploadPackV2: pack generated, 1379 bytes
04:37:37.904 [info] UploadPackV2: fetch response 1401 bytes
04:37:38.112 [info] UploadPackV2: processing fetch command
04:37:38.112 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.114 [info] UploadPackV2: collected 19 objects, generating pack
04:37:38.115 [info] UploadPackV2: pack generated, 1144 bytes
04:37:38.115 [info] UploadPackV2: fetch response 1166 bytes
.
04:37:38.121 [info] UploadPackV2: processing fetch command
.
04:37:38.121 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.122 [info] UploadPackV2: collected 8 objects, generating pack
04:37:38.122 [info] UploadPackV2: pack generated, 482 bytes
04:37:38.122 [info] UploadPackV2: fetch response 504 bytes
04:37:38.153 [info] UploadPackV2: processing fetch command
04:37:38.153 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.155 [info] UploadPackV2: collected 40 objects, generating pack
04:37:38.156 [info] UploadPackV2: pack generated, 2345 bytes
04:37:38.156 [info] UploadPackV2: fetch response 2367 bytes
04:37:38.202 [info] UploadPackV2: processing fetch command
04:37:38.202 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.212 [info] UploadPackV2: collected 4 objects, generating pack
04:37:38.212 [info] UploadPackV2: pack generated, 241 bytes
04:37:38.214 [info] UploadPackV2: fetch response 263 bytes
04:37:38.239 [info] UploadPackV2: processing fetch command
04:37:38.239 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.260 [info] UploadPackV2: collected 50 objects, generating pack
04:37:38.262 [info] UploadPackV2: pack generated, 3059 bytes
04:37:38.262 [info] UploadPackV2: fetch response 3081 bytes
04:37:38.283 [info] UploadPackV2: processing fetch command
04:37:38.283 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.287 [info] UploadPackV2: collected 23 objects, generating pack
04:37:38.288 [info] UploadPackV2: pack generated, 1435 bytes
.
04:37:38.288 [info] UploadPackV2: fetch response 1457 bytes
04:37:38.294 [info] UploadPackV2: processing fetch command
04:37:38.294 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.296 [info] UploadPackV2: collected 23 objects, generating pack
04:37:38.296 [info] UploadPackV2: pack generated, 1435 bytes
04:37:38.296 [info] UploadPackV2: fetch response 1457 bytes
04:37:38.307 [info] UploadPackV2: processing fetch command
04:37:38.307 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.308 [info] UploadPackV2: collected 19 objects, generating pack
04:37:38.309 [info] UploadPackV2: pack generated, 1194 bytes
04:37:38.309 [info] UploadPackV2: fetch response 1216 bytes
04:37:38.331 [info] UploadPackV2: processing fetch command
04:37:38.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.336 [info] UploadPackV2: collected 16 objects, generating pack
04:37:38.337 [info] UploadPackV2: pack generated, 962 bytes
04:37:38.337 [info] UploadPackV2: fetch response 984 bytes
04:37:38.396 [info] UploadPackV2: processing fetch command
04:37:38.396 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.408 [info] UploadPackV2: collected 35 objects, generating pack
04:37:38.412 [info] UploadPackV2: pack generated, 2102 bytes
04:37:38.413 [info] UploadPackV2: fetch response 2124 bytes
04:37:38.431 [info] UploadPackV2: processing fetch command
04:37:38.431 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.431 [info] UploadPackV2: collected 4 objects, generating pack
04:37:38.431 [info] UploadPackV2: pack generated, 241 bytes
04:37:38.431 [info] UploadPackV2: fetch response 263 bytes
04:37:38.436 [info] UploadPackV2: processing fetch command
04:37:38.436 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.436 [info] UploadPackV2: collected 11 objects, generating pack
04:37:38.437 [info] UploadPackV2: pack generated, 714 bytes
04:37:38.437 [info] UploadPackV2: fetch response 736 bytes
04:37:38.451 [info] UploadPackV2: processing fetch command
04:37:38.451 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.474 [info] UploadPackV2: collected 43 objects, generating pack
04:37:38.478 [info] UploadPackV2: pack generated, 2577 bytes
04:37:38.478 [info] UploadPackV2: fetch response 2599 bytes
04:37:38.517 [info] UploadPackV2: processing fetch command
04:37:38.517 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.529 [info] UploadPackV2: collected 15 objects, generating pack
.
04:37:38.530 [info] UploadPackV2: pack generated, 956 bytes
04:37:38.530 [info] UploadPackV2: fetch response 978 bytes
04:37:38.548 [info] UploadPackV2: processing fetch command
04:37:38.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.549 [info] UploadPackV2: collected 7 objects, generating pack
04:37:38.550 [info] UploadPackV2: pack generated, 475 bytes
04:37:38.550 [info] UploadPackV2: fetch response 497 bytes
04:37:38.553 [info] UploadPackV2: processing fetch command
04:37:38.557 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:38.582 [info] UploadPackV2: collected 19 objects, generating pack
.
04:37:38.583 [info] UploadPackV2: pack generated, 1196 bytes
.
04:37:38.583 [info] UploadPackV2: fetch response 1218 bytes
.
04:37:38.599 [info] UploadPackV2: processing fetch command
.
04:37:38.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.600 [info] UploadPackV2: collected 12 objects, generating pack
.
04:37:38.601 [info] UploadPackV2: pack generated, 723 bytes
.
04:37:38.601 [info] UploadPackV2: fetch response 745 bytes
.
04:37:38.607 [info] UploadPackV2: processing fetch command
.
04:37:38.607 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.612 [info] UploadPackV2: collected 32 objects, generating pack
.
04:37:38.615 [info] UploadPackV2: pack generated, 1891 bytes
.
04:37:38.615 [info] UploadPackV2: fetch response 1913 bytes
.
04:37:38.627 [info] UploadPackV2: processing fetch command
.
04:37:38.627 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
04:37:38.628 [info] UploadPackV2: collected 7 objects, generating pack
.
04:37:38.628 [info] UploadPackV2: pack generated, 475 bytes
.
04:37:38.628 [info] UploadPackV2: fetch response 497 bytes
.
04:37:38.632 [info] UploadPackV2: processing fetch command
.
04:37:38.632 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.633 [info] UploadPackV2: collected 16 objects, generating pack
.
04:37:38.634 [info] UploadPackV2: pack generated, 962 bytes
.
04:37:38.634 [info] UploadPackV2: fetch response 984 bytes
.
04:37:38.640 [info] UploadPackV2: processing fetch command
.
04:37:38.641 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.641 [info] UploadPackV2: collected 8 objects, generating pack
.
04:37:38.642 [info] UploadPackV2: pack generated, 482 bytes
.
04:37:38.642 [info] UploadPackV2: fetch response 504 bytes
.
04:37:38.646 [info] UploadPackV2: processing fetch command
.
04:37:38.646 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.647 [info] UploadPackV2: collected 16 objects, generating pack
.
04:37:38.648 [info] UploadPackV2: pack generated, 962 bytes
.
04:37:38.648 [info] UploadPackV2: fetch response 984 bytes
.
04:37:38.652 [info] UploadPackV2: processing fetch command
.
04:37:38.652 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
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)
04:37:38.653 [info] UploadPackV2: collected 16 objects, generating pack
.
04:37:38.653 [info] UploadPackV2: pack generated, 962 bytes
.
04:37:38.653 [info] UploadPackV2: fetch response 984 bytes
.
04:37:38.657 [info] UploadPackV2: processing fetch command
.
04:37:38.718 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.726 [info] UploadPackV2: collected 16 objects, generating pack
.
04:37:38.727 [info] UploadPackV2: pack generated, 962 bytes
.
04:37:38.728 [info] UploadPackV2: fetch response 984 bytes
.
04:37:38.734 [info] UploadPackV2: processing fetch command
.
04:37:38.735 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:38.735 [info] UploadPackV2: collected 4 objects, generating pack
.
04:37:38.735 [info] UploadPackV2: pack generated, 241 bytes
.
04:37:38.736 [info] UploadPackV2: fetch response 263 bytes
...........
04:37:38.830 [info] UploadPackV2: processing fetch command
.
04:37:38.830 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....
04:37:38.858 [info] UploadPackV2: collected 34 objects, generating pack
.
04:37:38.859 [info] UploadPackV2: pack generated, 2100 bytes
.
04:37:38.859 [info] UploadPackV2: fetch response 2122 bytes
................................
04:37:38.999 [info] UploadPackV2: processing fetch command
.
04:37:38.999 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.010 [info] UploadPackV2: collected 46 objects, generating pack
.
04:37:39.014 [info] UploadPackV2: pack generated, 2823 bytes
.
04:37:39.014 [info] UploadPackV2: fetch response 2845 bytes
.
04:37:39.045 [info] UploadPackV2: processing fetch command
.
04:37:39.046 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.056 [info] UploadPackV2: collected 27 objects, generating pack
.
04:37:39.058 [info] UploadPackV2: pack generated, 1676 bytes
.
04:37:39.059 [info] UploadPackV2: fetch response 1698 bytes
.
04:37:39.072 [info] UploadPackV2: processing fetch command
.
04:37:39.072 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.076 [info] UploadPackV2: collected 15 objects, generating pack
.
04:37:39.076 [info] UploadPackV2: pack generated, 958 bytes
.
04:37:39.076 [info] UploadPackV2: fetch response 980 bytes
.
04:37:39.086 [info] UploadPackV2: processing fetch command
.
04:37:39.086 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.088 [info] UploadPackV2: collected 42 objects, generating pack
.
04:37:39.090 [info] UploadPackV2: pack generated, 2582 bytes
.
04:37:39.090 [info] UploadPackV2: fetch response 2604 bytes
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)
.
04:37:39.097 [info] UploadPackV2: processing fetch command
.
04:37:39.097 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.098 [info] UploadPackV2: collected 11 objects, generating pack
.
04:37:39.098 [info] UploadPackV2: pack generated, 714 bytes
.
04:37:39.098 [info] UploadPackV2: fetch response 736 bytes
.
04:37:39.102 [info] UploadPackV2: processing fetch command
.
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
04:37:39.102 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.103 [info] UploadPackV2: collected 27 objects, generating pack
.
04:37:39.104 [info] UploadPackV2: pack generated, 1678 bytes
.
04:37:39.104 [info] UploadPackV2: fetch response 1700 bytes
.
04:37:39.110 [info] UploadPackV2: processing fetch command
.
04:37:39.110 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.111 [info] UploadPackV2: collected 19 objects, generating pack
.
04:37:39.112 [info] UploadPackV2: pack generated, 1194 bytes
.
04:37:39.112 [info] UploadPackV2: fetch response 1216 bytes
.
04:37:39.119 [info] UploadPackV2: processing fetch command
.
04:37:39.119 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.121 [info] UploadPackV2: collected 42 objects, generating pack
.
04:37:39.122 [info] UploadPackV2: pack generated, 2575 bytes
.
04:37:39.122 [info] UploadPackV2: fetch response 2597 bytes
.
04:37:39.131 [info] UploadPackV2: processing fetch command
.
04:37:39.131 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.134 [info] UploadPackV2: collected 39 objects, generating pack
.
04:37:39.135 [info] UploadPackV2: pack generated, 2347 bytes
04:37:39.135 [info] UploadPackV2: fetch response 2369 bytes
.
04:37:39.144 [info] UploadPackV2: processing fetch command
.
04:37:39.144 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.147 [info] UploadPackV2: collected 31 objects, generating pack
.
04:37:39.148 [info] UploadPackV2: pack generated, 1865 bytes
.
04:37:39.148 [info] UploadPackV2: fetch response 1887 bytes
.
04:37:39.158 [info] UploadPackV2: processing fetch command
.
04:37:39.158 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.160 [info] UploadPackV2: collected 51 objects, generating pack
.
04:37:39.162 [info] UploadPackV2: pack generated, 3061 bytes
.
04:37:39.162 [info] UploadPackV2: fetch response 3083 bytes
.
04:37:39.171 [info] UploadPackV2: processing fetch command
.
04:37:39.172 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.172 [info] UploadPackV2: collected 4 objects, generating pack
.
04:37:39.172 [info] UploadPackV2: pack generated, 241 bytes
.
04:37:39.172 [info] UploadPackV2: fetch response 263 bytes
.
04:37:39.176 [info] UploadPackV2: processing fetch command
.
04:37:39.176 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.177 [info] UploadPackV2: collected 11 objects, generating pack
.
04:37:39.177 [info] UploadPackV2: pack generated, 717 bytes
.
04:37:39.177 [info] UploadPackV2: fetch response 739 bytes
.
04:37:39.183 [info] UploadPackV2: processing fetch command
.
04:37:39.183 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.185 [info] UploadPackV2: collected 27 objects, generating pack
.
04:37:39.186 [info] UploadPackV2: pack generated, 1678 bytes
.
04:37:39.186 [info] UploadPackV2: fetch response 1700 bytes
.
04:37:39.194 [info] UploadPackV2: processing fetch command
.
04:37:39.194 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.195 [info] UploadPackV2: collected 24 objects, generating pack
.
04:37:39.196 [info] UploadPackV2: pack generated, 1443 bytes
.
04:37:39.464 [info] UploadPackV2: fetch response 1465 bytes
.
04:37:39.474 [info] UploadPackV2: processing fetch command
.
04:37:39.475 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.478 [info] UploadPackV2: collected 47 objects, generating pack
.
04:37:39.479 [info] UploadPackV2: pack generated, 2827 bytes
.
04:37:39.479 [info] UploadPackV2: fetch response 2849 bytes
.
04:37:39.488 [info] UploadPackV2: processing fetch command
.
04:37:39.488 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.490 [info] UploadPackV2: collected 31 objects, generating pack
.
04:37:39.491 [info] UploadPackV2: pack generated, 1857 bytes
.
04:37:39.491 [info] UploadPackV2: fetch response 1879 bytes
.
04:37:39.499 [info] UploadPackV2: processing fetch command
.
04:37:39.499 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.500 [info] UploadPackV2: collected 19 objects, generating pack
.........
04:37:39.500 [info] UploadPackV2: pack generated, 1194 bytes
.
04:37:39.500 [info] UploadPackV2: fetch response 1216 bytes
.
04:37:39.506 [info] UploadPackV2: processing fetch command
.
04:37:39.506 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.508 [info] UploadPackV2: collected 34 objects, generating pack
.
04:37:39.509 [info] UploadPackV2: pack generated, 2100 bytes
.
04:37:39.509 [info] UploadPackV2: fetch response 2122 bytes
.
04:37:39.515 [info] UploadPackV2: processing fetch command
.
04:37:39.516 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.517 [info] UploadPackV2: collected 23 objects, generating pack
.
04:37:39.518 [info] UploadPackV2: pack generated, 1435 bytes
.
04:37:39.518 [info] UploadPackV2: fetch response 1457 bytes
.
04:37:39.522 [info] UploadPackV2: processing fetch command
.
04:37:39.522 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.522 [info] UploadPackV2: collected 7 objects, generating pack
.
04:37:39.522 [info] UploadPackV2: pack generated, 475 bytes
.
04:37:39.522 [info] UploadPackV2: fetch response 497 bytes
.
04:37:39.525 [info] UploadPackV2: processing fetch command
.
04:37:39.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.526 [info] UploadPackV2: collected 15 objects, generating pack
.
04:37:39.527 [info] UploadPackV2: pack generated, 958 bytes
.
04:37:39.527 [info] UploadPackV2: fetch response 980 bytes
.
04:37:39.533 [info] UploadPackV2: processing fetch command
.
04:37:39.534 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.535 [info] UploadPackV2: collected 26 objects, generating pack
.
04:37:39.536 [info] UploadPackV2: pack generated, 1620 bytes
.
04:37:39.536 [info] UploadPackV2: fetch response 1642 bytes
.
04:37:39.547 [info] UploadPackV2: processing fetch command
.
04:37:39.547 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.549 [info] UploadPackV2: collected 27 objects, generating pack
.
04:37:39.549 [info] UploadPackV2: pack generated, 1676 bytes
.
04:37:39.549 [info] UploadPackV2: fetch response 1698 bytes
.
04:37:39.556 [info] UploadPackV2: processing fetch command
.
04:37:39.556 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.558 [info] UploadPackV2: collected 27 objects, generating pack
.
04:37:39.559 [info] UploadPackV2: pack generated, 1645 bytes
04:37:39.559 [info] UploadPackV2: fetch response 1667 bytes
04:37:39.568 [info] UploadPackV2: processing fetch command
04:37:39.569 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:39.570 [info] UploadPackV2: collected 15 objects, generating pack
04:37:39.570 [info] UploadPackV2: pack generated, 958 bytes
04:37:39.571 [info] UploadPackV2: fetch response 980 bytes
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
04:37:39.578 [info] UploadPackV2: processing fetch command
04:37:39.578 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:39.580 [info] UploadPackV2: collected 20 objects, generating pack
04:37:39.581 [info] UploadPackV2: pack generated, 1203 bytes
04:37:39.581 [info] UploadPackV2: fetch response 1225 bytes
04:37:39.588 [info] UploadPackV2: processing fetch command
04:37:39.588 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:39.590 [info] UploadPackV2: collected 11 objects, generating pack
04:37:39.590 [info] UploadPackV2: pack generated, 717 bytes
04:37:39.591 [info] UploadPackV2: fetch response 739 bytes
04:37:39.596 [info] UploadPackV2: processing fetch command
04:37:39.596 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:39.598 [info] UploadPackV2: collected 27 objects, generating pack
04:37:39.598 [info] UploadPackV2: pack generated, 1676 bytes
04:37:39.891 [info] UploadPackV2: fetch response 1698 bytes
04:37:39.908 [info] UploadPackV2: processing fetch command
04:37:39.908 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:39.911 [info] UploadPackV2: collected 8 objects, generating pack
.
04:37:39.912 [info] UploadPackV2: pack generated, 482 bytes
.
04:37:39.912 [info] UploadPackV2: fetch response 504 bytes
.
04:37:39.945 [info] UploadPackV2: processing fetch command
..
04:37:39.945 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:39.947 [info] UploadPackV2: collected 24 objects, generating pack
04:37:39.950 [info] UploadPackV2: pack generated, 1443 bytes
04:37:39.951 [info] UploadPackV2: fetch response 1465 bytes
04:37:40.080 [info] UploadPackV2: processing fetch command
04:37:40.080 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.096 [info] UploadPackV2: collected 8 objects, generating pack
04:37:40.110 [info] UploadPackV2: pack generated, 482 bytes
04:37:40.111 [info] UploadPackV2: fetch response 504 bytes
04:37:40.164 [info] UploadPackV2: processing fetch command
04:37:40.164 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.164 [info] UploadPackV2: collected 8 objects, generating pack
04:37:40.165 [info] UploadPackV2: pack generated, 482 bytes
04:37:40.165 [info] UploadPackV2: fetch response 504 bytes
04:37:40.167 [info] UploadPackV2: processing fetch command
04:37:40.167 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.168 [info] UploadPackV2: collected 8 objects, generating pack
04:37:40.168 [info] UploadPackV2: pack generated, 482 bytes
04:37:40.168 [info] UploadPackV2: fetch response 504 bytes
04:37:40.171 [info] UploadPackV2: processing fetch command
04:37:40.172 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
.
04:37:40.173 [info] UploadPackV2: collected 34 objects, generating pack
.
04:37:40.174 [info] UploadPackV2: pack generated, 2098 bytes
.
04:37:40.174 [info] UploadPackV2: fetch response 2120 bytes
.
04:37:40.179 [info] UploadPackV2: processing fetch command
.
04:37:40.180 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:40.180 [info] UploadPackV2: collected 15 objects, generating pack
.
04:37:40.180 [info] UploadPackV2: pack generated, 958 bytes
.
04:37:40.181 [info] UploadPackV2: fetch response 980 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
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
.
04:37:40.184 [info] UploadPackV2: processing fetch command
04:37:40.184 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.185 [info] UploadPackV2: collected 24 objects, generating pack
.
04:37:40.185 [info] UploadPackV2: pack generated, 1381 bytes
04:37:40.185 [info] UploadPackV2: fetch response 1403 bytes
04:37:40.189 [info] UploadPackV2: processing fetch command
04:37:40.189 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.189 [info] UploadPackV2: collected 4 objects, generating pack
04:37:40.189 [info] UploadPackV2: pack generated, 241 bytes
04:37:40.190 [info] UploadPackV2: fetch response 263 bytes
04:37:40.193 [info] UploadPackV2: processing fetch command
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
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130: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
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
04:37:40.193 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.194 [info] UploadPackV2: collected 31 objects, generating pack
04:37:40.195 [info] UploadPackV2: pack generated, 1863 bytes
04:37:40.195 [info] UploadPackV2: fetch response 1885 bytes
.......................
04:37:40.201 [info] UploadPackV2: processing fetch command
04:37:40.201 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:40.202 [info] UploadPackV2: collected 16 objects, generating pack
04:37:40.202 [info] UploadPackV2: pack generated, 962 bytes
04:37:40.202 [info] UploadPackV2: fetch response 984 bytes
04:37:40.209 [info] UploadPackV2: processing fetch command
04:37:40.209 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:40.211 [info] UploadPackV2: collected 28 objects, generating pack
04:37:40.212 [info] UploadPackV2: pack generated, 1623 bytes
04:37:40.212 [info] UploadPackV2: fetch response 1645 bytes
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
04:37:41.792 [info] UploadPackV2: processing ls-refs command
.
04:37:41.802 [info] UploadPackV2: processing fetch command
.
04:37:41.802 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:41.804 [info] UploadPackV2: collected 15 objects, generating pack
.
04:37:41.804 [info] UploadPackV2: pack generated, 984 bytes
.
04:37:41.804 [info] UploadPackV2: fetch response 1006 bytes
04:37:41.825 [info] UploadPackV2: processing fetch command
04:37:41.825 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:41.825 [info] UploadPackV2: collected 3 objects, streaming pack
...
04:37:41.835 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
04:37:41.835 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
04:37:41.838 [info] UploadPackV2: processing fetch command
04:37:41.838 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:41.838 [info] UploadPackV2: collected 3 objects, generating pack
04:37:41.838 [info] UploadPackV2: pack generated, 191 bytes
04:37:41.838 [info] UploadPackV2: fetch response 213 bytes
.
04:37:41.856 [info] UploadPackV2: processing fetch command
.
04:37:41.857 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:41.865 [info] UploadPackV2: collected 90 objects, generating pack
04:37:41.871 [info] UploadPackV2: pack generated, 5946 bytes
04:37:41.871 [info] UploadPackV2: fetch response 5968 bytes
04:37:41.894 [info] UploadPackV2: processing fetch command
04:37:41.894 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:41.894 [info] UploadPackV2: collected 3 objects, generating pack
04:37:41.895 [info] UploadPackV2: pack generated, 191 bytes
.
04:37:41.895 [info] UploadPackV2: fetch response 213 bytes
.
04:37:41.898 [info] UploadPackV2: processing ls-refs command
04:37:41.915 [info] UploadPackV2: processing ls-refs command
04:37:41.917 [info] UploadPackV2: processing ls-refs command
04:37:41.917 [info] UploadPackV2: processing fetch command
04:37:41.917 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:41.918 [info] UploadPackV2: collected 3 objects, generating pack
04:37:41.918 [info] UploadPackV2: pack generated, 206 bytes
04:37:41.918 [info] UploadPackV2: fetch response 228 bytes
04:37:41.928 [info] UploadPackV2: processing fetch command
04:37:41.928 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
04:37:41.933 [info] UploadPackV2: fetch response 73 bytes
04:37:41.933 [info] UploadPackV2: processing fetch command
04:37:41.933 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
04:37:41.935 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
04:37:41.939 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
04:37:41.941 [info] UploadPackV2: processing fetch command
04:37:41.941 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:41.942 [info] UploadPackV2: collected 3 objects, generating pack
04:37:41.942 [info] UploadPackV2: pack generated, 223 bytes
04:37:41.942 [info] UploadPackV2: fetch response 245 bytes
04:37:42.195 [info] UploadPackV2: processing fetch command
04:37:42.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
04:37:42.249 [info] UploadPackV2: collected 32 objects, generating pack
.....
04:37:42.285 [warning] post_receive hook failed: "webhook failed"
........................
04:37:42.411 [info] UploadPackV2: pack generated, 2459817 bytes
04:37:42.416 [info] UploadPackV2: fetch response 2460024 bytes
04:37:42.416 [info] UploadPackV2: processing fetch command
04:37:42.416 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:42.461 [info] UploadPackV2: collected 32 objects, streaming pack
04:37:42.724 [info] UploadPackV2: streamed pack 2459817 bytes, 32 objects
.
04:37:42.724 [info] UploadPackV2: fetch streamed 2459817 pack bytes, 32 objects
04:37:42.753 [info] UploadPackV2: processing fetch command
04:37:42.754 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:42.781 [info] UploadPackV2: collected 15 objects, generating pack
04:37:42.782 [info] UploadPackV2: pack generated, 984 bytes
04:37:42.782 [info] UploadPackV2: fetch response 1006 bytes
.
04:37:42.787 [info] UploadPackV2: processing fetch command
.
04:37:42.789 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:42.802 [info] UploadPackV2: collected 15 objects, streaming pack
.
04:37:42.813 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
04:37:42.813 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
...
04:37:42.980 [info] UploadPackV2: processing ls-refs command
04:37:42.981 [info] UploadPackV2: processing fetch command
04:37:42.982 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:42.982 [info] UploadPackV2: collected 3 objects, generating pack
04:37:42.985 [info] UploadPackV2: pack generated, 210 bytes
.
04:37:42.985 [info] UploadPackV2: fetch response 232 bytes
..............
04:37:43.237 [info] UploadPackV2: processing fetch command
04:37:43.238 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.238 [info] UploadPackV2: collected 9 objects, streaming pack
04:37:43.239 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
04:37:43.239 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
04:37:43.241 [info] UploadPackV2: processing fetch command
04:37:43.241 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.245 [info] UploadPackV2: collected 3 objects, streaming pack
04:37:43.245 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
04:37:43.246 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
04:37:43.246 [info] UploadPackV2: processing fetch command
04:37:43.246 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.247 [info] UploadPackV2: collected 3 objects, generating pack
04:37:43.247 [info] UploadPackV2: pack generated, 191 bytes
04:37:43.247 [info] UploadPackV2: fetch response 213 bytes
04:37:43.249 [info] UploadPackV2: processing fetch command
04:37:43.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.249 [info] UploadPackV2: collected 0 objects, generating pack
04:37:43.250 [info] UploadPackV2: pack generated, 32 bytes
04:37:43.250 [info] UploadPackV2: fetch response 54 bytes
04:37:43.250 [info] UploadPackV2: processing fetch command
04:37:43.250 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.250 [info] UploadPackV2: collected 3 objects, generating pack
04:37:43.251 [info] UploadPackV2: pack generated, 195 bytes
04:37:43.251 [info] UploadPackV2: fetch response 217 bytes
04:37:43.253 [info] UploadPackV2: processing fetch command
04:37:43.253 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.253 [info] UploadPackV2: collected 6 objects, generating pack
04:37:43.254 [info] UploadPackV2: pack generated, 414 bytes
04:37:43.257 [info] UploadPackV2: fetch response 436 bytes
.
04:37:43.487 [info] UploadPackV2: processing fetch command
04:37:43.487 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.508 [info] UploadPackV2: collected 32 objects, streaming pack
....
04:37:43.728 [info] UploadPackV2: streamed pack 2459748 bytes, 32 objects
04:37:43.728 [info] UploadPackV2: fetch streamed 2459748 pack bytes, 32 objects
04:37:43.790 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
..
04:37:43.856 [info] UploadPackV2: processing fetch command
04:37:43.856 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:43.898 [info] UploadPackV2: collected 600 objects, generating pack
04:37:43.911 [info] UploadPackV2: pack generated, 39862 bytes
04:37:43.911 [info] UploadPackV2: fetch response 39884 bytes
.
04:37:43.994 [info] UploadPackV2: processing ls-refs command
.
04:37:43.996 [info] UploadPackV2: processing fetch command
04:37:43.996 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:37:43.997 [info] UploadPackV2: collected 3 objects, generating pack
04:37:43.998 [info] UploadPackV2: pack generated, 194 bytes
04:37:43.998 [info] UploadPackV2: fetch response 216 bytes
04:37:44.087 [info] UploadPackV2: processing fetch command
04:37:44.087 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:44.131 [info] UploadPackV2: collected 700 objects, generating pack
04:37:44.143 [info] UploadPackV2: pack generated, 48139 bytes
04:37:44.144 [info] UploadPackV2: fetch response 48161 bytes
..
04:37:44.233 [info] UploadPackV2: processing fetch command
04:37:44.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:44.235 [info] UploadPackV2: collected 3 objects, generating pack
04:37:44.235 [info] UploadPackV2: pack generated, 195 bytes
.
04:37:44.236 [info] UploadPackV2: fetch response 217 bytes
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
..............
04:37:45.075 [info] The function passed as a handler with ID "test-#Reference<0.1489635850.3934781441.144872>" 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
...
04:37:45.140 [info] The function passed as a handler with ID "test-fail-#Reference<0.1489635850.3934781441.145367>" 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
.................
04:37:45.532 [info] The function passed as a handler with ID #Reference<0.1489635850.3934781442.190762> 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
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
..............................................................................
04:37:47.635 [info] The function passed as a handler with ID #Reference<0.1489635850.3934781441.155448> 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 "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: 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
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
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:
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
...............................................................................................................................................................................**
04:37:49.565 [info] UploadPackV2: processing ls-refs command
04:37:49.567 [info] UploadPackV2: processing fetch command
04:37:49.567 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:37:49.567 [info] UploadPackV2: collected 3 objects, generating pack
04:37:49.567 [info] UploadPackV2: pack generated, 183 bytes
04:37:49.567 [info] UploadPackV2: fetch response 205 bytes
..
04:38:19.761 [info] UploadPackV2: processing ls-refs command
04:38:19.763 [info] UploadPackV2: processing fetch command
04:38:19.763 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:38:19.763 [info] UploadPackV2: collected 3 objects, generating pack
04:38:19.763 [info] UploadPackV2: pack generated, 201 bytes
04:38:19.763 [info] UploadPackV2: fetch response 223 bytes
.
04:38:34.893 [info] UploadPackV2: processing ls-refs command
04:38:34.895 [info] UploadPackV2: processing fetch command
04:38:34.895 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:38:34.896 [info] UploadPackV2: collected 6 objects, generating pack
04:38:34.896 [info] UploadPackV2: pack generated, 365 bytes
04:38:34.896 [info] UploadPackV2: fetch response 387 bytes
.....
04:39:35.289 [info] UploadPackV2: processing ls-refs command
04:39:35.291 [info] UploadPackV2: processing fetch command
04:39:35.291 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:39:35.291 [info] UploadPackV2: collected 6 objects, generating pack
04:39:35.292 [info] UploadPackV2: pack generated, 365 bytes
04:39:35.292 [info] UploadPackV2: fetch response 387 bytes
.
04:39:50.425 [info] UploadPackV2: processing ls-refs command
04:39:50.427 [info] UploadPackV2: processing fetch command
04:39:50.427 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:39:50.428 [info] UploadPackV2: collected 3 objects, generating pack
04:39:50.428 [info] UploadPackV2: pack generated, 183 bytes
04:39:50.428 [info] UploadPackV2: fetch response 205 bytes
..***
04:40:05.633 [info] UploadPackV2: processing ls-refs command
04:40:05.634 [info] UploadPackV2: processing fetch command
04:40:05.634 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:05.634 [info] UploadPackV2: collected 3 objects, generating pack
04:40:05.634 [info] UploadPackV2: pack generated, 216 bytes
04:40:05.634 [info] UploadPackV2: fetch response 346 bytes
.
04:40:05.693 [info] UploadPackV2: processing ls-refs command
04:40:05.695 [info] UploadPackV2: processing fetch command
04:40:05.695 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:05.695 [info] UploadPackV2: collected 6 objects, generating pack
04:40:05.695 [info] UploadPackV2: pack generated, 365 bytes
04:40:05.695 [info] UploadPackV2: fetch response 387 bytes
04:40:05.714 [info] UploadPackV2: processing fetch command
04:40:05.714 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
04:40:05.714 [info] UploadPackV2: fetch response 122 bytes
.
04:40:05.718 [info] UploadPackV2: processing fetch command
.
04:40:05.718 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:05.718 [info] UploadPackV2: collected 3 objects, generating pack
04:40:05.718 [info] UploadPackV2: pack generated, 183 bytes
04:40:05.718 [info] UploadPackV2: fetch response 205 bytes
04:40:05.777 [info] UploadPackV2: processing ls-refs command
04:40:05.779 [info] UploadPackV2: processing fetch command
04:40:05.779 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:05.779 [info] UploadPackV2: collected 6 objects, generating pack
04:40:05.779 [info] UploadPackV2: pack generated, 366 bytes
04:40:05.779 [info] UploadPackV2: fetch response 388 bytes
04:40:05.841 [info] UploadPackV2: processing ls-refs command
04:40:05.842 [info] UploadPackV2: processing fetch command
04:40:05.842 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
04:40:05.842 [info] UploadPackV2: fetch response 32 bytes
04:40:05.842 [info] UploadPackV2: processing fetch command
04:40:05.842 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:05.843 [info] UploadPackV2: collected 3 objects, generating pack
04:40:05.843 [info] UploadPackV2: pack generated, 183 bytes
04:40:05.843 [info] UploadPackV2: fetch response 205 bytes
.
04:40:05.929 [info] UploadPackV2: processing ls-refs command
04:40:05.931 [info] UploadPackV2: processing fetch command
04:40:05.931 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:05.931 [info] UploadPackV2: collected 6 objects, generating pack
04:40:05.931 [info] UploadPackV2: pack generated, 365 bytes
04:40:05.931 [info] UploadPackV2: fetch response 387 bytes
.
04:40:20.993 [info] UploadPackV2: processing ls-refs command
04:40:20.995 [info] UploadPackV2: processing fetch command
04:40:20.995 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:20.995 [info] UploadPackV2: collected 6 objects, generating pack
04:40:20.995 [info] UploadPackV2: pack generated, 365 bytes
04:40:20.996 [info] UploadPackV2: fetch response 387 bytes
04:40:20.997 [info] UploadPackV2: processing ls-refs command
04:40:20.999 [info] UploadPackV2: processing fetch command
04:40:20.999 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:20.999 [info] UploadPackV2: collected 6 objects, generating pack
04:40:20.999 [info] UploadPackV2: pack generated, 365 bytes
04:40:20.999 [info] UploadPackV2: fetch response 387 bytes
.
04:40:21.077 [info] UploadPackV2: processing ls-refs command
04:40:21.079 [info] UploadPackV2: processing fetch command
04:40:21.079 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:21.079 [info] UploadPackV2: collected 9 objects, generating pack
04:40:21.080 [info] UploadPackV2: pack generated, 547 bytes
04:40:21.080 [info] UploadPackV2: fetch response 569 bytes
04:40:21.153 [info] UploadPackV2: processing ls-refs command
.
04:40:21.229 [info] UploadPackV2: processing ls-refs command
04:40:21.230 [info] UploadPackV2: processing fetch command
04:40:21.231 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:21.233 [info] UploadPackV2: collected 90 objects, generating pack
04:40:21.235 [info] UploadPackV2: pack generated, 5649 bytes
04:40:21.235 [info] UploadPackV2: fetch response 5671 bytes
04:40:21.529 [info] UploadPackV2: processing ls-refs command
.
04:40:21.669 [info] UploadPackV2: processing ls-refs command
04:40:21.670 [info] UploadPackV2: processing fetch command
04:40:21.671 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:21.671 [info] UploadPackV2: collected 6 objects, generating pack
04:40:21.671 [info] UploadPackV2: pack generated, 365 bytes
04:40:21.671 [info] UploadPackV2: fetch response 387 bytes
04:40:24.017 [info] UploadPackV2: processing ls-refs command
..
04:40:39.141 [info] UploadPackV2: processing ls-refs command
04:40:39.143 [info] UploadPackV2: processing fetch command
04:40:39.143 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:39.144 [info] UploadPackV2: collected 3 objects, generating pack
04:40:39.144 [info] UploadPackV2: pack generated, 196 bytes
04:40:39.144 [info] UploadPackV2: fetch response 218 bytes
.
04:40:39.213 [info] UploadPackV2: processing ls-refs command
04:40:39.215 [info] UploadPackV2: processing fetch command
04:40:39.215 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:39.215 [info] UploadPackV2: collected 3 objects, generating pack
04:40:39.215 [info] UploadPackV2: pack generated, 185 bytes
04:40:39.215 [info] UploadPackV2: fetch response 207 bytes
.......................
04:40:40.561 [info] UploadPackV2: processing ls-refs command
04:40:40.563 [info] UploadPackV2: processing fetch command
04:40:40.563 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:40.564 [info] UploadPackV2: collected 15 objects, generating pack
04:40:40.564 [info] UploadPackV2: pack generated, 952 bytes
04:40:40.564 [info] UploadPackV2: fetch response 974 bytes
.
04:40:40.637 [info] UploadPackV2: processing ls-refs command
04:40:40.639 [info] UploadPackV2: processing fetch command
04:40:40.639 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:40.639 [info] UploadPackV2: collected 3 objects, generating pack
04:40:40.639 [info] UploadPackV2: pack generated, 196 bytes
04:40:40.639 [info] UploadPackV2: fetch response 218 bytes
.
04:40:40.721 [info] UploadPackV2: processing ls-refs command
04:40:40.722 [info] UploadPackV2: processing fetch command
04:40:40.722 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:40.722 [info] UploadPackV2: collected 3 objects, generating pack
04:40:40.722 [info] UploadPackV2: pack generated, 200 bytes
04:40:40.723 [info] UploadPackV2: fetch response 256 bytes
.
04:40:40.785 [info] UploadPackV2: processing ls-refs command
04:40:40.787 [info] UploadPackV2: processing fetch command
04:40:40.787 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:40.787 [info] UploadPackV2: collected 3 objects, generating pack
04:40:40.787 [info] UploadPackV2: pack generated, 185 bytes
04:40:40.787 [info] UploadPackV2: fetch response 207 bytes
04:40:40.849 [info] UploadPackV2: processing ls-refs command
.
04:40:40.875 [info] UploadPackV2: processing ls-refs command
04:40:40.878 [info] UploadPackV2: processing fetch command
04:40:40.878 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:40.879 [info] UploadPackV2: collected 15 objects, generating pack
04:40:40.879 [info] UploadPackV2: pack generated, 919 bytes
04:40:40.879 [info] UploadPackV2: fetch response 941 bytes
..
04:40:41.017 [info] UploadPackV2: processing fetch command
04:40:41.017 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:41.017 [info] UploadPackV2: collected 3 objects, generating pack
04:40:41.017 [info] UploadPackV2: pack generated, 183 bytes
04:40:41.017 [info] UploadPackV2: fetch response 205 bytes
.
04:40:41.043 [info] UploadPackV2: processing ls-refs command
04:40:41.045 [info] UploadPackV2: processing fetch command
04:40:41.046 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:41.046 [info] UploadPackV2: collected 3 objects, generating pack
04:40:41.046 [info] UploadPackV2: pack generated, 183 bytes
04:40:41.046 [info] UploadPackV2: fetch response 205 bytes
.
04:40:41.085 [info] UploadPackV2: processing ls-refs command
04:40:41.088 [info] UploadPackV2: processing fetch command
04:40:41.088 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:41.089 [info] UploadPackV2: collected 6 objects, generating pack
04:40:41.089 [info] UploadPackV2: pack generated, 366 bytes
04:40:41.089 [info] UploadPackV2: fetch response 388 bytes
04:40:41.119 [info] UploadPackV2: processing ls-refs command
.
04:40:41.148 [info] UploadPackV2: processing ls-refs command
04:40:41.151 [info] UploadPackV2: processing fetch command
04:40:41.151 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:41.152 [info] UploadPackV2: collected 9 objects, generating pack
04:40:41.152 [info] UploadPackV2: pack generated, 549 bytes
04:40:41.152 [info] UploadPackV2: fetch response 571 bytes
04:40:41.181 [info] UploadPackV2: processing ls-refs command
.
04:40:41.219 [info] UploadPackV2: processing ls-refs command
04:40:41.222 [info] UploadPackV2: processing fetch command
04:40:41.222 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:41.227 [info] UploadPackV2: collected 180 objects, generating pack
04:40:41.230 [info] UploadPackV2: pack generated, 11106 bytes
04:40:41.230 [info] UploadPackV2: fetch response 11128 bytes
.
04:40:41.301 [info] UploadPackV2: processing ls-refs command
.
04:40:41.357 [info] UploadPackV2: processing ls-refs command
04:40:41.359 [info] UploadPackV2: processing fetch command
04:40:41.359 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:41.359 [info] UploadPackV2: collected 3 objects, generating pack
04:40:41.359 [info] UploadPackV2: pack generated, 216 bytes
04:40:41.360 [info] UploadPackV2: fetch response 312 bytes
.
04:40:41.433 [info] UploadPackV2: processing ls-refs command
04:40:41.436 [info] UploadPackV2: processing fetch command
04:40:41.436 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
04:40:41.437 [info] UploadPackV2: collected 3 objects, generating pack
04:40:41.438 [info] UploadPackV2: pack generated, 381 bytes
04:40:41.438 [info] UploadPackV2: fetch response 403 bytes
.
04:40:41.513 [info] UploadPackV2: processing ls-refs command
04:40:41.515 [info] UploadPackV2: processing fetch command
04:40:41.515 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:41.515 [info] UploadPackV2: collected 3 objects, generating pack
04:40:41.515 [info] UploadPackV2: pack generated, 216 bytes
04:40:41.515 [info] UploadPackV2: fetch response 312 bytes
04:40:41.577 [info] UploadPackV2: processing ls-refs command
04:40:41.578 [info] UploadPackV2: processing fetch command
04:40:41.578 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:41.579 [info] UploadPackV2: collected 12 objects, generating pack
04:40:41.579 [info] UploadPackV2: pack generated, 768 bytes
04:40:41.579 [info] UploadPackV2: fetch response 1002 bytes
.
04:40:41.637 [info] UploadPackV2: processing ls-refs command
.
04:40:41.689 [info] UploadPackV2: processing ls-refs command
04:40:41.692 [info] UploadPackV2: processing fetch command
04:40:41.692 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:40:41.693 [info] UploadPackV2: collected 6 objects, generating pack
04:40:41.693 [info] UploadPackV2: pack generated, 513 bytes
04:40:41.693 [info] UploadPackV2: fetch response 535 bytes
.
04:40:41.765 [info] UploadPackV2: processing ls-refs command
04:40:41.768 [info] UploadPackV2: processing fetch command
04:40:41.768 [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
04:40:41.769 [info] UploadPackV2: collected 6 objects, generating pack
04:40:41.770 [info] UploadPackV2: pack generated, 513 bytes
04:40:41.770 [info] UploadPackV2: fetch response 535 bytes
.
04:40:41.837 [info] UploadPackV2: processing ls-refs command
04:40:41.839 [info] UploadPackV2: processing fetch command
04:40:41.839 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:41.839 [info] UploadPackV2: collected 9 objects, generating pack
04:40:41.840 [info] UploadPackV2: pack generated, 549 bytes
04:40:41.840 [info] UploadPackV2: fetch response 571 bytes
04:40:41.856 [info] UploadPackV2: processing fetch command
04:40:41.856 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
04:40:41.856 [info] UploadPackV2: fetch response 171 bytes
.
04:40:41.913 [info] UploadPackV2: processing ls-refs command
04:40:41.915 [info] UploadPackV2: processing fetch command
04:40:41.915 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:41.915 [info] UploadPackV2: collected 9 objects, generating pack
04:40:41.916 [info] UploadPackV2: pack generated, 585 bytes
04:40:41.916 [info] UploadPackV2: fetch response 681 bytes
.
04:40:41.989 [info] UploadPackV2: processing ls-refs command
04:40:41.992 [info] UploadPackV2: processing fetch command
04:40:41.992 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
04:40:41.993 [info] UploadPackV2: collected 3 objects, generating pack
04:40:41.993 [info] UploadPackV2: pack generated, 381 bytes
04:40:41.993 [info] UploadPackV2: fetch response 403 bytes
..
04:40:42.065 [info] UploadPackV2: processing ls-refs command
04:40:42.068 [info] UploadPackV2: processing fetch command
04:40:42.068 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
04:40:42.069 [info] UploadPackV2: collected 5 objects, generating pack
04:40:42.069 [info] UploadPackV2: pack generated, 319 bytes
04:40:42.069 [info] UploadPackV2: fetch response 341 bytes
..
04:40:42.137 [info] UploadPackV2: processing ls-refs command
.
04:40:42.189 [info] UploadPackV2: processing ls-refs command
.
04:40:42.245 [info] UploadPackV2: processing ls-refs command
04:40:42.247 [info] UploadPackV2: processing fetch command
04:40:42.247 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:42.247 [info] UploadPackV2: collected 3 objects, generating pack
04:40:42.247 [info] UploadPackV2: pack generated, 218 bytes
04:40:42.248 [info] UploadPackV2: fetch response 314 bytes
.****************.
04:40:42.381 [info] UploadPackV2: processing ls-refs command
04:40:42.383 [info] UploadPackV2: processing fetch command
04:40:42.383 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:42.413 [info] UploadPackV2: collected 600 objects, generating pack
04:40:42.435 [info] UploadPackV2: pack generated, 45197 bytes
04:40:42.435 [info] UploadPackV2: fetch response 45219 bytes
.
04:40:42.513 [info] UploadPackV2: processing ls-refs command
.
04:40:42.520 [info] UploadPackV2: processing fetch command
04:40:42.520 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:42.520 [info] UploadPackV2: collected 0 objects, generating pack
04:40:42.520 [info] UploadPackV2: pack generated, 32 bytes
04:40:42.520 [info] UploadPackV2: fetch response 54 bytes
.
04:40:42.785 [info] UploadPackV2: processing ls-refs command
04:40:42.787 [info] UploadPackV2: processing fetch command
04:40:42.787 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:42.793 [info] UploadPackV2: collected 240 objects, generating pack
04:40:42.797 [info] UploadPackV2: pack generated, 16258 bytes
04:40:42.797 [info] UploadPackV2: fetch response 16280 bytes
.
04:40:42.933 [info] UploadPackV2: processing ls-refs command
04:40:42.935 [info] UploadPackV2: processing fetch command
04:40:42.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:40:42.935 [info] UploadPackV2: collected 3 objects, generating pack
04:40:42.935 [info] UploadPackV2: pack generated, 231 bytes
04:40:42.935 [info] UploadPackV2: fetch response 327 bytes
.
04:40:43.001 [info] UploadPackV2: processing ls-refs command
.
04:40:43.010 [info] UploadPackV2: processing fetch command
04:40:43.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.011 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.011 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.011 [info] UploadPackV2: fetch response 205 bytes
04:40:43.011 [info] UploadPackV2: processing fetch command
04:40:43.011 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.011 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.011 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.011 [info] UploadPackV2: fetch response 205 bytes
04:40:43.012 [info] UploadPackV2: processing fetch command
04:40:43.012 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.012 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.012 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.012 [info] UploadPackV2: fetch response 205 bytes
04:40:43.013 [info] UploadPackV2: processing fetch command
04:40:43.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.013 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.013 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.013 [info] UploadPackV2: fetch response 205 bytes
04:40:43.013 [info] UploadPackV2: processing fetch command
04:40:43.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.014 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.014 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.014 [info] UploadPackV2: fetch response 205 bytes
04:40:43.014 [info] UploadPackV2: processing fetch command
04:40:43.014 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.015 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.015 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.015 [info] UploadPackV2: fetch response 205 bytes
04:40:43.015 [info] UploadPackV2: processing fetch command
04:40:43.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.015 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.016 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.016 [info] UploadPackV2: fetch response 205 bytes
04:40:43.016 [info] UploadPackV2: processing fetch command
04:40:43.016 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.016 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.016 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.016 [info] UploadPackV2: fetch response 205 bytes
04:40:43.016 [info] UploadPackV2: processing fetch command
04:40:43.016 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.017 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.017 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.017 [info] UploadPackV2: fetch response 205 bytes
04:40:43.017 [info] UploadPackV2: processing fetch command
04:40:43.017 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.017 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.018 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.018 [info] UploadPackV2: fetch response 205 bytes
04:40:43.018 [info] UploadPackV2: processing fetch command
04:40:43.018 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.018 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.018 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.018 [info] UploadPackV2: fetch response 205 bytes
04:40:43.019 [info] UploadPackV2: processing fetch command
04:40:43.019 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.019 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.020 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.020 [info] UploadPackV2: fetch response 205 bytes
04:40:43.020 [info] UploadPackV2: processing fetch command
04:40:43.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.020 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.020 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.020 [info] UploadPackV2: fetch response 205 bytes
04:40:43.020 [info] UploadPackV2: processing fetch command
04:40:43.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.021 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.021 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.021 [info] UploadPackV2: fetch response 205 bytes
04:40:43.021 [info] UploadPackV2: processing fetch command
04:40:43.021 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.021 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.021 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.021 [info] UploadPackV2: fetch response 205 bytes
04:40:43.021 [info] UploadPackV2: processing fetch command
04:40:43.021 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.022 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.022 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.022 [info] UploadPackV2: fetch response 205 bytes
04:40:43.022 [info] UploadPackV2: processing fetch command
04:40:43.022 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.022 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.022 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.022 [info] UploadPackV2: fetch response 205 bytes
04:40:43.022 [info] UploadPackV2: processing fetch command
04:40:43.023 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.023 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.023 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.023 [info] UploadPackV2: fetch response 205 bytes
04:40:43.024 [info] UploadPackV2: processing fetch command
04:40:43.024 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.024 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.025 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.025 [info] UploadPackV2: fetch response 205 bytes
04:40:43.025 [info] UploadPackV2: processing fetch command
04:40:43.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.025 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.025 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.025 [info] UploadPackV2: fetch response 205 bytes
04:40:43.026 [info] UploadPackV2: processing fetch command
04:40:43.026 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.026 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.026 [info] UploadPackV2: pack generated, 183 bytes
.
04:40:43.026 [info] UploadPackV2: fetch response 205 bytes
04:40:43.027 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303405214" 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
04:40:43.027 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303402943" 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
.
04:40:43.028 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303402911" 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
04:40:43.028 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303402879" 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
.
04:40:43.029 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303405182" 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
04:40:43.029 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303405150" 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
.
04:40:43.030 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303405118" 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
04:40:43.030 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303405086" 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
................
04:40:43.050 [info] The function passed as a handler with ID "graph-query-test-20962" 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
.
04:40:43.054 [info] The function passed as a handler with ID "graph-query-test-21058" 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
......
04:40:43.062 [info] The function passed as a handler with ID "graph-query-test-10276" 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
.
04:40:43.066 [info] The function passed as a handler with ID "telemetry-test-7301" 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
04:40:43.067 [info] UploadPackV2: processing fetch command
04:40:43.067 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
.
04:40:43.068 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.068 [info] UploadPackV2: pack generated, 183 bytes
04:40:43.068 [info] UploadPackV2: fetch response 205 bytes
.
04:40:43.069 [info] The function passed as a handler with ID "telemetry-test-10308" 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
.
04:40:43.070 [info] UploadPackV2: processing fetch command
04:40:43.070 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:40:43.071 [info] UploadPackV2: collected 3 objects, generating pack
04:40:43.071 [info] UploadPackV2: pack generated, 186 bytes
04:40:43.071 [info] UploadPackV2: fetch response 208 bytes
04:40:43.071 [info] The function passed as a handler with ID "telemetry-test-10340" 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
04:40:43.072 [info] UploadPackV2: processing fetch command
04:40:43.073 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:40:43.073 [info] UploadPackV2: collected 2 objects, generating pack
04:40:43.073 [info] UploadPackV2: pack generated, 169 bytes
04:40:43.073 [info] UploadPackV2: fetch response 191 bytes
04:40:43.080 [info] The function passed as a handler with ID "telemetry-test-18627" 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
.
Finished in 208.4 seconds (19.7s async, 188.6s sync)
Result: 1063 passed (15 properties, 1048 tests), 21 skipped, 58 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"]
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