fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Started: Jul 10, 2026 at 14:54 UTC
Completed: Jul 10, 2026 at 14:57 UTC
Duration: 3m 30s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Cover compiling modules ...
Running ExUnit with seed: 824473, max_cases: 8
Excluding tags: [:s3]
...........
14:54:28.693 [info] The function passed as a handler with ID "test-fail-#Reference<0.87238460.2811494403.195844>" 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
.
14:54:28.654 [info] The function passed as a handler with ID #Reference<0.87238460.2811494401.194252> 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
.
14:54:28.705 [info] The function passed as a handler with ID "test-#Reference<0.87238460.2811494403.195950>" 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: default values for the optional arguments in the private function http_post/4 are never used
│
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
│
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: 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)
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: 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: 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
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 "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
.............................................................................................................................................................................................................................................................................................................................................
14:54:31.496 [info] UploadPackV2: processing fetch command
14:54:31.496 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.498 [info] UploadPackV2: collected 26 objects, generating pack
14:54:31.500 [info] UploadPackV2: pack generated, 1875 bytes
14:54:31.500 [info] UploadPackV2: fetch response 1897 bytes
14:54:31.518 [info] UploadPackV2: processing fetch command
14:54:31.518 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.519 [info] UploadPackV2: collected 5 objects, generating pack
14:54:31.519 [info] UploadPackV2: pack generated, 424 bytes
14:54:31.520 [info] UploadPackV2: fetch response 446 bytes
14:54:31.526 [info] UploadPackV2: processing fetch command
14:54:31.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.527 [info] UploadPackV2: collected 9 objects, generating pack
14:54:31.527 [info] UploadPackV2: pack generated, 642 bytes
14:54:31.529 [info] UploadPackV2: fetch response 664 bytes
14:54:31.534 [info] UploadPackV2: processing fetch command
14:54:31.534 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.535 [info] UploadPackV2: collected 13 objects, generating pack
14:54:31.536 [info] UploadPackV2: pack generated, 1020 bytes
14:54:31.536 [info] UploadPackV2: fetch response 1042 bytes
14:54:31.543 [info] UploadPackV2: processing fetch command
14:54:31.543 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.545 [info] UploadPackV2: collected 49 objects, generating pack
14:54:31.546 [info] UploadPackV2: pack generated, 3576 bytes
14:54:31.546 [info] UploadPackV2: fetch response 3598 bytes
14:54:31.557 [info] UploadPackV2: processing fetch command
14:54:31.558 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
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
14:54:31.558 [info] UploadPackV2: collected 5 objects, generating pack
14:54:31.559 [info] UploadPackV2: pack generated, 424 bytes
14:54:31.559 [info] UploadPackV2: fetch response 446 bytes
14:54:31.562 [info] UploadPackV2: processing fetch command
14:54:31.562 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.563 [info] UploadPackV2: collected 6 objects, generating pack
14:54:31.563 [info] UploadPackV2: pack generated, 428 bytes
14:54:31.563 [info] UploadPackV2: fetch response 450 bytes
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
14:54:31.567 [info] UploadPackV2: processing fetch command
14:54:31.567 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.568 [info] UploadPackV2: collected 11 objects, generating pack
14:54:31.568 [info] UploadPackV2: pack generated, 851 bytes
14:54:31.569 [info] UploadPackV2: fetch response 873 bytes
14:54:31.576 [info] UploadPackV2: processing fetch command
14:54:31.576 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.577 [info] UploadPackV2: collected 17 objects, generating pack
14:54:31.578 [info] UploadPackV2: pack generated, 1247 bytes
14:54:31.578 [info] UploadPackV2: fetch response 1269 bytes
14:54:31.583 [info] UploadPackV2: processing fetch command
14:54:31.583 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.583 [info] UploadPackV2: collected 9 objects, generating pack
14:54:31.583 [info] UploadPackV2: pack generated, 642 bytes
14:54:31.583 [info] UploadPackV2: fetch response 664 bytes
14:54:31.592 [info] UploadPackV2: processing fetch command
14:54:31.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.594 [info] UploadPackV2: collected 15 objects, generating pack
14:54:31.594 [info] UploadPackV2: pack generated, 1068 bytes
14:54:31.594 [info] UploadPackV2: fetch response 1090 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
│
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
..
14:54:31.605 [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
│
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
.
14:54:31.605 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:54:31.608 [info] UploadPackV2: collected 20 objects, generating pack
.
14:54:31.609 [info] UploadPackV2: pack generated, 1448 bytes
.
14:54:31.609 [info] UploadPackV2: fetch response 1470 bytes
..............
14:54:31.619 [info] UploadPackV2: processing fetch command
.
14:54:31.619 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.620 [info] UploadPackV2: collected 3 objects, generating pack
14:54:31.620 [info] UploadPackV2: pack generated, 214 bytes
14:54:31.620 [info] UploadPackV2: fetch response 236 bytes
14:54:31.625 [info] UploadPackV2: processing fetch command
14:54:31.625 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.626 [info] UploadPackV2: collected 36 objects, generating pack
14:54:31.627 [info] UploadPackV2: pack generated, 2530 bytes
14:54:31.627 [info] UploadPackV2: fetch response 2552 bytes
14:54:31.636 [info] UploadPackV2: processing fetch command
14:54:31.636 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.636 [info] UploadPackV2: collected 20 objects, generating pack
14:54:31.637 [info] UploadPackV2: pack generated, 1450 bytes
14:54:31.637 [info] UploadPackV2: fetch response 1472 bytes
14:54:31.641 [info] UploadPackV2: processing fetch command
14:54:31.642 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.643 [info] UploadPackV2: collected 23 objects, generating pack
14:54:31.644 [info] UploadPackV2: pack generated, 1663 bytes
14:54:31.644 [info] UploadPackV2: fetch response 1685 bytes
14:54:31.650 [info] UploadPackV2: processing fetch command
14:54:31.650 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.652 [info] UploadPackV2: collected 39 objects, generating pack
14:54:31.653 [info] UploadPackV2: pack generated, 2713 bytes
14:54:31.653 [info] UploadPackV2: fetch response 2735 bytes
.
14:54:31.661 [info] UploadPackV2: processing fetch command
14:54:31.661 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.663 [info] UploadPackV2: collected 26 objects, generating pack
.
14:54:31.664 [info] UploadPackV2: pack generated, 1876 bytes
14:54:31.664 [info] UploadPackV2: fetch response 1898 bytes
14:54:31.670 [info] UploadPackV2: processing fetch command
14:54:31.670 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.672 [info] UploadPackV2: collected 20 objects, generating pack
14:54:31.672 [info] UploadPackV2: pack generated, 1492 bytes
14:54:31.672 [info] UploadPackV2: fetch response 1514 bytes
14:54:31.679 [info] UploadPackV2: processing fetch command
14:54:31.679 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:54:31.681 [info] UploadPackV2: collected 37 objects, generating pack
14:54:31.682 [info] UploadPackV2: pack generated, 2720 bytes
14:54:31.683 [info] UploadPackV2: fetch response 2742 bytes
14:54:31.689 [info] UploadPackV2: processing fetch command
14:54:31.689 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.689 [info] UploadPackV2: collected 11 objects, generating pack
14:54:31.689 [info] UploadPackV2: pack generated, 851 bytes
14:54:31.690 [info] UploadPackV2: fetch response 873 bytes
14:54:31.694 [info] UploadPackV2: processing fetch command
14:54:31.694 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.695 [info] UploadPackV2: collected 13 objects, generating pack
14:54:31.695 [info] UploadPackV2: pack generated, 1020 bytes
14:54:31.696 [info] UploadPackV2: fetch response 1042 bytes
14:54:31.699 [info] UploadPackV2: processing fetch command
14:54:31.700 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:54:31.701 [info] UploadPackV2: collected 15 objects, generating pack
14:54:31.701 [info] UploadPackV2: pack generated, 1035 bytes
14:54:31.701 [info] UploadPackV2: fetch response 1057 bytes
.
14:54:31.709 [info] UploadPackV2: processing fetch command
14:54:31.709 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.711 [info] UploadPackV2: collected 53 objects, generating pack
14:54:31.713 [info] UploadPackV2: pack generated, 3791 bytes
14:54:31.713 [info] UploadPackV2: fetch response 3813 bytes
14:54:31.727 [info] UploadPackV2: processing fetch command
14:54:31.727 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.728 [info] UploadPackV2: collected 37 objects, generating pack
14:54:31.729 [info] UploadPackV2: pack generated, 2718 bytes
14:54:31.729 [info] UploadPackV2: fetch response 2740 bytes
14:54:31.736 [info] UploadPackV2: processing fetch command
14:54:31.736 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.737 [info] UploadPackV2: collected 5 objects, generating pack
14:54:31.737 [info] UploadPackV2: pack generated, 424 bytes
14:54:31.737 [info] UploadPackV2: fetch response 446 bytes
14:54:31.740 [info] UploadPackV2: processing fetch command
14:54:31.740 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.742 [info] UploadPackV2: collected 12 objects, generating pack
14:54:31.742 [info] UploadPackV2: pack generated, 854 bytes
14:54:31.742 [info] UploadPackV2: fetch response 876 bytes
14:54:31.747 [info] UploadPackV2: processing fetch command
14:54:31.747 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.748 [info] UploadPackV2: collected 15 objects, generating pack
14:54:31.748 [info] UploadPackV2: pack generated, 1068 bytes
14:54:31.749 [info] UploadPackV2: fetch response 1090 bytes
14:54:31.755 [info] UploadPackV2: processing fetch command
14:54:31.756 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.756 [info] UploadPackV2: collected 12 objects, generating pack
14:54:31.756 [info] UploadPackV2: pack generated, 854 bytes
14:54:31.757 [info] UploadPackV2: fetch response 876 bytes
14:54:31.762 [info] UploadPackV2: processing fetch command
14:54:31.762 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.763 [info] UploadPackV2: collected 20 objects, generating pack
14:54:31.764 [info] UploadPackV2: pack generated, 1492 bytes
14:54:31.764 [info] UploadPackV2: fetch response 1514 bytes
.
14:54:31.769 [info] UploadPackV2: processing fetch command
14:54:31.769 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.770 [info] UploadPackV2: collected 17 objects, generating pack
14:54:31.770 [info] UploadPackV2: pack generated, 1235 bytes
14:54:31.771 [info] UploadPackV2: fetch response 1257 bytes
14:54:31.776 [info] UploadPackV2: processing fetch command
14:54:31.776 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.778 [info] UploadPackV2: collected 25 objects, generating pack
14:54:31.778 [info] UploadPackV2: pack generated, 1871 bytes
14:54:31.778 [info] UploadPackV2: fetch response 1893 bytes
14:54:31.785 [info] UploadPackV2: processing fetch command
14:54:31.785 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.786 [info] UploadPackV2: collected 25 objects, generating pack
.
14:54:31.787 [info] UploadPackV2: pack generated, 1872 bytes
14:54:31.787 [info] UploadPackV2: fetch response 1894 bytes
14:54:31.794 [info] UploadPackV2: processing fetch command
14:54:31.794 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.795 [info] UploadPackV2: collected 17 objects, generating pack
14:54:31.795 [info] UploadPackV2: pack generated, 1276 bytes
14:54:31.795 [info] UploadPackV2: fetch response 1298 bytes
14:54:31.800 [info] UploadPackV2: processing fetch command
14:54:31.800 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.803 [info] UploadPackV2: collected 23 objects, generating pack
14:54:31.804 [info] UploadPackV2: pack generated, 1674 bytes
14:54:31.804 [info] UploadPackV2: fetch response 1696 bytes
14:54:31.812 [info] UploadPackV2: processing fetch command
14:54:31.812 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.814 [info] UploadPackV2: collected 35 objects, generating pack
14:54:31.815 [info] UploadPackV2: pack generated, 2510 bytes
14:54:31.815 [info] UploadPackV2: fetch response 2532 bytes
14:54:31.823 [info] UploadPackV2: processing fetch command
14:54:31.823 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.825 [info] UploadPackV2: collected 27 objects, generating pack
14:54:31.825 [info] UploadPackV2: pack generated, 1889 bytes
14:54:31.826 [info] UploadPackV2: fetch response 1911 bytes
..
14:54:31.837 [info] UploadPackV2: processing fetch command
14:54:31.837 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.837 [info] UploadPackV2: collected 6 objects, generating pack
14:54:31.838 [info] UploadPackV2: pack generated, 428 bytes
14:54:31.838 [info] UploadPackV2: fetch response 450 bytes
14:54:31.844 [info] UploadPackV2: processing fetch command
14:54:31.844 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:31.846 [info] UploadPackV2: collected 9 objects, generating pack
14:54:31.847 [info] UploadPackV2: pack generated, 642 bytes
14:54:31.847 [info] UploadPackV2: fetch response 664 bytes
14:54:31.852 [info] UploadPackV2: processing fetch command
14:54:31.852 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:54:31.856 [info] UploadPackV2: collected 14 objects, generating pack
14:54:31.856 [info] UploadPackV2: pack generated, 1062 bytes
14:54:31.857 [info] UploadPackV2: fetch response 1084 bytes
.
14:54:31.867 [info] UploadPackV2: processing fetch command
14:54:31.867 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.869 [info] UploadPackV2: collected 35 objects, generating pack
14:54:31.870 [info] UploadPackV2: pack generated, 2106 bytes
14:54:31.870 [info] UploadPackV2: fetch response 2128 bytes
14:54:31.879 [info] UploadPackV2: processing fetch command
14:54:31.879 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.882 [info] UploadPackV2: collected 7 objects, generating pack
14:54:31.882 [info] UploadPackV2: pack generated, 475 bytes
14:54:31.882 [info] UploadPackV2: fetch response 497 bytes
14:54:31.887 [info] UploadPackV2: processing fetch command
14:54:31.887 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.888 [info] UploadPackV2: collected 12 objects, generating pack
14:54:31.888 [info] UploadPackV2: pack generated, 723 bytes
14:54:31.888 [info] UploadPackV2: fetch response 745 bytes
14:54:31.893 [info] UploadPackV2: processing fetch command
14:54:31.893 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.895 [info] UploadPackV2: collected 18 objects, generating pack
14:54:31.895 [info] UploadPackV2: pack generated, 1140 bytes
14:54:31.895 [info] UploadPackV2: fetch response 1162 bytes
..
14:54:31.902 [info] UploadPackV2: processing fetch command
14:54:31.902 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:31.905 [info] UploadPackV2: collected 66 objects, generating pack
.
14:54:31.907 [info] UploadPackV2: pack generated, 4020 bytes
14:54:31.907 [info] UploadPackV2: fetch response 4042 bytes
.
14:54:31.917 [info] UploadPackV2: processing fetch command
14:54:31.917 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
14:54:31.922 [info] UploadPackV2: collected 7 objects, generating pack
14:54:31.922 [info] UploadPackV2: pack generated, 475 bytes
14:54:31.923 [info] UploadPackV2: fetch response 497 bytes
14:54:31.925 [info] UploadPackV2: processing fetch command
14:54:31.925 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.926 [info] UploadPackV2: collected 8 objects, generating pack
14:54:31.926 [info] UploadPackV2: pack generated, 482 bytes
14:54:31.926 [info] UploadPackV2: fetch response 504 bytes
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
14:54:31.929 [info] UploadPackV2: processing fetch command
14:54:31.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.930 [info] UploadPackV2: collected 15 objects, generating pack
14:54:31.931 [info] UploadPackV2: pack generated, 956 bytes
14:54:31.931 [info] UploadPackV2: fetch response 978 bytes
14:54:31.935 [info] UploadPackV2: processing fetch command
14:54:31.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.937 [info] UploadPackV2: collected 23 objects, generating pack
14:54:31.937 [info] UploadPackV2: pack generated, 1406 bytes
14:54:31.937 [info] UploadPackV2: fetch response 1428 bytes
14:54:31.942 [info] UploadPackV2: processing fetch command
14:54:31.942 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.943 [info] UploadPackV2: collected 12 objects, generating pack
14:54:31.943 [info] UploadPackV2: pack generated, 723 bytes
.
14:54:31.943 [info] UploadPackV2: fetch response 745 bytes
14:54:31.946 [info] UploadPackV2: processing fetch command
14:54:31.946 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.948 [info] UploadPackV2: collected 20 objects, generating pack
14:54:31.949 [info] UploadPackV2: pack generated, 1203 bytes
14:54:31.949 [info] UploadPackV2: fetch response 1225 bytes
..
14:54:31.955 [info] UploadPackV2: processing fetch command
14:54:31.955 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.957 [info] UploadPackV2: collected 27 objects, generating pack
14:54:31.957 [info] UploadPackV2: pack generated, 1625 bytes
14:54:31.957 [info] UploadPackV2: fetch response 1647 bytes
14:54:31.961 [info] UploadPackV2: processing fetch command
14:54:31.961 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.961 [info] UploadPackV2: collected 4 objects, generating pack
14:54:31.962 [info] UploadPackV2: pack generated, 241 bytes
14:54:31.962 [info] UploadPackV2: fetch response 263 bytes
14:54:31.966 [info] UploadPackV2: processing fetch command
14:54:31.966 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.968 [info] UploadPackV2: collected 48 objects, generating pack
14:54:31.970 [info] UploadPackV2: pack generated, 2854 bytes
14:54:31.970 [info] UploadPackV2: fetch response 2876 bytes
..
14:54:31.977 [info] UploadPackV2: processing fetch command
14:54:31.977 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.979 [info] UploadPackV2: collected 27 objects, generating pack
14:54:31.979 [info] UploadPackV2: pack generated, 1627 bytes
14:54:31.979 [info] UploadPackV2: fetch response 1649 bytes
14:54:31.984 [info] UploadPackV2: processing fetch command
14:54:31.984 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.986 [info] UploadPackV2: collected 31 objects, generating pack
14:54:31.987 [info] UploadPackV2: pack generated, 1867 bytes
14:54:31.987 [info] UploadPackV2: fetch response 1889 bytes
14:54:31.993 [info] UploadPackV2: processing fetch command
14:54:31.993 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:31.995 [info] UploadPackV2: collected 52 objects, generating pack
14:54:31.996 [info] UploadPackV2: pack generated, 3064 bytes
14:54:31.996 [info] UploadPackV2: fetch response 3086 bytes
.
14:54:32.003 [info] UploadPackV2: processing fetch command
14:54:32.003 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.005 [info] UploadPackV2: collected 35 objects, generating pack
14:54:32.006 [info] UploadPackV2: pack generated, 2107 bytes
14:54:32.006 [info] UploadPackV2: fetch response 2129 bytes
.
14:54:32.013 [info] UploadPackV2: processing fetch command
14:54:32.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.015 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.016 [info] UploadPackV2: pack generated, 1678 bytes
14:54:32.016 [info] UploadPackV2: fetch response 1700 bytes
14:54:32.021 [info] UploadPackV2: processing fetch command
14:54:32.022 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.023 [info] UploadPackV2: collected 50 objects, generating pack
14:54:32.025 [info] UploadPackV2: pack generated, 3056 bytes
14:54:32.025 [info] UploadPackV2: fetch response 3078 bytes
14:54:32.030 [info] UploadPackV2: processing fetch command
14:54:32.030 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.031 [info] UploadPackV2: collected 15 objects, generating pack
14:54:32.031 [info] UploadPackV2: pack generated, 956 bytes
14:54:32.031 [info] UploadPackV2: fetch response 978 bytes
14:54:32.034 [info] UploadPackV2: processing fetch command
14:54:32.034 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.035 [info] UploadPackV2: collected 18 objects, generating pack
14:54:32.035 [info] UploadPackV2: pack generated, 1140 bytes
14:54:32.035 [info] UploadPackV2: fetch response 1162 bytes
14:54:32.039 [info] UploadPackV2: processing fetch command
14:54:32.039 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.039 [info] UploadPackV2: collected 20 objects, generating pack
14:54:32.040 [info] UploadPackV2: pack generated, 1170 bytes
14:54:32.040 [info] UploadPackV2: fetch response 1192 bytes
14:54:32.047 [info] UploadPackV2: processing fetch command
14:54:32.047 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.049 [info] UploadPackV2: collected 71 objects, generating pack
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
14:54:32.051 [info] UploadPackV2: pack generated, 4265 bytes
14:54:32.051 [info] UploadPackV2: fetch response 4287 bytes
...
14:54:32.061 [info] UploadPackV2: processing fetch command
.
14:54:32.061 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:32.063 [info] UploadPackV2: collected 50 objects, generating pack
....
14:54:32.065 [info] UploadPackV2: pack generated, 3054 bytes
.
14:54:32.065 [info] UploadPackV2: fetch response 3076 bytes
...
14:54:32.072 [info] UploadPackV2: processing fetch command
14:54:32.073 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.073 [info] UploadPackV2: collected 7 objects, generating pack
.
14:54:32.073 [info] UploadPackV2: pack generated, 475 bytes
14:54:32.073 [info] UploadPackV2: fetch response 497 bytes
14:54:32.077 [info] UploadPackV2: processing fetch command
14:54:32.078 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.078 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.079 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.079 [info] UploadPackV2: fetch response 984 bytes
14:54:32.082 [info] UploadPackV2: processing fetch command
14:54:32.082 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.084 [info] UploadPackV2: collected 20 objects, generating pack
14:54:32.085 [info] UploadPackV2: pack generated, 1203 bytes
14:54:32.085 [info] UploadPackV2: fetch response 1225 bytes
14:54:32.089 [info] UploadPackV2: processing fetch command
14:54:32.089 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.090 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.090 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.091 [info] UploadPackV2: fetch response 984 bytes
14:54:32.098 [info] UploadPackV2: processing fetch command
14:54:32.098 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.101 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.101 [info] UploadPackV2: pack generated, 1678 bytes
14:54:32.102 [info] UploadPackV2: fetch response 1700 bytes
14:54:32.106 [info] UploadPackV2: processing fetch command
14:54:32.107 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.108 [info] UploadPackV2: collected 23 objects, generating pack
14:54:32.109 [info] UploadPackV2: pack generated, 1385 bytes
14:54:32.109 [info] UploadPackV2: fetch response 1407 bytes
14:54:32.115 [info] UploadPackV2: processing fetch command
14:54:32.115 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.117 [info] UploadPackV2: collected 34 objects, generating pack
.
14:54:32.118 [info] UploadPackV2: pack generated, 2099 bytes
14:54:32.118 [info] UploadPackV2: fetch response 2121 bytes
14:54:32.127 [info] UploadPackV2: processing fetch command
14:54:32.127 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.128 [info] UploadPackV2: collected 34 objects, generating pack
14:54:32.129 [info] UploadPackV2: pack generated, 2100 bytes
14:54:32.129 [info] UploadPackV2: fetch response 2122 bytes
.
14:54:32.136 [info] UploadPackV2: processing fetch command
14:54:32.136 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.137 [info] UploadPackV2: collected 23 objects, generating pack
14:54:32.138 [info] UploadPackV2: pack generated, 1435 bytes
14:54:32.138 [info] UploadPackV2: fetch response 1457 bytes
14:54:32.142 [info] UploadPackV2: processing fetch command
14:54:32.142 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.144 [info] UploadPackV2: collected 31 objects, generating pack
14:54:32.145 [info] UploadPackV2: pack generated, 1887 bytes
14:54:32.145 [info] UploadPackV2: fetch response 1909 bytes
14:54:32.153 [info] UploadPackV2: processing fetch command
14:54:32.153 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.155 [info] UploadPackV2: collected 47 objects, generating pack
14:54:32.156 [info] UploadPackV2: pack generated, 2822 bytes
14:54:32.156 [info] UploadPackV2: fetch response 2844 bytes
14:54:32.163 [info] UploadPackV2: processing fetch command
14:54:32.163 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.164 [info] UploadPackV2: collected 36 objects, generating pack
14:54:32.165 [info] UploadPackV2: pack generated, 2132 bytes
14:54:32.165 [info] UploadPackV2: fetch response 2154 bytes
.
14:54:32.170 [info] UploadPackV2: processing fetch command
14:54:32.170 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.172 [info] UploadPackV2: collected 8 objects, generating pack
14:54:32.172 [info] UploadPackV2: pack generated, 482 bytes
14:54:32.172 [info] UploadPackV2: fetch response 504 bytes
14:54:32.178 [info] UploadPackV2: processing fetch command
14:54:32.178 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.179 [info] UploadPackV2: collected 12 objects, generating pack
14:54:32.179 [info] UploadPackV2: pack generated, 723 bytes
14:54:32.179 [info] UploadPackV2: fetch response 745 bytes
14:54:32.183 [info] UploadPackV2: processing fetch command
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
14:54:32.183 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.184 [info] UploadPackV2: collected 19 objects, generating pack
14:54:32.184 [info] UploadPackV2: pack generated, 1194 bytes
14:54:32.184 [info] UploadPackV2: fetch response 1216 bytes
14:54:32.190 [info] UploadPackV2: processing fetch command
14:54:32.190 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.193 [info] UploadPackV2: collected 55 objects, generating pack
14:54:32.194 [info] UploadPackV2: pack generated, 3303 bytes
14:54:32.194 [info] UploadPackV2: fetch response 3325 bytes
14:54:32.201 [info] UploadPackV2: processing fetch command
14:54:32.201 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.203 [info] UploadPackV2: collected 35 objects, generating pack
14:54:32.203 [info] UploadPackV2: pack generated, 2107 bytes
14:54:32.203 [info] UploadPackV2: fetch response 2129 bytes
14:54:32.209 [info] UploadPackV2: processing fetch command
14:54:32.209 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.210 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.211 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.211 [info] UploadPackV2: fetch response 984 bytes
14:54:32.216 [info] UploadPackV2: processing fetch command
14:54:32.216 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.217 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.218 [info] UploadPackV2: pack generated, 1626 bytes
14:54:32.218 [info] UploadPackV2: fetch response 1648 bytes
.
14:54:32.224 [info] UploadPackV2: processing fetch command
14:54:32.225 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.226 [info] UploadPackV2: collected 46 objects, generating pack
14:54:32.228 [info] UploadPackV2: pack generated, 2821 bytes
14:54:32.228 [info] UploadPackV2: fetch response 2843 bytes
14:54:32.234 [info] UploadPackV2: processing fetch command
14:54:32.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.234 [info] UploadPackV2: collected 8 objects, generating pack
14:54:32.235 [info] UploadPackV2: pack generated, 482 bytes
14:54:32.235 [info] UploadPackV2: fetch response 504 bytes
14:54:32.237 [info] UploadPackV2: processing fetch command
14:54:32.237 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.238 [info] UploadPackV2: collected 15 objects, generating pack
14:54:32.238 [info] UploadPackV2: pack generated, 956 bytes
.
14:54:32.238 [info] UploadPackV2: fetch response 978 bytes
14:54:32.242 [info] UploadPackV2: processing fetch command
14:54:32.242 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.243 [info] UploadPackV2: collected 20 objects, generating pack
14:54:32.244 [info] UploadPackV2: pack generated, 1203 bytes
14:54:32.244 [info] UploadPackV2: fetch response 1225 bytes
.
14:54:32.249 [info] UploadPackV2: processing fetch command
14:54:32.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.251 [info] UploadPackV2: collected 19 objects, generating pack
14:54:32.252 [info] UploadPackV2: pack generated, 1196 bytes
14:54:32.252 [info] UploadPackV2: fetch response 1218 bytes
14:54:32.255 [info] UploadPackV2: processing fetch command
14:54:32.255 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.256 [info] UploadPackV2: collected 24 objects, generating pack
14:54:32.257 [info] UploadPackV2: pack generated, 1443 bytes
14:54:32.257 [info] UploadPackV2: fetch response 1465 bytes
....
14:54:32.262 [info] UploadPackV2: processing fetch command
14:54:32.262 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.263 [info] UploadPackV2: collected 18 objects, generating pack
14:54:32.263 [info] UploadPackV2: pack generated, 1141 bytes
14:54:32.263 [info] UploadPackV2: fetch response 1163 bytes
14:54:32.266 [info] UploadPackV2: processing fetch command
14:54:32.266 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.267 [info] UploadPackV2: collected 15 objects, generating pack
14:54:32.267 [info] UploadPackV2: pack generated, 956 bytes
14:54:32.267 [info] UploadPackV2: fetch response 978 bytes
.
14:54:32.271 [info] UploadPackV2: processing fetch command
14:54:32.271 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.272 [info] UploadPackV2: collected 35 objects, generating pack
14:54:32.273 [info] UploadPackV2: pack generated, 2128 bytes
14:54:32.273 [info] UploadPackV2: fetch response 2150 bytes
14:54:32.279 [info] UploadPackV2: processing fetch command
14:54:32.279 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.281 [info] UploadPackV2: collected 24 objects, generating pack
14:54:32.281 [info] UploadPackV2: pack generated, 1443 bytes
14:54:32.281 [info] UploadPackV2: fetch response 1465 bytes
14:54:32.288 [info] UploadPackV2: processing fetch command
14:54:32.288 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.290 [info] UploadPackV2: collected 39 objects, generating pack
14:54:32.291 [info] UploadPackV2: pack generated, 2347 bytes
14:54:32.291 [info] UploadPackV2: fetch response 2369 bytes
14:54:32.296 [info] UploadPackV2: processing fetch command
14:54:32.297 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.298 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.299 [info] UploadPackV2: pack generated, 1645 bytes
14:54:32.299 [info] UploadPackV2: fetch response 1667 bytes
14:54:32.304 [info] UploadPackV2: processing fetch command
14:54:32.305 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.305 [info] UploadPackV2: collected 4 objects, generating pack
14:54:32.305 [info] UploadPackV2: pack generated, 241 bytes
14:54:32.305 [info] UploadPackV2: fetch response 263 bytes
14:54:32.308 [info] UploadPackV2: processing fetch command
14:54:32.308 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.311 [info] UploadPackV2: collected 50 objects, generating pack
14:54:32.312 [info] UploadPackV2: pack generated, 3057 bytes
14:54:32.312 [info] UploadPackV2: fetch response 3079 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
14:54:32.319 [info] UploadPackV2: processing fetch command
14:54:32.319 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.320 [info] UploadPackV2: collected 12 objects, generating pack
14:54:32.320 [info] UploadPackV2: pack generated, 723 bytes
14:54:32.320 [info] UploadPackV2: fetch response 745 bytes
..
14:54:32.326 [info] UploadPackV2: processing fetch command
14:54:32.326 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.327 [info] UploadPackV2: collected 23 objects, generating pack
14:54:32.328 [info] UploadPackV2: pack generated, 1437 bytes
14:54:32.328 [info] UploadPackV2: fetch response 1459 bytes
14:54:32.332 [info] UploadPackV2: processing fetch command
14:54:32.332 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.335 [info] UploadPackV2: collected 23 objects, generating pack
14:54:32.337 [info] UploadPackV2: pack generated, 1435 bytes
14:54:32.337 [info] UploadPackV2: fetch response 1457 bytes
14:54:32.341 [info] UploadPackV2: processing fetch command
14:54:32.341 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.342 [info] UploadPackV2: collected 7 objects, generating pack
14:54:32.342 [info] UploadPackV2: pack generated, 475 bytes
14:54:32.342 [info] UploadPackV2: fetch response 497 bytes
14:54:32.345 [info] UploadPackV2: processing fetch command
14:54:32.345 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.346 [info] UploadPackV2: collected 7 objects, generating pack
14:54:32.346 [info] UploadPackV2: pack generated, 475 bytes
14:54:32.346 [info] UploadPackV2: fetch response 497 bytes
14:54:32.351 [info] UploadPackV2: processing fetch command
14:54:32.351 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.353 [info] UploadPackV2: collected 28 objects, generating pack
14:54:32.353 [info] UploadPackV2: pack generated, 1652 bytes
14:54:32.354 [info] UploadPackV2: fetch response 1674 bytes
14:54:32.357 [info] UploadPackV2: processing fetch command
14:54:32.357 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.358 [info] UploadPackV2: collected 22 objects, generating pack
14:54:32.359 [info] UploadPackV2: pack generated, 1375 bytes
14:54:32.359 [info] UploadPackV2: fetch response 1397 bytes
14:54:32.365 [info] UploadPackV2: processing fetch command
14:54:32.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.366 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.366 [info] UploadPackV2: pack generated, 1676 bytes
14:54:32.366 [info] UploadPackV2: fetch response 1698 bytes
14:54:32.370 [info] UploadPackV2: processing fetch command
14:54:32.370 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.371 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.371 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.371 [info] UploadPackV2: fetch response 984 bytes
14:54:32.375 [info] UploadPackV2: processing fetch command
14:54:32.376 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.377 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.377 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.377 [info] UploadPackV2: fetch response 984 bytes
14:54:32.381 [info] UploadPackV2: processing fetch command
14:54:32.381 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.383 [info] UploadPackV2: collected 35 objects, generating pack
14:54:32.383 [info] UploadPackV2: pack generated, 2102 bytes
14:54:32.383 [info] UploadPackV2: fetch response 2124 bytes
14:54:32.390 [info] UploadPackV2: processing fetch command
14:54:32.390 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.390 [info] UploadPackV2: collected 20 objects, generating pack
14:54:32.391 [info] UploadPackV2: pack generated, 1203 bytes
14:54:32.391 [info] UploadPackV2: fetch response 1225 bytes
14:54:32.394 [info] UploadPackV2: processing fetch command
14:54:32.394 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.397 [info] UploadPackV2: collected 42 objects, generating pack
14:54:32.398 [info] UploadPackV2: pack generated, 2580 bytes
14:54:32.398 [info] UploadPackV2: fetch response 2602 bytes
14:54:32.403 [info] UploadPackV2: processing fetch command
14:54:32.403 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.405 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.405 [info] UploadPackV2: pack generated, 1615 bytes
14:54:32.405 [info] UploadPackV2: fetch response 1637 bytes
14:54:32.410 [info] UploadPackV2: processing fetch command
14:54:32.410 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.411 [info] UploadPackV2: collected 19 objects, generating pack
14:54:32.412 [info] UploadPackV2: pack generated, 1164 bytes
14:54:32.412 [info] UploadPackV2: fetch response 1186 bytes
14:54:32.415 [info] UploadPackV2: processing fetch command
14:54:32.415 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.416 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.416 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.416 [info] UploadPackV2: fetch response 984 bytes
..
14:54:32.419 [info] UploadPackV2: processing fetch command
14:54:32.419 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.420 [info] UploadPackV2: collected 16 objects, generating pack
14:54:32.420 [info] UploadPackV2: pack generated, 962 bytes
14:54:32.420 [info] UploadPackV2: fetch response 984 bytes
14:54:32.424 [info] UploadPackV2: processing fetch command
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
14:54:32.424 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.426 [info] UploadPackV2: collected 32 objects, generating pack
14:54:32.427 [info] UploadPackV2: pack generated, 1862 bytes
14:54:32.427 [info] UploadPackV2: fetch response 1884 bytes
14:54:32.433 [info] UploadPackV2: processing fetch command
14:54:32.433 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.435 [info] UploadPackV2: collected 27 objects, generating pack
14:54:32.435 [info] UploadPackV2: pack generated, 1676 bytes
14:54:32.435 [info] UploadPackV2: fetch response 1698 bytes
14:54:32.439 [info] UploadPackV2: processing fetch command
14:54:32.440 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.440 [info] UploadPackV2: collected 4 objects, generating pack
14:54:32.440 [info] UploadPackV2: pack generated, 241 bytes
14:54:32.440 [info] UploadPackV2: fetch response 263 bytes
14:54:32.441 [info] UploadPackV2: processing fetch command
14:54:32.442 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.442 [info] UploadPackV2: collected 8 objects, generating pack
14:54:32.442 [info] UploadPackV2: pack generated, 482 bytes
14:54:32.442 [info] UploadPackV2: fetch response 504 bytes
14:54:32.447 [info] UploadPackV2: processing fetch command
14:54:32.447 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.449 [info] UploadPackV2: collected 59 objects, generating pack
14:54:32.450 [info] UploadPackV2: pack generated, 3536 bytes
14:54:32.450 [info] UploadPackV2: fetch response 3558 bytes
......
14:54:32.772 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
14:54:32.773 [info] UploadPackV2: processing fetch command
..
14:54:32.773 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:32.773 [info] UploadPackV2: collected 0 objects, generating pack
14:54:32.773 [info] UploadPackV2: pack generated, 32 bytes
14:54:32.773 [info] UploadPackV2: fetch response 54 bytes
14:54:32.775 [info] UploadPackV2: processing fetch command
14:54:32.775 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.775 [info] UploadPackV2: collected 6 objects, generating pack
14:54:32.775 [info] UploadPackV2: pack generated, 414 bytes
14:54:32.775 [info] UploadPackV2: fetch response 436 bytes
14:54:32.776 [info] UploadPackV2: processing fetch command
14:54:32.776 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
14:54:32.777 [info] UploadPackV2: fetch response 73 bytes
.
14:54:32.777 [info] UploadPackV2: processing fetch command
.
14:54:32.777 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
14:54:32.777 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
14:54:32.933 [info] UploadPackV2: processing fetch command
14:54:32.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:32.949 [info] UploadPackV2: collected 32 objects, generating pack
.................
14:54:33.075 [info] UploadPackV2: pack generated, 2459818 bytes
14:54:33.080 [info] UploadPackV2: fetch response 2460025 bytes
14:54:33.080 [info] UploadPackV2: processing fetch command
14:54:33.080 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
14:54:33.124 [info] UploadPackV2: collected 32 objects, streaming pack
.....
14:54:33.261 [info] UploadPackV2: streamed pack 2459818 bytes, 32 objects
14:54:33.261 [info] UploadPackV2: fetch streamed 2459818 pack bytes, 32 objects
..
14:54:33.394 [info] UploadPackV2: processing ls-refs command
14:54:33.394 [info] UploadPackV2: processing fetch command
14:54:33.395 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:33.396 [info] UploadPackV2: collected 3 objects, generating pack
14:54:33.396 [info] UploadPackV2: pack generated, 210 bytes
14:54:33.396 [info] UploadPackV2: fetch response 232 bytes
.
14:54:33.461 [info] UploadPackV2: processing fetch command
.
14:54:33.461 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.463 [info] UploadPackV2: collected 3 objects, generating pack
14:54:33.463 [info] UploadPackV2: pack generated, 191 bytes
14:54:33.464 [info] UploadPackV2: fetch response 213 bytes
14:54:33.467 [info] UploadPackV2: processing ls-refs command
14:54:33.494 [info] UploadPackV2: processing fetch command
14:54:33.494 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:33.497 [info] UploadPackV2: collected 90 objects, generating pack
14:54:33.499 [info] UploadPackV2: pack generated, 5946 bytes
.
14:54:33.500 [info] UploadPackV2: fetch response 5968 bytes
.
14:54:33.510 [info] UploadPackV2: processing fetch command
14:54:33.510 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.512 [info] UploadPackV2: collected 9 objects, streaming pack
.
14:54:33.513 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
14:54:33.513 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
14:54:33.519 [info] UploadPackV2: processing fetch command
.
14:54:33.519 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.520 [info] UploadPackV2: collected 15 objects, generating pack
.
14:54:33.520 [info] UploadPackV2: pack generated, 984 bytes
.
14:54:33.520 [info] UploadPackV2: fetch response 1006 bytes
.
14:54:33.521 [info] UploadPackV2: processing fetch command
.
14:54:33.521 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.522 [info] UploadPackV2: collected 15 objects, streaming pack
.
14:54:33.524 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
14:54:33.525 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
14:54:33.525 [info] UploadPackV2: processing fetch command
.
14:54:33.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.526 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:33.527 [info] UploadPackV2: pack generated, 195 bytes
.
14:54:33.527 [info] UploadPackV2: fetch response 217 bytes
.
14:54:33.529 [info] UploadPackV2: processing fetch command
.
14:54:33.529 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.531 [info] UploadPackV2: collected 15 objects, generating pack
.
14:54:33.532 [info] UploadPackV2: pack generated, 984 bytes
.
14:54:33.532 [info] UploadPackV2: fetch response 1006 bytes
.
14:54:33.536 [info] UploadPackV2: processing fetch command
.
14:54:33.536 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.537 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:33.537 [info] UploadPackV2: pack generated, 194 bytes
.
14:54:33.538 [info] UploadPackV2: fetch response 216 bytes
.
14:54:33.541 [info] UploadPackV2: processing fetch command
.
14:54:33.541 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.543 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:33.543 [info] UploadPackV2: pack generated, 191 bytes
.
14:54:33.543 [info] UploadPackV2: fetch response 213 bytes
.
14:54:33.545 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
14:54:33.545 [info] UploadPackV2: processing fetch command
.
14:54:33.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.546 [info] UploadPackV2: collected 3 objects, streaming pack
.
14:54:33.551 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
14:54:33.551 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
14:54:33.553 [info] UploadPackV2: processing fetch command
.
14:54:33.553 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.554 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:33.554 [info] UploadPackV2: pack generated, 191 bytes
.
14:54:33.554 [info] UploadPackV2: fetch response 213 bytes
.
14:54:33.561 [info] UploadPackV2: processing ls-refs command
.
14:54:33.562 [info] UploadPackV2: processing fetch command
.
14:54:33.562 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:33.565 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:33.565 [info] UploadPackV2: pack generated, 206 bytes
.
14:54:33.566 [info] UploadPackV2: fetch response 228 bytes
14:54:33.708 [info] UploadPackV2: processing fetch command
14:54:33.708 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:33.725 [info] UploadPackV2: collected 32 objects, streaming pack
14:54:33.892 [info] UploadPackV2: streamed pack 2459750 bytes, 32 objects
14:54:33.892 [info] UploadPackV2: fetch streamed 2459750 pack bytes, 32 objects
................................
14:54:34.128 [info] UploadPackV2: processing fetch command
.
14:54:34.129 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:34.129 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:34.130 [info] UploadPackV2: pack generated, 223 bytes
.
14:54:34.130 [info] UploadPackV2: fetch response 245 bytes
.
14:54:34.131 [info] UploadPackV2: processing fetch command
.
14:54:34.131 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:54:34.131 [info] UploadPackV2: collected 3 objects, generating pack
.
14:54:34.131 [info] UploadPackV2: pack generated, 195 bytes
14:54:34.131 [info] UploadPackV2: fetch response 217 bytes
14:54:34.132 [info] UploadPackV2: processing ls-refs command
14:54:34.132 [info] UploadPackV2: processing ls-refs command
14:54:34.204 [info] UploadPackV2: processing fetch command
.
14:54:34.204 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
14:54:34.223 [info] The function passed as a handler with ID #Reference<0.87238460.2811756547.1239> 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
...
14:54:34.239 [info] UploadPackV2: collected 600 objects, generating pack
..
14:54:34.251 [info] UploadPackV2: pack generated, 39862 bytes
.
14:54:34.251 [info] UploadPackV2: fetch response 39884 bytes
...
14:54:34.331 [info] UploadPackV2: processing fetch command
14:54:34.332 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:34.338 [info] UploadPackV2: collected 3 objects, streaming pack
14:54:34.347 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
.
14:54:34.347 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
.
14:54:34.350 [info] UploadPackV2: processing ls-refs command
14:54:34.447 [info] UploadPackV2: processing fetch command
14:54:34.447 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:34.475 [info] UploadPackV2: collected 700 objects, generating pack
14:54:34.493 [info] UploadPackV2: pack generated, 48139 bytes
14:54:34.493 [info] UploadPackV2: fetch response 48161 bytes
.........................................................................................................
14:54:34.996 [warning] post_receive hook failed: "webhook failed"
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
..........................................................................................................................
14:54:36.998 [info] UploadPackV2: processing fetch command
14:54:36.998 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:37.002 [info] UploadPackV2: reused pack 12130 bytes, 160 objects
14:54:37.002 [info] UploadPackV2: fetch response 12152 bytes
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")
│ ~
│
..............................................................
14:54:38.011 [info] UploadPackV2: processing fetch command
14:54:38.012 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:38.021 [info] UploadPackV2: collected 163 objects, generating pack
14:54:38.027 [info] UploadPackV2: pack generated, 15096 bytes
14:54:38.027 [info] UploadPackV2: fetch response 15118 bytes
└─ 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
.......
14:54:38.644 [info] UploadPackV2: processing fetch command
14:54:38.644 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:38.649 [info] UploadPackV2: reused pack 12025 bytes, 160 objects
14:54:38.649 [info] UploadPackV2: fetch response 12047 bytes
................................................
14:54:41.162 [info] UploadPackV2: processing ls-refs command
14:54:41.165 [info] UploadPackV2: processing fetch command
14:54:41.165 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:41.166 [info] UploadPackV2: collected 15 objects, generating pack
14:54:41.166 [info] UploadPackV2: pack generated, 919 bytes
14:54:41.166 [info] UploadPackV2: fetch response 941 bytes
.
14:54:41.255 [info] UploadPackV2: processing fetch command
14:54:41.255 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:41.256 [info] UploadPackV2: collected 3 objects, generating pack
14:54:41.256 [info] UploadPackV2: pack generated, 183 bytes
14:54:41.256 [info] UploadPackV2: fetch response 205 bytes
..
14:54:41.312 [info] UploadPackV2: processing ls-refs command
14:54:41.314 [info] UploadPackV2: processing fetch command
14:54:41.314 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:41.315 [info] UploadPackV2: collected 9 objects, generating pack
14:54:41.315 [info] UploadPackV2: pack generated, 549 bytes
14:54:41.315 [info] UploadPackV2: fetch response 571 bytes
14:54:41.340 [info] UploadPackV2: processing ls-refs command
.
14:54:41.369 [info] UploadPackV2: processing ls-refs command
14:54:41.372 [info] UploadPackV2: processing fetch command
14:54:41.372 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:41.376 [info] UploadPackV2: collected 180 objects, generating pack
14:54:41.379 [info] UploadPackV2: pack generated, 11106 bytes
14:54:41.379 [info] UploadPackV2: fetch response 11128 bytes
.
14:54:41.414 [info] UploadPackV2: processing ls-refs command
14:54:41.416 [info] UploadPackV2: processing fetch command
14:54:41.416 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:41.417 [info] UploadPackV2: collected 6 objects, generating pack
14:54:41.417 [info] UploadPackV2: pack generated, 366 bytes
14:54:41.417 [info] UploadPackV2: fetch response 388 bytes
14:54:41.443 [info] UploadPackV2: processing ls-refs command
.
14:54:41.465 [info] UploadPackV2: processing ls-refs command
14:54:41.467 [info] UploadPackV2: processing fetch command
14:54:41.467 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:41.468 [info] UploadPackV2: collected 3 objects, generating pack
14:54:41.468 [info] UploadPackV2: pack generated, 183 bytes
14:54:41.468 [info] UploadPackV2: fetch response 205 bytes
.***********
14:54:41.481 [info] The function passed as a handler with ID "telemetry-test-13443" 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
14:54:41.482 [info] UploadPackV2: processing fetch command
14:54:41.482 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:54:41.482 [info] UploadPackV2: collected 3 objects, generating pack
14:54:41.482 [info] UploadPackV2: pack generated, 183 bytes
14:54:41.482 [info] UploadPackV2: fetch response 205 bytes
.
14:54:41.486 [info] The function passed as a handler with ID "telemetry-test-13475" 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
.
14:54:56.544 [info] The function passed as a handler with ID "telemetry-test-13507" 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
14:54:56.545 [info] UploadPackV2: processing fetch command
14:54:56.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:56.546 [info] UploadPackV2: collected 2 objects, generating pack
14:54:56.546 [info] UploadPackV2: pack generated, 169 bytes
.
14:54:56.546 [info] UploadPackV2: fetch response 191 bytes
14:54:56.546 [info] The function passed as a handler with ID "telemetry-test-15332" 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
14:54:56.547 [info] UploadPackV2: processing fetch command
14:54:56.547 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:56.548 [info] UploadPackV2: collected 3 objects, generating pack
14:54:56.548 [info] UploadPackV2: pack generated, 186 bytes
14:54:56.548 [info] UploadPackV2: fetch response 208 bytes
.*****..
14:54:56.606 [info] UploadPackV2: processing ls-refs command
14:54:56.610 [info] UploadPackV2: processing fetch command
14:54:56.610 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
14:54:56.611 [info] UploadPackV2: collected 5 objects, generating pack
14:54:56.611 [info] UploadPackV2: pack generated, 319 bytes
14:54:56.611 [info] UploadPackV2: fetch response 341 bytes
.
14:54:56.686 [info] UploadPackV2: processing ls-refs command
14:54:56.689 [info] UploadPackV2: processing fetch command
14:54:56.689 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:54:56.690 [info] UploadPackV2: collected 6 objects, generating pack
14:54:56.690 [info] UploadPackV2: pack generated, 513 bytes
14:54:56.690 [info] UploadPackV2: fetch response 535 bytes
.
14:54:56.754 [info] UploadPackV2: processing ls-refs command
.
14:54:56.810 [info] UploadPackV2: processing ls-refs command
14:54:56.811 [info] UploadPackV2: processing fetch command
14:54:56.812 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:54:56.812 [info] UploadPackV2: collected 3 objects, generating pack
14:54:56.812 [info] UploadPackV2: pack generated, 216 bytes
14:54:56.812 [info] UploadPackV2: fetch response 312 bytes
14:54:56.874 [info] UploadPackV2: processing ls-refs command
14:54:56.875 [info] UploadPackV2: processing fetch command
14:54:56.875 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:54:56.876 [info] UploadPackV2: collected 12 objects, generating pack
14:54:56.876 [info] UploadPackV2: pack generated, 768 bytes
14:54:56.876 [info] UploadPackV2: fetch response 1002 bytes
.
14:54:56.938 [info] UploadPackV2: processing ls-refs command
14:54:56.939 [info] UploadPackV2: processing fetch command
14:54:56.940 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:54:56.940 [info] UploadPackV2: collected 3 objects, generating pack
14:54:56.940 [info] UploadPackV2: pack generated, 216 bytes
14:54:56.940 [info] UploadPackV2: fetch response 312 bytes
.
14:54:57.010 [info] UploadPackV2: processing ls-refs command
.
14:54:57.066 [info] UploadPackV2: processing ls-refs command
14:54:57.069 [info] UploadPackV2: processing fetch command
14:54:57.069 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
14:54:57.070 [info] UploadPackV2: collected 3 objects, generating pack
14:54:57.070 [info] UploadPackV2: pack generated, 381 bytes
14:54:57.070 [info] UploadPackV2: fetch response 403 bytes
.
14:54:57.146 [info] UploadPackV2: processing ls-refs command
14:54:57.147 [info] UploadPackV2: processing fetch command
14:54:57.147 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:57.148 [info] UploadPackV2: collected 9 objects, generating pack
14:54:57.149 [info] UploadPackV2: pack generated, 549 bytes
14:54:57.149 [info] UploadPackV2: fetch response 571 bytes
14:54:57.165 [info] UploadPackV2: processing fetch command
14:54:57.165 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:54:57.166 [info] UploadPackV2: fetch response 171 bytes
.
14:54:57.218 [info] UploadPackV2: processing ls-refs command
14:54:57.221 [info] UploadPackV2: processing fetch command
14:54:57.221 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
14:54:57.222 [info] UploadPackV2: collected 3 objects, generating pack
14:54:57.222 [info] UploadPackV2: pack generated, 381 bytes
14:54:57.222 [info] UploadPackV2: fetch response 403 bytes
.
14:54:57.294 [info] UploadPackV2: processing ls-refs command
14:54:57.297 [info] UploadPackV2: processing fetch command
14:54:57.297 [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
14:54:57.298 [info] UploadPackV2: collected 6 objects, generating pack
14:54:57.298 [info] UploadPackV2: pack generated, 513 bytes
14:54:57.298 [info] UploadPackV2: fetch response 535 bytes
.
14:54:57.370 [info] UploadPackV2: processing ls-refs command
14:54:57.371 [info] UploadPackV2: processing fetch command
14:54:57.371 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:54:57.372 [info] UploadPackV2: collected 9 objects, generating pack
14:54:57.373 [info] UploadPackV2: pack generated, 585 bytes
14:54:57.373 [info] UploadPackV2: fetch response 681 bytes
.
14:54:57.442 [info] UploadPackV2: processing ls-refs command
14:54:57.443 [info] UploadPackV2: processing fetch command
14:54:57.444 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:54:57.444 [info] UploadPackV2: collected 3 objects, generating pack
14:54:57.444 [info] UploadPackV2: pack generated, 218 bytes
14:54:57.444 [info] UploadPackV2: fetch response 314 bytes
.
14:54:57.510 [info] UploadPackV2: processing ls-refs command
.
14:54:57.558 [info] UploadPackV2: processing ls-refs command
.
14:54:57.634 [info] UploadPackV2: processing ls-refs command
14:54:57.635 [info] UploadPackV2: processing fetch command
14:54:57.636 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:54:57.636 [info] UploadPackV2: collected 6 objects, generating pack
14:54:57.636 [info] UploadPackV2: pack generated, 365 bytes
14:54:57.636 [info] UploadPackV2: fetch response 387 bytes
.
14:55:12.706 [info] UploadPackV2: processing ls-refs command
14:55:12.707 [info] UploadPackV2: processing fetch command
14:55:12.707 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:55:12.707 [info] UploadPackV2: collected 3 objects, generating pack
14:55:12.707 [info] UploadPackV2: pack generated, 216 bytes
14:55:12.707 [info] UploadPackV2: fetch response 346 bytes
.
14:55:12.715 [info] UploadPackV2: processing fetch command
14:55:12.715 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:12.716 [info] UploadPackV2: collected 3 objects, generating pack
.
14:55:12.716 [info] UploadPackV2: pack generated, 183 bytes
14:55:12.716 [info] UploadPackV2: fetch response 205 bytes
14:55:12.770 [info] UploadPackV2: processing ls-refs command
14:55:12.772 [info] UploadPackV2: processing fetch command
14:55:12.772 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:12.772 [info] UploadPackV2: collected 6 objects, generating pack
14:55:12.773 [info] UploadPackV2: pack generated, 365 bytes
14:55:12.773 [info] UploadPackV2: fetch response 387 bytes
14:55:12.789 [info] UploadPackV2: processing fetch command
14:55:12.790 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:55:12.790 [info] UploadPackV2: fetch response 122 bytes
.
14:55:12.858 [info] UploadPackV2: processing ls-refs command
14:55:12.860 [info] UploadPackV2: processing fetch command
14:55:12.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:12.863 [info] UploadPackV2: collected 90 objects, generating pack
14:55:12.865 [info] UploadPackV2: pack generated, 5649 bytes
14:55:12.865 [info] UploadPackV2: fetch response 5671 bytes
14:55:13.150 [info] UploadPackV2: processing ls-refs command
.
14:55:13.214 [info] UploadPackV2: processing ls-refs command
14:55:13.214 [info] UploadPackV2: processing ls-refs command
14:55:13.216 [info] UploadPackV2: processing fetch command
14:55:13.216 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:13.217 [info] UploadPackV2: processing fetch command
14:55:13.217 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:13.217 [info] UploadPackV2: collected 6 objects, generating pack
14:55:13.217 [info] UploadPackV2: collected 6 objects, generating pack
14:55:13.218 [info] UploadPackV2: pack generated, 365 bytes
14:55:13.218 [info] UploadPackV2: fetch response 387 bytes
14:55:13.218 [info] UploadPackV2: pack generated, 365 bytes
14:55:13.218 [info] UploadPackV2: fetch response 387 bytes
.
14:55:13.386 [info] UploadPackV2: processing ls-refs command
14:55:13.387 [info] UploadPackV2: processing fetch command
14:55:13.387 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:13.388 [info] UploadPackV2: collected 6 objects, generating pack
14:55:13.388 [info] UploadPackV2: pack generated, 365 bytes
14:55:13.388 [info] UploadPackV2: fetch response 387 bytes
14:55:15.330 [info] UploadPackV2: processing ls-refs command
.
14:55:15.386 [info] UploadPackV2: processing ls-refs command
14:55:15.387 [info] UploadPackV2: processing fetch command
14:55:15.387 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:15.388 [info] UploadPackV2: collected 9 objects, generating pack
14:55:15.388 [info] UploadPackV2: pack generated, 547 bytes
14:55:15.388 [info] UploadPackV2: fetch response 569 bytes
14:55:15.470 [info] UploadPackV2: processing ls-refs command
.
14:55:15.526 [info] UploadPackV2: processing ls-refs command
14:55:15.527 [info] UploadPackV2: processing fetch command
14:55:15.527 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:15.528 [info] UploadPackV2: collected 6 objects, generating pack
14:55:15.528 [info] UploadPackV2: pack generated, 366 bytes
14:55:15.528 [info] UploadPackV2: fetch response 388 bytes
14:55:15.586 [info] UploadPackV2: processing ls-refs command
14:55:15.587 [info] UploadPackV2: processing fetch command
14:55:15.587 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:55:15.587 [info] UploadPackV2: fetch response 32 bytes
14:55:15.587 [info] UploadPackV2: processing fetch command
14:55:15.587 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:15.587 [info] UploadPackV2: collected 3 objects, generating pack
14:55:15.587 [info] UploadPackV2: pack generated, 183 bytes
14:55:15.587 [info] UploadPackV2: fetch response 205 bytes
.
14:55:15.682 [info] UploadPackV2: processing ls-refs command
14:55:15.683 [info] UploadPackV2: processing fetch command
14:55:15.683 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:15.704 [info] UploadPackV2: collected 600 objects, generating pack
14:55:15.722 [info] UploadPackV2: pack generated, 45197 bytes
14:55:15.722 [info] UploadPackV2: fetch response 45219 bytes
.
14:55:15.755 [info] UploadPackV2: processing fetch command
14:55:15.755 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:15.755 [info] UploadPackV2: collected 0 objects, generating pack
14:55:15.755 [info] UploadPackV2: pack generated, 32 bytes
14:55:15.755 [info] UploadPackV2: fetch response 54 bytes
.
14:55:16.002 [info] UploadPackV2: processing ls-refs command
.
14:55:16.050 [info] UploadPackV2: processing ls-refs command
.
14:55:16.058 [info] UploadPackV2: processing fetch command
14:55:16.058 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.058 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.058 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.058 [info] UploadPackV2: fetch response 205 bytes
14:55:16.059 [info] UploadPackV2: processing fetch command
14:55:16.059 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.059 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.059 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.059 [info] UploadPackV2: fetch response 205 bytes
14:55:16.059 [info] UploadPackV2: processing fetch command
14:55:16.059 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.059 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.059 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.060 [info] UploadPackV2: fetch response 205 bytes
14:55:16.060 [info] UploadPackV2: processing fetch command
14:55:16.060 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.060 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.060 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.060 [info] UploadPackV2: fetch response 205 bytes
14:55:16.060 [info] UploadPackV2: processing fetch command
14:55:16.060 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.060 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.060 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.060 [info] UploadPackV2: fetch response 205 bytes
14:55:16.061 [info] UploadPackV2: processing fetch command
14:55:16.061 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.061 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.061 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.061 [info] UploadPackV2: fetch response 205 bytes
14:55:16.061 [info] UploadPackV2: processing fetch command
14:55:16.061 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.061 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.061 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.061 [info] UploadPackV2: fetch response 205 bytes
14:55:16.061 [info] UploadPackV2: processing fetch command
14:55:16.061 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.062 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.062 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.062 [info] UploadPackV2: fetch response 205 bytes
14:55:16.062 [info] UploadPackV2: processing fetch command
14:55:16.062 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.062 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.062 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.062 [info] UploadPackV2: fetch response 205 bytes
14:55:16.062 [info] UploadPackV2: processing fetch command
14:55:16.062 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.063 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.063 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.063 [info] UploadPackV2: fetch response 205 bytes
14:55:16.063 [info] UploadPackV2: processing fetch command
14:55:16.063 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.063 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.063 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.063 [info] UploadPackV2: fetch response 205 bytes
14:55:16.063 [info] UploadPackV2: processing fetch command
14:55:16.063 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.063 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.063 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.064 [info] UploadPackV2: fetch response 205 bytes
14:55:16.064 [info] UploadPackV2: processing fetch command
14:55:16.064 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.064 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.064 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.064 [info] UploadPackV2: fetch response 205 bytes
14:55:16.064 [info] UploadPackV2: processing fetch command
14:55:16.064 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.064 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.064 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.064 [info] UploadPackV2: fetch response 205 bytes
14:55:16.065 [info] UploadPackV2: processing fetch command
14:55:16.065 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.065 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.065 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.065 [info] UploadPackV2: fetch response 205 bytes
14:55:16.065 [info] UploadPackV2: processing fetch command
14:55:16.065 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.065 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.065 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.065 [info] UploadPackV2: fetch response 205 bytes
14:55:16.065 [info] UploadPackV2: processing fetch command
14:55:16.065 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.066 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.066 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.066 [info] UploadPackV2: fetch response 205 bytes
14:55:16.066 [info] UploadPackV2: processing fetch command
14:55:16.066 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.066 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.066 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.066 [info] UploadPackV2: fetch response 205 bytes
14:55:16.066 [info] UploadPackV2: processing fetch command
14:55:16.066 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.066 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.066 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.067 [info] UploadPackV2: fetch response 205 bytes
14:55:16.067 [info] UploadPackV2: processing fetch command
14:55:16.067 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.067 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.067 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.067 [info] UploadPackV2: fetch response 205 bytes
14:55:16.067 [info] UploadPackV2: processing fetch command
14:55:16.067 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.067 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.067 [info] UploadPackV2: pack generated, 183 bytes
14:55:16.067 [info] UploadPackV2: fetch response 205 bytes
.
14:55:16.178 [info] UploadPackV2: processing ls-refs command
14:55:16.179 [info] UploadPackV2: processing fetch command
14:55:16.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:55:16.179 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.180 [info] UploadPackV2: pack generated, 231 bytes
14:55:16.180 [info] UploadPackV2: fetch response 327 bytes
.
14:55:16.254 [info] UploadPackV2: processing ls-refs command
14:55:16.255 [info] UploadPackV2: processing fetch command
14:55:16.255 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.261 [info] UploadPackV2: collected 240 objects, generating pack
14:55:16.265 [info] UploadPackV2: pack generated, 16258 bytes
14:55:16.265 [info] UploadPackV2: fetch response 16280 bytes
.
14:55:16.334 [info] UploadPackV2: processing ls-refs command
14:55:16.335 [info] UploadPackV2: processing fetch command
14:55:16.335 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.336 [info] UploadPackV2: collected 15 objects, generating pack
14:55:16.336 [info] UploadPackV2: pack generated, 952 bytes
14:55:16.336 [info] UploadPackV2: fetch response 974 bytes
.
14:55:16.402 [info] UploadPackV2: processing ls-refs command
14:55:16.403 [info] UploadPackV2: processing fetch command
14:55:16.403 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.403 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.403 [info] UploadPackV2: pack generated, 185 bytes
14:55:16.403 [info] UploadPackV2: fetch response 207 bytes
14:55:16.462 [info] UploadPackV2: processing ls-refs command
.
14:55:16.526 [info] UploadPackV2: processing ls-refs command
14:55:16.526 [info] UploadPackV2: processing fetch command
14:55:16.527 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:55:16.527 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.527 [info] UploadPackV2: pack generated, 200 bytes
14:55:16.527 [info] UploadPackV2: fetch response 256 bytes
.
14:55:16.582 [info] UploadPackV2: processing ls-refs command
14:55:16.583 [info] UploadPackV2: processing fetch command
14:55:16.583 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:16.584 [info] UploadPackV2: collected 3 objects, generating pack
14:55:16.584 [info] UploadPackV2: pack generated, 196 bytes
14:55:16.584 [info] UploadPackV2: fetch response 218 bytes
.
14:55:16.598 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303409695" 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
14:55:16.599 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303409663" 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
.
14:55:16.599 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303409631" 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
14:55:16.599 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303409599" 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
.
14:55:16.600 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303409950" 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
14:55:16.600 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303409567" 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
.
14:55:16.601 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303409535" 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
14:55:16.601 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303409503" 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
..
14:55:31.718 [info] UploadPackV2: processing ls-refs command
14:55:31.719 [info] UploadPackV2: processing fetch command
14:55:31.720 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:31.720 [info] UploadPackV2: collected 3 objects, generating pack
14:55:31.720 [info] UploadPackV2: pack generated, 185 bytes
14:55:31.720 [info] UploadPackV2: fetch response 207 bytes
.
14:55:31.790 [info] UploadPackV2: processing ls-refs command
14:55:31.791 [info] UploadPackV2: processing fetch command
14:55:31.792 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:31.792 [info] UploadPackV2: collected 3 objects, generating pack
14:55:31.792 [info] UploadPackV2: pack generated, 196 bytes
14:55:31.792 [info] UploadPackV2: fetch response 218 bytes
..
14:55:31.807 [info] The function passed as a handler with ID "graph-query-test-14050" 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
........
14:55:31.825 [info] The function passed as a handler with ID "graph-query-test-15524" 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
.
14:55:31.827 [info] The function passed as a handler with ID "graph-query-test-7013" 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
....
14:55:46.962 [info] UploadPackV2: processing ls-refs command
14:55:46.964 [info] UploadPackV2: processing fetch command
14:55:46.964 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:55:46.964 [info] UploadPackV2: collected 3 objects, generating pack
14:55:46.965 [info] UploadPackV2: pack generated, 183 bytes
14:55:46.965 [info] UploadPackV2: fetch response 205 bytes
.
14:56:02.102 [info] UploadPackV2: processing ls-refs command
14:56:02.104 [info] UploadPackV2: processing fetch command
14:56:02.104 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:56:02.104 [info] UploadPackV2: collected 6 objects, generating pack
14:56:02.105 [info] UploadPackV2: pack generated, 365 bytes
14:56:02.105 [info] UploadPackV2: fetch response 387 bytes
..
14:56:17.254 [info] UploadPackV2: processing ls-refs command
14:56:17.259 [info] UploadPackV2: processing fetch command
14:56:17.259 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:56:17.259 [info] UploadPackV2: collected 3 objects, generating pack
14:56:17.260 [info] UploadPackV2: pack generated, 183 bytes
14:56:17.260 [info] UploadPackV2: fetch response 205 bytes
..
14:56:32.474 [info] UploadPackV2: processing ls-refs command
14:56:32.475 [info] UploadPackV2: processing fetch command
14:56:32.476 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:56:32.476 [info] UploadPackV2: collected 3 objects, generating pack
14:56:32.476 [info] UploadPackV2: pack generated, 201 bytes
14:56:32.476 [info] UploadPackV2: fetch response 223 bytes
...
14:57:17.750 [info] UploadPackV2: processing ls-refs command
14:57:17.752 [info] UploadPackV2: processing fetch command
14:57:17.752 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:57:17.753 [info] UploadPackV2: collected 6 objects, generating pack
14:57:17.753 [info] UploadPackV2: pack generated, 365 bytes
14:57:17.753 [info] UploadPackV2: fetch response 387 bytes
......
Finished in 202.2 seconds (14.2s async, 188.0s sync)
Result: 998 passed (2 properties, 996 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info