ref:main

test cancelled

Command: set -e git config --global --add safe.directory /workspace git config --global init.defaultBranch main git config --global user.email "ci@anvil.test" git config --global user.name "CI" export MIX_HOME=/workspace/.mix mix test --cover --export-coverage default mix run --no-start -e ' tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first() if tools_ebin, do: Code.append_path(tools_ebin) :cover.start() :cover.import(~c"cover/default.coverdata") modules = :cover.imported_modules() lcov = Enum.map_join(modules, "", fn mod -> case :cover.analyse(mod, :calls, :line) do {:ok, lines} -> source = try do mod.module_info(:compile)[:source] |> to_string() |> String.replace(File.cwd!() <> "/", "") rescue _ -> nil end if source do data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end) da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end) h = Enum.count(data, fn {_, c} -> c > 0 end) "SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n" else "" end _ -> "" end end) File.write!("cover/lcov.info", lcov) IO.puts("LCOV written to cover/lcov.info") '
Runner: carl online linux/aarch64
Started: Jul 31, 2026 at 06:32 UTC Completed: Jul 31, 2026 at 06:33 UTC Duration: 40s

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 3 files (.ex)
Cover compiling modules ...
Running ExUnit with seed: 638080, max_cases: 8
Excluding tags: [:s3]
....................................................................................................................................................
06:32:30.492 [info] The function passed as a handler with ID #Reference<0.2840077493.1246756866.156938> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
848 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:848:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: 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: 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)
............................................
06:32:31.184 [info] The function passed as a handler with ID #Reference<0.2840077493.1246756867.157886> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
497 │ {_tip, parent} =
│ ~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
..........................................
06:32:31.755 [warning] post_receive hook failed: "webhook failed"
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: the variable "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
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: 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 "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: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: 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 "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1131 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1131:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1161 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1161:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
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 "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: 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
...................................................................................................................................................................................
06:32:34.544 [info] UploadPackV2: processing fetch command
06:32:34.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.546 [info] UploadPackV2: collected 15 objects, generating pack
06:32:34.546 [info] UploadPackV2: pack generated, 1068 bytes
06:32:34.546 [info] UploadPackV2: fetch response 1090 bytes
06:32:34.549 [info] UploadPackV2: processing fetch command
06:32:34.549 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.550 [info] UploadPackV2: collected 5 objects, generating pack
06:32:34.550 [info] UploadPackV2: pack generated, 424 bytes
06:32:34.550 [info] UploadPackV2: fetch response 446 bytes
06:32:34.559 [info] UploadPackV2: processing fetch command
06:32:34.560 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.560 [info] UploadPackV2: collected 17 objects, generating pack
06:32:34.561 [info] UploadPackV2: pack generated, 1278 bytes
06:32:34.561 [info] UploadPackV2: fetch response 1300 bytes
06:32:34.581 [info] UploadPackV2: processing fetch command
06:32:34.581 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.584 [info] UploadPackV2: collected 34 objects, generating pack
06:32:34.595 [info] UploadPackV2: pack generated, 2514 bytes
06:32:34.595 [info] UploadPackV2: fetch response 2536 bytes
06:32:34.606 [info] UploadPackV2: processing fetch command
06:32:34.606 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.607 [info] UploadPackV2: collected 20 objects, generating pack
06:32:34.608 [info] UploadPackV2: pack generated, 1490 bytes
06:32:34.608 [info] UploadPackV2: fetch response 1512 bytes
06:32:34.613 [info] UploadPackV2: processing fetch command
06:32:34.614 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.614 [info] UploadPackV2: collected 9 objects, generating pack
06:32:34.614 [info] UploadPackV2: pack generated, 610 bytes
06:32:34.614 [info] UploadPackV2: fetch response 632 bytes
06:32:34.619 [info] UploadPackV2: processing fetch command
06:32:34.619 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.619 [info] UploadPackV2: collected 5 objects, generating pack
06:32:34.619 [info] UploadPackV2: pack generated, 424 bytes
06:32:34.620 [info] UploadPackV2: fetch response 446 bytes
06:32:34.622 [info] UploadPackV2: processing fetch command
06:32:34.622 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.624 [info] UploadPackV2: collected 23 objects, generating pack
06:32:34.624 [info] UploadPackV2: pack generated, 1661 bytes
06:32:34.624 [info] UploadPackV2: fetch response 1683 bytes
06:32:34.631 [info] UploadPackV2: processing fetch command
06:32:34.631 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.632 [info] UploadPackV2: collected 11 objects, generating pack
06:32:34.632 [info] UploadPackV2: pack generated, 853 bytes
06:32:34.632 [info] UploadPackV2: fetch response 875 bytes
06:32:34.638 [info] UploadPackV2: processing fetch command
06:32:34.638 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.639 [info] UploadPackV2: collected 20 objects, generating pack
06:32:34.640 [info] UploadPackV2: pack generated, 1492 bytes
06:32:34.640 [info] UploadPackV2: fetch response 1514 bytes
06:32:34.650 [info] UploadPackV2: processing fetch command
06:32:34.650 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.651 [info] UploadPackV2: collected 14 objects, generating pack
06:32:34.651 [info] UploadPackV2: pack generated, 1064 bytes
06:32:34.651 [info] UploadPackV2: fetch response 1086 bytes
06:32:34.656 [info] UploadPackV2: processing fetch command
06:32:34.656 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.657 [info] UploadPackV2: collected 14 objects, generating pack
06:32:34.657 [info] UploadPackV2: pack generated, 1064 bytes
06:32:34.657 [info] UploadPackV2: fetch response 1086 bytes
06:32:34.680 [info] UploadPackV2: processing fetch command
06:32:34.713 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.715 [info] UploadPackV2: collected 28 objects, generating pack
06:32:34.715 [info] UploadPackV2: pack generated, 2085 bytes
06:32:34.715 [info] UploadPackV2: fetch response 2107 bytes
06:32:34.723 [info] UploadPackV2: processing fetch command
06:32:34.723 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.724 [info] UploadPackV2: collected 20 objects, generating pack
06:32:34.730 [info] UploadPackV2: pack generated, 1490 bytes
06:32:34.730 [info] UploadPackV2: fetch response 1512 bytes
06:32:34.734 [info] UploadPackV2: processing fetch command
06:32:34.735 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.735 [info] UploadPackV2: collected 15 objects, generating pack
.
06:32:34.736 [info] UploadPackV2: pack generated, 1068 bytes
.
06:32:34.736 [info] UploadPackV2: fetch response 1090 bytes
.
06:32:34.736 [info] UploadPackV2: processing fetch command
06:32:34.736 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:34.737 [info] UploadPackV2: collected 3 objects, generating pack
.
06:32:34.737 [info] UploadPackV2: pack generated, 195 bytes
.
06:32:34.737 [info] UploadPackV2: fetch response 217 bytes
.
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
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
06:32:34.737 [info] UploadPackV2: processing fetch command
.
06:32:34.737 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:34.737 [info] UploadPackV2: collected 0 objects, generating pack
06:32:34.737 [info] UploadPackV2: pack generated, 32 bytes
06:32:34.737 [info] UploadPackV2: fetch response 54 bytes
06:32:34.738 [info] UploadPackV2: processing fetch command
06:32:34.738 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
06:32:34.738 [info] UploadPackV2: fetch response 73 bytes
06:32:34.738 [info] UploadPackV2: processing fetch command
06:32:34.738 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
06:32:34.738 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
06:32:34.740 [info] UploadPackV2: processing fetch command
06:32:34.741 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.741 [info] UploadPackV2: collected 20 objects, generating pack
06:32:34.742 [info] UploadPackV2: pack generated, 1490 bytes
06:32:34.742 [info] UploadPackV2: fetch response 1512 bytes
06:32:34.747 [info] UploadPackV2: processing fetch command
06:32:34.747 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.748 [info] UploadPackV2: collected 18 objects, generating pack
06:32:34.748 [info] UploadPackV2: pack generated, 1281 bytes
06:32:34.748 [info] UploadPackV2: fetch response 1303 bytes
06:32:34.753 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
06:32:34.760 [info] UploadPackV2: processing fetch command
06:32:34.760 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.760 [info] UploadPackV2: collected 6 objects, generating pack
06:32:34.761 [info] UploadPackV2: pack generated, 428 bytes
06:32:34.761 [info] UploadPackV2: fetch response 450 bytes
06:32:34.763 [info] UploadPackV2: processing fetch command
06:32:34.763 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.765 [info] UploadPackV2: collected 8 objects, generating pack
06:32:34.766 [info] UploadPackV2: pack generated, 636 bytes
06:32:34.766 [info] UploadPackV2: fetch response 658 bytes
06:32:34.776 [info] UploadPackV2: processing fetch command
06:32:34.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.776 [info] UploadPackV2: collected 5 objects, generating pack
06:32:34.776 [info] UploadPackV2: pack generated, 424 bytes
06:32:34.776 [info] UploadPackV2: fetch response 446 bytes
06:32:34.781 [info] UploadPackV2: processing fetch command
06:32:34.781 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.787 [info] UploadPackV2: collected 20 objects, generating pack
06:32:34.787 [info] UploadPackV2: pack generated, 1447 bytes
06:32:34.788 [info] UploadPackV2: fetch response 1469 bytes
06:32:34.794 [info] UploadPackV2: processing fetch command
06:32:34.895 [info] UploadPackV2: processing fetch command
06:32:34.896 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:34.907 [info] UploadPackV2: collected 32 objects, generating pack
06:32:34.916 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.917 [info] UploadPackV2: collected 6 objects, generating pack
06:32:34.917 [info] UploadPackV2: pack generated, 428 bytes
06:32:34.917 [info] UploadPackV2: fetch response 450 bytes
06:32:34.920 [info] UploadPackV2: processing fetch command
06:32:34.920 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.920 [info] UploadPackV2: collected 20 objects, generating pack
06:32:34.921 [info] UploadPackV2: pack generated, 1490 bytes
06:32:34.921 [info] UploadPackV2: fetch response 1512 bytes
06:32:34.938 [info] UploadPackV2: processing fetch command
06:32:34.938 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.939 [info] UploadPackV2: collected 11 objects, generating pack
06:32:34.939 [info] UploadPackV2: pack generated, 851 bytes
06:32:34.939 [info] UploadPackV2: fetch response 873 bytes
06:32:34.948 [info] UploadPackV2: processing fetch command
06:32:34.948 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.949 [info] UploadPackV2: collected 31 objects, generating pack
06:32:34.949 [info] UploadPackV2: pack generated, 2298 bytes
06:32:34.949 [info] UploadPackV2: fetch response 2320 bytes
06:32:34.965 [info] UploadPackV2: processing fetch command
06:32:34.965 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.966 [info] UploadPackV2: collected 17 objects, generating pack
06:32:34.966 [info] UploadPackV2: pack generated, 1236 bytes
06:32:34.974 [info] UploadPackV2: fetch response 1258 bytes
06:32:34.978 [info] UploadPackV2: processing fetch command
06:32:34.979 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.979 [info] UploadPackV2: collected 12 objects, generating pack
06:32:34.980 [info] UploadPackV2: pack generated, 854 bytes
06:32:34.980 [info] UploadPackV2: fetch response 876 bytes
06:32:34.992 [info] UploadPackV2: processing fetch command
06:32:34.992 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:34.992 [info] UploadPackV2: collected 18 objects, generating pack
06:32:34.993 [info] UploadPackV2: pack generated, 1281 bytes
06:32:34.993 [info] UploadPackV2: fetch response 1303 bytes
06:32:34.999 [info] UploadPackV2: pack generated, 2459817 bytes
06:32:35.005 [info] UploadPackV2: fetch response 2460024 bytes
06:32:35.005 [info] UploadPackV2: processing fetch command
06:32:35.005 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.011 [info] UploadPackV2: processing fetch command
06:32:35.011 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.012 [info] UploadPackV2: collected 23 objects, generating pack
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
06:32:35.013 [info] UploadPackV2: pack generated, 1640 bytes
06:32:35.013 [info] UploadPackV2: fetch response 1662 bytes
06:32:35.019 [info] UploadPackV2: processing fetch command
06:32:35.019 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.021 [info] UploadPackV2: collected 33 objects, generating pack
06:32:35.021 [info] UploadPackV2: pack generated, 2317 bytes
06:32:35.021 [info] UploadPackV2: fetch response 2339 bytes
06:32:35.024 [info] UploadPackV2: collected 32 objects, streaming pack
06:32:35.030 [info] UploadPackV2: processing fetch command
06:32:35.030 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.031 [info] UploadPackV2: collected 17 objects, generating pack
06:32:35.032 [info] UploadPackV2: pack generated, 1278 bytes
06:32:35.032 [info] UploadPackV2: fetch response 1300 bytes
06:32:35.038 [info] UploadPackV2: processing fetch command
06:32:35.038 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.040 [info] UploadPackV2: collected 50 objects, generating pack
06:32:35.041 [info] UploadPackV2: pack generated, 3559 bytes
06:32:35.041 [info] UploadPackV2: fetch response 3581 bytes
06:32:35.052 [info] UploadPackV2: processing fetch command
06:32:35.052 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.053 [info] UploadPackV2: collected 31 objects, generating pack
06:32:35.053 [info] UploadPackV2: pack generated, 2298 bytes
06:32:35.053 [info] UploadPackV2: fetch response 2320 bytes
06:32:35.062 [info] UploadPackV2: processing fetch command
06:32:35.062 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.064 [info] UploadPackV2: collected 3 objects, generating pack
06:32:35.064 [info] UploadPackV2: pack generated, 214 bytes
06:32:35.074 [info] UploadPackV2: fetch response 236 bytes
06:32:35.079 [info] UploadPackV2: processing fetch command
06:32:35.079 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.080 [info] UploadPackV2: collected 6 objects, generating pack
06:32:35.080 [info] UploadPackV2: pack generated, 428 bytes
06:32:35.080 [info] UploadPackV2: fetch response 450 bytes
06:32:35.084 [info] UploadPackV2: processing fetch command
.
06:32:35.084 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.085 [info] UploadPackV2: collected 18 objects, generating pack
06:32:35.086 [info] UploadPackV2: pack generated, 1281 bytes
06:32:35.086 [info] UploadPackV2: fetch response 1303 bytes
06:32:35.094 [info] UploadPackV2: processing fetch command
06:32:35.094 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.098 [info] UploadPackV2: collected 12 objects, generating pack
06:32:35.098 [info] UploadPackV2: pack generated, 854 bytes
06:32:35.099 [info] UploadPackV2: fetch response 876 bytes
06:32:35.121 [info] UploadPackV2: processing fetch command
06:32:35.121 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.122 [info] UploadPackV2: collected 20 objects, generating pack
06:32:35.122 [info] UploadPackV2: pack generated, 1460 bytes
06:32:35.122 [info] UploadPackV2: fetch response 1482 bytes
06:32:35.130 [info] UploadPackV2: processing fetch command
06:32:35.130 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.131 [info] UploadPackV2: collected 12 objects, generating pack
06:32:35.131 [info] UploadPackV2: pack generated, 824 bytes
06:32:35.131 [info] UploadPackV2: fetch response 846 bytes
06:32:35.137 [info] UploadPackV2: processing fetch command
.
06:32:35.137 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:35.138 [info] UploadPackV2: collected 16 objects, generating pack
06:32:35.139 [info] UploadPackV2: pack generated, 1230 bytes
06:32:35.139 [info] UploadPackV2: fetch response 1252 bytes
06:32:35.148 [info] UploadPackV2: processing fetch command
06:32:35.148 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.149 [info] UploadPackV2: collected 20 objects, generating pack
06:32:35.149 [info] UploadPackV2: pack generated, 1203 bytes
06:32:35.150 [info] UploadPackV2: fetch response 1225 bytes
06:32:35.157 [info] UploadPackV2: processing fetch command
06:32:35.157 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.157 [info] UploadPackV2: collected 7 objects, generating pack
06:32:35.158 [info] UploadPackV2: pack generated, 475 bytes
06:32:35.158 [info] UploadPackV2: fetch response 497 bytes
06:32:35.165 [info] UploadPackV2: processing fetch command
06:32:35.165 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.166 [info] UploadPackV2: collected 23 objects, generating pack
06:32:35.171 [info] UploadPackV2: pack generated, 1437 bytes
06:32:35.171 [info] UploadPackV2: fetch response 1459 bytes
06:32:35.176 [info] UploadPackV2: processing fetch command
06:32:35.176 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.183 [info] UploadPackV2: collected 46 objects, generating pack
06:32:35.185 [info] UploadPackV2: pack generated, 2823 bytes
06:32:35.185 [info] UploadPackV2: fetch response 2845 bytes
06:32:35.198 [info] UploadPackV2: streamed pack 2459817 bytes, 32 objects
06:32:35.198 [info] UploadPackV2: fetch streamed 2459817 pack bytes, 32 objects
06:32:35.208 [info] UploadPackV2: processing fetch command
06:32:35.208 [info] UploadPackV2: processing fetch command
..
06:32:35.218 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.219 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.220 [info] UploadPackV2: pack generated, 1676 bytes
06:32:35.220 [info] UploadPackV2: fetch response 1698 bytes
06:32:35.226 [info] UploadPackV2: processing fetch command
06:32:35.227 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.229 [info] UploadPackV2: collected 12 objects, generating pack
06:32:35.229 [info] UploadPackV2: pack generated, 691 bytes
06:32:35.229 [info] UploadPackV2: fetch response 713 bytes
06:32:35.232 [info] UploadPackV2: processing fetch command
06:32:35.232 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.233 [info] UploadPackV2: collected 7 objects, generating pack
06:32:35.233 [info] UploadPackV2: pack generated, 475 bytes
06:32:35.233 [info] UploadPackV2: fetch response 497 bytes
06:32:35.236 [info] UploadPackV2: processing fetch command
06:32:35.236 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.238 [info] UploadPackV2: collected 31 objects, generating pack
06:32:35.238 [info] UploadPackV2: pack generated, 1865 bytes
06:32:35.238 [info] UploadPackV2: fetch response 1887 bytes
06:32:35.253 [info] UploadPackV2: processing fetch command
06:32:35.253 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.254 [info] UploadPackV2: collected 15 objects, generating pack
06:32:35.254 [info] UploadPackV2: pack generated, 958 bytes
06:32:35.254 [info] UploadPackV2: fetch response 980 bytes
06:32:35.267 [info] UploadPackV2: processing fetch command
06:32:35.267 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.268 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.269 [info] UploadPackV2: pack generated, 1678 bytes
06:32:35.269 [info] UploadPackV2: fetch response 1700 bytes
06:32:35.273 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.273 [info] UploadPackV2: collected 3 objects, generating pack
..
06:32:35.273 [info] UploadPackV2: processing fetch command
06:32:35.273 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.273 [info] UploadPackV2: pack generated, 195 bytes
06:32:35.273 [info] UploadPackV2: fetch response 217 bytes
06:32:35.274 [info] UploadPackV2: processing ls-refs command
06:32:35.274 [info] UploadPackV2: collected 19 objects, generating pack
06:32:35.274 [info] UploadPackV2: pack generated, 1196 bytes
06:32:35.274 [info] UploadPackV2: fetch response 1218 bytes
06:32:35.274 [info] UploadPackV2: processing ls-refs command
06:32:35.284 [info] UploadPackV2: processing fetch command
06:32:35.301 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.312 [info] UploadPackV2: collected 19 objects, generating pack
06:32:35.312 [info] UploadPackV2: pack generated, 1196 bytes
06:32:35.312 [info] UploadPackV2: fetch response 1218 bytes
06:32:35.326 [info] UploadPackV2: processing fetch command
06:32:35.326 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.344 [info] UploadPackV2: collected 38 objects, generating pack
06:32:35.345 [info] UploadPackV2: pack generated, 2340 bytes
06:32:35.345 [info] UploadPackV2: fetch response 2362 bytes
06:32:35.353 [info] UploadPackV2: processing fetch command
06:32:35.354 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.360 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.361 [info] UploadPackV2: pack generated, 1676 bytes
06:32:35.361 [info] UploadPackV2: fetch response 1698 bytes
06:32:35.369 [info] UploadPackV2: processing fetch command
06:32:35.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.370 [info] UploadPackV2: collected 20 objects, generating pack
06:32:35.375 [info] UploadPackV2: pack generated, 1203 bytes
06:32:35.375 [info] UploadPackV2: fetch response 1225 bytes
06:32:35.381 [info] UploadPackV2: processing fetch command
06:32:35.381 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.382 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.382 [info] UploadPackV2: pack generated, 1676 bytes
06:32:35.387 [info] UploadPackV2: fetch response 1698 bytes
06:32:35.396 [info] UploadPackV2: processing fetch command
06:32:35.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.397 [info] UploadPackV2: collected 24 objects, generating pack
06:32:35.398 [info] UploadPackV2: pack generated, 1443 bytes
06:32:35.398 [info] UploadPackV2: fetch response 1465 bytes
06:32:35.406 [info] UploadPackV2: processing fetch command
06:32:35.406 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.406 [info] UploadPackV2: collected 8 objects, generating pack
06:32:35.406 [info] UploadPackV2: pack generated, 482 bytes
06:32:35.406 [info] UploadPackV2: fetch response 504 bytes
06:32:35.412 [info] UploadPackV2: processing fetch command
06:32:35.412 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.413 [info] UploadPackV2: collected 11 objects, generating pack
06:32:35.413 [info] UploadPackV2: pack generated, 714 bytes
06:32:35.413 [info] UploadPackV2: fetch response 736 bytes
06:32:35.420 [info] UploadPackV2: processing fetch command
06:32:35.420 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.420 [info] UploadPackV2: collected 7 objects, generating pack
06:32:35.421 [info] UploadPackV2: pack generated, 475 bytes
06:32:35.421 [info] UploadPackV2: processing fetch command
06:32:35.421 [info] UploadPackV2: fetch response 497 bytes
06:32:35.421 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.431 [info] UploadPackV2: collected 32 objects, streaming pack
06:32:35.432 [info] UploadPackV2: processing fetch command
06:32:35.432 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.433 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.434 [info] UploadPackV2: pack generated, 1624 bytes
06:32:35.434 [info] UploadPackV2: fetch response 1646 bytes
06:32:35.447 [info] UploadPackV2: processing fetch command
06:32:35.447 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.448 [info] UploadPackV2: collected 8 objects, generating pack
06:32:35.448 [info] UploadPackV2: pack generated, 482 bytes
06:32:35.448 [info] UploadPackV2: fetch response 504 bytes
06:32:35.455 [info] UploadPackV2: processing fetch command
06:32:35.455 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.456 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.457 [info] UploadPackV2: pack generated, 1676 bytes
06:32:35.457 [info] UploadPackV2: fetch response 1698 bytes
06:32:35.462 [info] UploadPackV2: processing fetch command
06:32:35.462 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.462 [info] UploadPackV2: collected 15 objects, generating pack
06:32:35.463 [info] UploadPackV2: pack generated, 956 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
06:32:35.463 [info] UploadPackV2: fetch response 978 bytes
06:32:35.466 [info] UploadPackV2: processing fetch command
06:32:35.466 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.470 [info] UploadPackV2: collected 42 objects, generating pack
06:32:35.475 [info] UploadPackV2: pack generated, 2580 bytes
06:32:35.532 [info] UploadPackV2: fetch response 2602 bytes
06:32:35.548 [info] UploadPackV2: streamed pack 2459755 bytes, 32 objects
06:32:35.548 [info] UploadPackV2: fetch streamed 2459755 pack bytes, 32 objects
06:32:35.587 [info] UploadPackV2: processing fetch command
06:32:35.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.598 [info] UploadPackV2: collected 23 objects, generating pack
06:32:35.599 [info] UploadPackV2: pack generated, 1386 bytes
06:32:35.599 [info] UploadPackV2: fetch response 1408 bytes
06:32:35.603 [info] UploadPackV2: processing fetch command
06:32:35.603 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.604 [info] UploadPackV2: collected 16 objects, generating pack
06:32:35.604 [info] UploadPackV2: pack generated, 962 bytes
06:32:35.605 [info] UploadPackV2: fetch response 984 bytes
06:32:35.610 [info] UploadPackV2: processing fetch command
06:32:35.610 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.611 [info] UploadPackV2: collected 24 objects, generating pack
06:32:35.612 [info] UploadPackV2: pack generated, 1443 bytes
06:32:35.612 [info] UploadPackV2: fetch response 1465 bytes
06:32:35.616 [info] UploadPackV2: processing fetch command
06:32:35.616 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.618 [info] UploadPackV2: collected 31 objects, generating pack
06:32:35.619 [info] UploadPackV2: pack generated, 1853 bytes
06:32:35.619 [info] UploadPackV2: fetch response 1875 bytes
06:32:35.627 [info] UploadPackV2: processing fetch command
06:32:35.627 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.628 [info] UploadPackV2: collected 44 objects, generating pack
06:32:35.633 [info] UploadPackV2: pack generated, 2614 bytes
06:32:35.633 [info] UploadPackV2: fetch response 2636 bytes
06:32:35.643 [info] UploadPackV2: processing fetch command
06:32:35.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.644 [info] UploadPackV2: collected 23 objects, generating pack
06:32:35.645 [info] UploadPackV2: pack generated, 1437 bytes
06:32:35.645 [info] UploadPackV2: fetch response 1459 bytes
06:32:35.651 [info] UploadPackV2: processing fetch command
06:32:35.651 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.654 [info] UploadPackV2: collected 67 objects, generating pack
06:32:35.655 [info] UploadPackV2: pack generated, 4015 bytes
06:32:35.656 [info] UploadPackV2: fetch response 4037 bytes
06:32:35.664 [info] UploadPackV2: processing fetch command
06:32:35.664 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.666 [info] UploadPackV2: collected 42 objects, generating pack
06:32:35.667 [info] UploadPackV2: pack generated, 2580 bytes
06:32:35.667 [info] UploadPackV2: fetch response 2602 bytes
06:32:35.673 [info] UploadPackV2: processing fetch command
06:32:35.673 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.674 [info] UploadPackV2: collected 4 objects, generating pack
06:32:35.674 [info] UploadPackV2: pack generated, 241 bytes
06:32:35.674 [info] UploadPackV2: fetch response 263 bytes
06:32:35.675 [info] UploadPackV2: processing fetch command
06:32:35.675 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.676 [info] UploadPackV2: collected 8 objects, generating pack
06:32:35.676 [info] UploadPackV2: pack generated, 482 bytes
06:32:35.676 [info] UploadPackV2: fetch response 504 bytes
06:32:35.678 [info] UploadPackV2: processing fetch command
06:32:35.678 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.679 [info] UploadPackV2: collected 24 objects, generating pack
06:32:35.680 [info] UploadPackV2: pack generated, 1443 bytes
06:32:35.680 [info] UploadPackV2: fetch response 1465 bytes
06:32:35.687 [info] UploadPackV2: processing fetch command
06:32:35.687 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.688 [info] UploadPackV2: collected 16 objects, generating pack
06:32:35.688 [info] UploadPackV2: pack generated, 962 bytes
06:32:35.689 [info] UploadPackV2: fetch response 984 bytes
06:32:35.696 [info] UploadPackV2: processing fetch command
06:32:35.697 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.699 [info] UploadPackV2: collected 27 objects, generating pack
06:32:35.700 [info] UploadPackV2: pack generated, 1646 bytes
06:32:35.700 [info] UploadPackV2: fetch response 1668 bytes
06:32:35.707 [info] UploadPackV2: processing fetch command
06:32:35.707 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.708 [info] UploadPackV2: collected 16 objects, generating pack
06:32:35.708 [info] UploadPackV2: pack generated, 932 bytes
06:32:35.708 [info] UploadPackV2: fetch response 954 bytes
06:32:35.711 [info] UploadPackV2: processing fetch command
06:32:35.712 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.713 [info] UploadPackV2: collected 22 objects, generating pack
06:32:35.713 [info] UploadPackV2: pack generated, 1377 bytes
06:32:35.713 [info] UploadPackV2: fetch response 1399 bytes
06:32:35.717 [info] UploadPackV2: processing fetch command
06:32:35.717 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.718 [info] UploadPackV2: collected 31 objects, generating pack
06:32:35.719 [info] UploadPackV2: pack generated, 1865 bytes
06:32:35.719 [info] UploadPackV2: fetch response 1887 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
06:32:35.724 [info] UploadPackV2: processing fetch command
06:32:35.724 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.725 [info] UploadPackV2: collected 19 objects, generating pack
06:32:35.725 [info] UploadPackV2: pack generated, 1196 bytes
06:32:35.725 [info] UploadPackV2: fetch response 1218 bytes
06:32:35.737 [info] UploadPackV2: processing fetch command
06:32:35.737 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.737 [info] UploadPackV2: collected 11 objects, generating pack
06:32:35.737 [info] UploadPackV2: pack generated, 717 bytes
06:32:35.737 [info] UploadPackV2: fetch response 739 bytes
.
06:32:35.744 [info] UploadPackV2: processing fetch command
06:32:35.759 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:35.767 [info] UploadPackV2: collected 39 objects, generating pack
.
06:32:35.768 [info] UploadPackV2: pack generated, 2338 bytes
.
06:32:35.768 [info] UploadPackV2: fetch response 2360 bytes
........
06:32:35.773 [info] UploadPackV2: processing fetch command
.
06:32:35.773 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.774 [info] UploadPackV2: collected 23 objects, generating pack
.
06:32:35.775 [info] UploadPackV2: pack generated, 1404 bytes
.
06:32:35.775 [info] UploadPackV2: fetch response 1426 bytes
.
06:32:35.779 [info] UploadPackV2: processing fetch command
.
06:32:35.779 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
06:32:35.781 [info] UploadPackV2: collected 39 objects, generating pack
.
06:32:35.781 [info] UploadPackV2: pack generated, 2365 bytes
.
06:32:35.781 [info] UploadPackV2: fetch response 2387 bytes
.
06:32:35.786 [info] UploadPackV2: processing fetch command
.
06:32:35.786 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.787 [info] UploadPackV2: collected 16 objects, generating pack
.
06:32:35.787 [info] UploadPackV2: pack generated, 962 bytes
.
06:32:35.787 [info] UploadPackV2: fetch response 984 bytes
.
06:32:35.791 [info] UploadPackV2: processing fetch command
.
06:32:35.791 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.792 [info] UploadPackV2: collected 32 objects, generating pack
.
06:32:35.793 [info] UploadPackV2: pack generated, 1862 bytes
.
06:32:35.793 [info] UploadPackV2: fetch response 1884 bytes
.
06:32:35.797 [info] UploadPackV2: processing fetch command
.
06:32:35.798 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.799 [info] UploadPackV2: collected 27 objects, generating pack
.
06:32:35.799 [info] UploadPackV2: pack generated, 1676 bytes
.
06:32:35.799 [info] UploadPackV2: fetch response 1698 bytes
.
06:32:35.803 [info] UploadPackV2: processing fetch command
.
06:32:35.803 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.805 [info] UploadPackV2: collected 11 objects, generating pack
.
06:32:35.806 [info] UploadPackV2: pack generated, 717 bytes
.
06:32:35.806 [info] UploadPackV2: fetch response 739 bytes
.
06:32:35.827 [info] UploadPackV2: processing fetch command
.
06:32:35.827 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.828 [info] UploadPackV2: collected 34 objects, generating pack
.
06:32:35.829 [info] UploadPackV2: pack generated, 2099 bytes
.
06:32:35.829 [info] UploadPackV2: fetch response 2121 bytes
.
06:32:35.851 [info] UploadPackV2: processing fetch command
.
06:32:35.935 [info] UploadPackV2: processing fetch command
.
06:32:35.975 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.975 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.978 [info] UploadPackV2: collected 7 objects, generating pack
.
06:32:35.980 [info] UploadPackV2: pack generated, 475 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
.
06:32:35.980 [info] UploadPackV2: fetch response 497 bytes
.......
06:32:35.990 [info] UploadPackV2: processing fetch command
.
06:32:35.990 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.990 [info] UploadPackV2: collected 4 objects, generating pack
.
06:32:35.990 [info] UploadPackV2: pack generated, 241 bytes
.
06:32:35.990 [info] UploadPackV2: fetch response 263 bytes
.
06:32:35.995 [info] UploadPackV2: processing fetch command
.
06:32:35.996 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:35.996 [info] UploadPackV2: collected 4 objects, generating pack
.
06:32:35.996 [info] UploadPackV2: pack generated, 241 bytes
.
06:32:35.997 [info] UploadPackV2: fetch response 263 bytes
.
06:32:36.012 [info] UploadPackV2: processing fetch command
.
06:32:36.012 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.013 [info] UploadPackV2: collected 39 objects, generating pack
.
06:32:36.014 [info] UploadPackV2: pack generated, 2365 bytes
.
06:32:36.014 [info] UploadPackV2: fetch response 2387 bytes
.
06:32:36.028 [info] UploadPackV2: processing fetch command
.
06:32:36.028 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.029 [info] UploadPackV2: collected 44 objects, generating pack
.
06:32:36.030 [info] UploadPackV2: pack generated, 2583 bytes
.
06:32:36.030 [info] UploadPackV2: fetch response 2605 bytes
.
06:32:36.054 [info] UploadPackV2: processing fetch command
.
06:32:36.054 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.059 [info] UploadPackV2: collected 16 objects, generating pack
.
06:32:36.059 [info] UploadPackV2: pack generated, 962 bytes
.
06:32:36.059 [info] UploadPackV2: fetch response 984 bytes
.
06:32:36.064 [info] UploadPackV2: collected 600 objects, generating pack
.
06:32:36.069 [info] UploadPackV2: processing fetch command
.
06:32:36.069 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.075 [info] UploadPackV2: collected 54 objects, generating pack
.
06:32:36.076 [info] UploadPackV2: pack generated, 3304 bytes
.
06:32:36.076 [info] UploadPackV2: fetch response 3326 bytes
.
06:32:36.082 [info] UploadPackV2: pack generated, 39862 bytes
.
06:32:36.082 [info] UploadPackV2: fetch response 39884 bytes
.
06:32:36.091 [info] UploadPackV2: processing fetch command
.
06:32:36.091 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.092 [info] UploadPackV2: collected 19 objects, generating pack
.
06:32:36.092 [info] UploadPackV2: pack generated, 1194 bytes
.
06:32:36.092 [info] UploadPackV2: fetch response 1216 bytes
.
06:32:36.101 [info] UploadPackV2: processing fetch command
.
06:32:36.101 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.102 [info] UploadPackV2: collected 27 objects, generating pack
.
06:32:36.102 [info] UploadPackV2: pack generated, 1627 bytes
.
06:32:36.102 [info] UploadPackV2: fetch response 1649 bytes
.
06:32:36.110 [info] UploadPackV2: processing fetch command
.
06:32:36.110 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.116 [info] UploadPackV2: collected 35 objects, generating pack
.
06:32:36.117 [info] UploadPackV2: pack generated, 2123 bytes
.
06:32:36.117 [info] UploadPackV2: fetch response 2145 bytes
.
06:32:36.131 [info] UploadPackV2: processing fetch command
.
06:32:36.131 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.132 [info] UploadPackV2: collected 23 objects, generating pack
.
06:32:36.132 [info] UploadPackV2: pack generated, 1437 bytes
.
06:32:36.132 [info] UploadPackV2: fetch response 1459 bytes
.
06:32:36.139 [info] UploadPackV2: processing fetch command
.
06:32:36.139 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.139 [info] UploadPackV2: collected 8 objects, generating pack
.
06:32:36.140 [info] UploadPackV2: pack generated, 482 bytes
.
06:32:36.140 [info] UploadPackV2: fetch response 504 bytes
.
06:32:36.142 [info] UploadPackV2: processing fetch command
.
06:32:36.142 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.142 [info] UploadPackV2: collected 15 objects, generating pack
.
06:32:36.147 [info] UploadPackV2: pack generated, 903 bytes
.
06:32:36.147 [info] UploadPackV2: fetch response 925 bytes
.
06:32:36.150 [info] UploadPackV2: processing fetch command
.
06:32:36.150 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.164 [info] UploadPackV2: collected 31 objects, generating pack
.
06:32:36.165 [info] UploadPackV2: pack generated, 1865 bytes
.
06:32:36.165 [info] UploadPackV2: fetch response 1887 bytes
.
06:32:36.184 [info] UploadPackV2: processing fetch command
.
06:32:36.184 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.185 [info] UploadPackV2: collected 11 objects, generating pack
.
06:32:36.185 [info] UploadPackV2: pack generated, 714 bytes
.
06:32:36.185 [info] UploadPackV2: fetch response 736 bytes
.
06:32:36.191 [info] UploadPackV2: processing fetch command
.
06:32:36.191 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.192 [info] UploadPackV2: collected 8 objects, generating pack
.
06:32:36.192 [info] UploadPackV2: pack generated, 482 bytes
.
06:32:36.192 [info] UploadPackV2: fetch response 504 bytes
.
06:32:36.193 [info] UploadPackV2: processing fetch command
.
06:32:36.194 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.194 [info] UploadPackV2: collected 16 objects, generating pack
.
06:32:36.199 [info] UploadPackV2: pack generated, 962 bytes
.
06:32:36.199 [info] UploadPackV2: fetch response 984 bytes
.
06:32:36.219 [info] UploadPackV2: processing fetch command
.
06:32:36.219 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.221 [info] UploadPackV2: collected 38 objects, generating pack
.
06:32:36.224 [info] UploadPackV2: pack generated, 2341 bytes
.
06:32:36.225 [info] UploadPackV2: fetch response 2363 bytes
.
06:32:36.230 [info] UploadPackV2: processing fetch command
.
06:32:36.230 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.230 [info] UploadPackV2: collected 4 objects, generating pack
.
06:32:36.235 [info] UploadPackV2: pack generated, 241 bytes
.
06:32:36.235 [info] UploadPackV2: fetch response 263 bytes
.
06:32:36.237 [info] UploadPackV2: processing fetch command
.
06:32:36.237 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.243 [info] UploadPackV2: collected 35 objects, generating pack
.
06:32:36.281 [info] UploadPackV2: pack generated, 2107 bytes
.
06:32:36.281 [info] UploadPackV2: fetch response 2129 bytes
.
06:32:36.292 [info] UploadPackV2: processing fetch command
.
06:32:36.293 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.293 [info] UploadPackV2: collected 12 objects, generating pack
.
06:32:36.293 [info] UploadPackV2: pack generated, 723 bytes
.
06:32:36.293 [info] UploadPackV2: fetch response 745 bytes
.
06:32:36.301 [info] UploadPackV2: processing fetch command
.
06:32:36.302 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.............
06:32:36.308 [info] UploadPackV2: collected 60 objects, generating pack
.
06:32:36.309 [info] UploadPackV2: pack generated, 3544 bytes
.
06:32:36.309 [info] UploadPackV2: fetch response 3566 bytes
.
06:32:36.324 [info] UploadPackV2: processing fetch command
.
06:32:36.324 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.330 [info] UploadPackV2: collected 16 objects, generating pack
.
06:32:36.335 [info] UploadPackV2: pack generated, 962 bytes
.
06:32:36.335 [info] UploadPackV2: fetch response 984 bytes
.
06:32:36.339 [info] UploadPackV2: processing fetch command
.
06:32:36.339 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.341 [info] UploadPackV2: collected 43 objects, generating pack
.
06:32:36.341 [info] UploadPackV2: pack generated, 2585 bytes
.
06:32:36.341 [info] UploadPackV2: fetch response 2607 bytes
.
06:32:36.355 [info] UploadPackV2: processing fetch command
.
06:32:36.355 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.356 [info] UploadPackV2: collected 23 objects, generating pack
.
06:32:36.356 [info] UploadPackV2: pack generated, 1405 bytes
.
06:32:36.356 [info] UploadPackV2: fetch response 1427 bytes
.
06:32:36.364 [info] UploadPackV2: processing fetch command
.
06:32:36.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.366 [info] UploadPackV2: collected 27 objects, generating pack
.
06:32:36.375 [info] UploadPackV2: pack generated, 1678 bytes
.
06:32:36.375 [info] UploadPackV2: fetch response 1700 bytes
.
06:32:36.379 [info] UploadPackV2: processing fetch command
.
06:32:36.379 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
06:32:36.380 [info] UploadPackV2: collected 16 objects, generating pack
.
06:32:36.380 [info] UploadPackV2: pack generated, 962 bytes
.
06:32:36.380 [info] UploadPackV2: fetch response 984 bytes
.
06:32:36.385 [info] UploadPackV2: processing fetch command
.
06:32:36.385 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.386 [info] UploadPackV2: collected 4 objects, generating pack
.
06:32:36.386 [info] UploadPackV2: pack generated, 241 bytes
.
06:32:36.386 [info] UploadPackV2: fetch response 263 bytes
.
06:32:36.388 [info] UploadPackV2: processing fetch command
.
06:32:36.388 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.388 [info] UploadPackV2: collected 4 objects, generating pack
.
06:32:36.388 [info] UploadPackV2: pack generated, 241 bytes
.
06:32:36.388 [info] UploadPackV2: fetch response 263 bytes
.
06:32:36.390 [info] The function passed as a handler with ID "test-fail-#Reference<0.2840077493.1246756868.234041>" 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
.
06:32:36.390 [info] The function passed as a handler with ID "test-#Reference<0.2840077493.1246756868.234057>" 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
.
06:32:36.396 [info] UploadPackV2: processing ls-refs command
.
06:32:36.399 [info] UploadPackV2: processing fetch command
.
06:32:36.399 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.401 [info] UploadPackV2: collected 3 objects, generating pack
.
06:32:36.401 [info] UploadPackV2: pack generated, 210 bytes
.
06:32:36.401 [info] UploadPackV2: fetch response 232 bytes
.
06:32:36.608 [info] UploadPackV2: processing fetch command
.
06:32:36.658 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.659 [info] UploadPackV2: collected 3 objects, generating pack
.
06:32:36.659 [info] UploadPackV2: pack generated, 223 bytes
.
06:32:36.659 [info] UploadPackV2: fetch response 245 bytes
.
06:32:36.665 [info] UploadPackV2: processing fetch command
.
06:32:36.665 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.676 [info] UploadPackV2: collected 3 objects, streaming pack
.
06:32:36.683 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
06:32:36.683 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
06:32:36.685 [info] UploadPackV2: processing fetch command
.
06:32:36.686 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.686 [info] UploadPackV2: collected 3 objects, generating pack
.
06:32:36.686 [info] UploadPackV2: pack generated, 191 bytes
.
06:32:36.686 [info] UploadPackV2: fetch response 213 bytes
.
06:32:36.687 [info] UploadPackV2: processing fetch command
06:32:36.687 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.688 [info] UploadPackV2: collected 6 objects, generating pack
06:32:36.688 [info] UploadPackV2: pack generated, 414 bytes
06:32:36.688 [info] UploadPackV2: fetch response 436 bytes
06:32:36.689 [info] UploadPackV2: processing fetch command
06:32:36.689 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.689 [info] UploadPackV2: collected 3 objects, generating pack
06:32:36.689 [info] UploadPackV2: pack generated, 194 bytes
06:32:36.689 [info] UploadPackV2: fetch response 216 bytes
06:32:36.690 [info] UploadPackV2: processing fetch command
06:32:36.690 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.699 [info] UploadPackV2: collected 3 objects, generating pack
06:32:36.699 [info] UploadPackV2: pack generated, 191 bytes
06:32:36.699 [info] UploadPackV2: fetch response 213 bytes
06:32:36.700 [info] UploadPackV2: processing ls-refs command
06:32:36.700 [info] UploadPackV2: processing ls-refs command
06:32:36.700 [info] UploadPackV2: processing ls-refs command
06:32:36.700 [info] UploadPackV2: processing fetch command
06:32:36.701 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.701 [info] UploadPackV2: collected 3 objects, generating pack
06:32:36.701 [info] UploadPackV2: pack generated, 206 bytes
06:32:36.701 [info] UploadPackV2: fetch response 228 bytes
06:32:36.702 [info] UploadPackV2: processing fetch command
06:32:36.702 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.702 [info] UploadPackV2: collected 9 objects, streaming pack
06:32:36.704 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
06:32:36.704 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
06:32:36.705 [info] UploadPackV2: processing fetch command
06:32:36.705 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.706 [info] UploadPackV2: collected 3 objects, generating pack
.
06:32:36.706 [info] UploadPackV2: pack generated, 191 bytes
06:32:36.706 [info] UploadPackV2: fetch response 213 bytes
06:32:36.706 [info] UploadPackV2: processing fetch command
06:32:36.706 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.712 [info] UploadPackV2: collected 3 objects, streaming pack
06:32:36.713 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
06:32:36.713 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
06:32:36.721 [info] UploadPackV2: processing fetch command
06:32:36.721 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.728 [info] UploadPackV2: collected 90 objects, generating pack
06:32:36.730 [info] UploadPackV2: pack generated, 5946 bytes
06:32:36.730 [info] UploadPackV2: fetch response 5968 bytes
06:32:36.793 [info] UploadPackV2: processing fetch command
06:32:36.806 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.846 [info] UploadPackV2: collected 700 objects, generating pack
06:32:36.860 [info] UploadPackV2: pack generated, 48139 bytes
06:32:36.860 [info] UploadPackV2: fetch response 48161 bytes
.
06:32:36.907 [info] UploadPackV2: processing fetch command
.
06:32:36.907 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:32:36.908 [info] UploadPackV2: collected 15 objects, generating pack
06:32:36.908 [info] UploadPackV2: pack generated, 984 bytes
.
06:32:36.908 [info] UploadPackV2: fetch response 1006 bytes
06:32:36.908 [info] UploadPackV2: processing fetch command
06:32:36.908 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.909 [info] UploadPackV2: collected 15 objects, streaming pack
06:32:36.910 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
06:32:36.910 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
06:32:36.910 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
06:32:36.912 [info] UploadPackV2: processing fetch command
06:32:36.912 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:36.913 [info] UploadPackV2: collected 15 objects, generating pack
06:32:36.916 [info] UploadPackV2: pack generated, 984 bytes
06:32:36.917 [info] UploadPackV2: fetch response 1006 bytes
....................................................................................................................
06:32:39.195 [info] UploadPackV2: processing fetch command
06:32:39.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:39.203 [info] UploadPackV2: reused pack 12429 bytes, 160 objects
06:32:39.203 [info] UploadPackV2: fetch response 12451 bytes
...........................................................................................................................
06:32:42.652 [info] UploadPackV2: processing fetch command
06:32:42.652 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:42.663 [info] UploadPackV2: collected 163 objects, generating pack
06:32:42.670 [info] UploadPackV2: pack generated, 15094 bytes
06:32:42.670 [info] UploadPackV2: fetch response 15116 bytes
.......................
06:32:43.560 [info] UploadPackV2: processing fetch command
06:32:43.560 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:43.567 [info] UploadPackV2: reused pack 11923 bytes, 160 objects
06:32:43.567 [info] UploadPackV2: fetch response 11945 bytes
....................
06:32:58.950 [info] UploadPackV2: processing ls-refs command
06:32:58.952 [info] UploadPackV2: processing fetch command
06:32:58.952 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:58.952 [info] UploadPackV2: collected 3 objects, generating pack
06:32:58.952 [info] UploadPackV2: pack generated, 185 bytes
06:32:58.952 [info] UploadPackV2: fetch response 207 bytes
.
06:32:59.018 [info] UploadPackV2: processing ls-refs command
06:32:59.020 [info] UploadPackV2: processing fetch command
06:32:59.020 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:32:59.020 [info] UploadPackV2: collected 3 objects, generating pack
06:32:59.020 [info] UploadPackV2: pack generated, 196 bytes
06:32:59.020 [info] UploadPackV2: fetch response 218 bytes
..
06:32:59.043 [info] The function passed as a handler with ID "telemetry-test-19172" 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
06:32:59.044 [info] UploadPackV2: processing fetch command
06:32:59.044 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:32:59.044 [info] UploadPackV2: collected 3 objects, generating pack
06:32:59.044 [info] UploadPackV2: pack generated, 183 bytes
.
06:32:59.045 [info] UploadPackV2: fetch response 205 bytes
06:32:59.045 [info] The function passed as a handler with ID "telemetry-test-19204" 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
06:32:59.045 [info] UploadPackV2: processing fetch command
06:32:59.045 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:32:59.045 [info] UploadPackV2: collected 2 objects, generating pack
06:32:59.045 [info] UploadPackV2: pack generated, 169 bytes
.
06:32:59.045 [info] UploadPackV2: fetch response 191 bytes
06:32:59.048 [info] The function passed as a handler with ID "telemetry-test-19236" 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
.
06:33:14.109 [info] The function passed as a handler with ID "telemetry-test-19268" 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
06:33:14.110 [info] UploadPackV2: processing fetch command
06:33:14.110 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.110 [info] UploadPackV2: collected 3 objects, generating pack
06:33:14.110 [info] UploadPackV2: pack generated, 186 bytes
.
06:33:14.110 [info] UploadPackV2: fetch response 208 bytes
06:33:14.162 [info] UploadPackV2: processing ls-refs command
06:33:14.164 [info] UploadPackV2: processing fetch command
06:33:14.164 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.165 [info] UploadPackV2: collected 15 objects, generating pack
06:33:14.165 [info] UploadPackV2: pack generated, 952 bytes
06:33:14.165 [info] UploadPackV2: fetch response 974 bytes
.
06:33:14.242 [info] UploadPackV2: processing ls-refs command
06:33:14.243 [info] UploadPackV2: processing fetch command
06:33:14.243 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:33:14.244 [info] UploadPackV2: collected 3 objects, generating pack
06:33:14.244 [info] UploadPackV2: pack generated, 200 bytes
06:33:14.244 [info] UploadPackV2: fetch response 256 bytes
.
06:33:14.302 [info] UploadPackV2: processing ls-refs command
06:33:14.304 [info] UploadPackV2: processing fetch command
06:33:14.304 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.304 [info] UploadPackV2: collected 3 objects, generating pack
06:33:14.304 [info] UploadPackV2: pack generated, 185 bytes
06:33:14.304 [info] UploadPackV2: fetch response 207 bytes
06:33:14.362 [info] UploadPackV2: processing ls-refs command
.
06:33:14.418 [info] UploadPackV2: processing ls-refs command
06:33:14.420 [info] UploadPackV2: processing fetch command
06:33:14.420 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.420 [info] UploadPackV2: collected 3 objects, generating pack
06:33:14.420 [info] UploadPackV2: pack generated, 196 bytes
06:33:14.420 [info] UploadPackV2: fetch response 218 bytes
.
06:33:14.489 [info] UploadPackV2: processing ls-refs command
06:33:14.492 [info] UploadPackV2: processing fetch command
06:33:14.492 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.496 [info] UploadPackV2: collected 180 objects, generating pack
06:33:14.499 [info] UploadPackV2: pack generated, 11106 bytes
06:33:14.499 [info] UploadPackV2: fetch response 11128 bytes
.
06:33:14.537 [info] UploadPackV2: processing ls-refs command
06:33:14.539 [info] UploadPackV2: processing fetch command
06:33:14.539 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.540 [info] UploadPackV2: collected 15 objects, generating pack
06:33:14.541 [info] UploadPackV2: pack generated, 919 bytes
06:33:14.541 [info] UploadPackV2: fetch response 941 bytes
.
06:33:14.576 [info] UploadPackV2: processing ls-refs command
06:33:14.578 [info] UploadPackV2: processing fetch command
06:33:14.578 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.579 [info] UploadPackV2: collected 6 objects, generating pack
06:33:14.579 [info] UploadPackV2: pack generated, 366 bytes
06:33:14.579 [info] UploadPackV2: fetch response 388 bytes
06:33:14.608 [info] UploadPackV2: processing ls-refs command
.
06:33:14.633 [info] UploadPackV2: processing ls-refs command
06:33:14.636 [info] UploadPackV2: processing fetch command
06:33:14.636 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.637 [info] UploadPackV2: collected 9 objects, generating pack
06:33:14.637 [info] UploadPackV2: pack generated, 549 bytes
06:33:14.637 [info] UploadPackV2: fetch response 571 bytes
06:33:14.664 [info] UploadPackV2: processing ls-refs command
.
06:33:14.688 [info] UploadPackV2: processing ls-refs command
06:33:14.691 [info] UploadPackV2: processing fetch command
06:33:14.691 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.692 [info] UploadPackV2: collected 3 objects, generating pack
06:33:14.692 [info] UploadPackV2: pack generated, 183 bytes
06:33:14.692 [info] UploadPackV2: fetch response 205 bytes
.
06:33:14.782 [info] UploadPackV2: processing fetch command
06:33:14.782 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.783 [info] UploadPackV2: collected 3 objects, generating pack
06:33:14.783 [info] UploadPackV2: pack generated, 183 bytes
06:33:14.783 [info] UploadPackV2: fetch response 205 bytes
..
06:33:14.930 [info] UploadPackV2: processing ls-refs command
06:33:14.932 [info] UploadPackV2: processing fetch command
06:33:14.932 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:14.932 [info] UploadPackV2: collected 6 objects, generating pack
06:33:14.932 [info] UploadPackV2: pack generated, 365 bytes
06:33:14.932 [info] UploadPackV2: fetch response 387 bytes
06:33:17.154 [info] UploadPackV2: processing ls-refs command
.
06:33:17.222 [info] UploadPackV2: processing ls-refs command
06:33:17.223 [info] UploadPackV2: processing fetch command
06:33:17.223 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:33:17.224 [info] UploadPackV2: collected 3 objects, generating pack
06:33:17.224 [info] UploadPackV2: pack generated, 216 bytes
06:33:17.224 [info] UploadPackV2: fetch response 346 bytes
.
06:33:17.278 [info] UploadPackV2: processing ls-refs command
06:33:17.280 [info] UploadPackV2: processing fetch command
06:33:17.280 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:17.280 [info] UploadPackV2: collected 9 objects, generating pack
06:33:17.280 [info] UploadPackV2: pack generated, 547 bytes
06:33:17.281 [info] UploadPackV2: fetch response 569 bytes
06:33:17.366 [info] UploadPackV2: processing ls-refs command
.
06:33:17.426 [info] UploadPackV2: processing ls-refs command
06:33:17.426 [info] UploadPackV2: processing ls-refs command
06:33:17.428 [info] UploadPackV2: processing fetch command
06:33:17.428 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:17.428 [info] UploadPackV2: processing fetch command
06:33:17.429 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:17.429 [info] UploadPackV2: collected 6 objects, generating pack
06:33:17.429 [info] UploadPackV2: pack generated, 365 bytes
06:33:17.429 [info] UploadPackV2: fetch response 387 bytes
06:33:17.429 [info] UploadPackV2: collected 6 objects, generating pack
06:33:17.430 [info] UploadPackV2: pack generated, 365 bytes
06:33:17.430 [info] UploadPackV2: fetch response 387 bytes
.
06:33:17.522 [info] UploadPackV2: processing ls-refs command
06:33:17.524 [info] UploadPackV2: processing fetch command
06:33:17.524 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:17.524 [info] UploadPackV2: collected 6 objects, generating pack
06:33:17.524 [info] UploadPackV2: pack generated, 365 bytes
06:33:17.524 [info] UploadPackV2: fetch response 387 bytes
.
06:33:32.590 [info] UploadPackV2: processing ls-refs command
06:33:32.592 [info] UploadPackV2: processing fetch command
06:33:32.592 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:32.594 [info] UploadPackV2: collected 90 objects, generating pack
06:33:32.596 [info] UploadPackV2: pack generated, 5649 bytes
06:33:32.596 [info] UploadPackV2: fetch response 5671 bytes
06:33:32.874 [info] UploadPackV2: processing ls-refs command
.
06:33:32.930 [info] UploadPackV2: processing ls-refs command
06:33:32.932 [info] UploadPackV2: processing fetch command
06:33:32.932 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:32.932 [info] UploadPackV2: collected 6 objects, generating pack
06:33:32.933 [info] UploadPackV2: pack generated, 366 bytes
06:33:32.933 [info] UploadPackV2: fetch response 388 bytes
06:33:32.994 [info] UploadPackV2: processing ls-refs command
06:33:32.995 [info] UploadPackV2: processing fetch command
06:33:32.995 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
06:33:32.995 [info] UploadPackV2: fetch response 32 bytes
06:33:32.996 [info] UploadPackV2: processing fetch command
06:33:32.996 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:32.996 [info] UploadPackV2: collected 3 objects, generating pack
06:33:32.996 [info] UploadPackV2: pack generated, 183 bytes
06:33:32.996 [info] UploadPackV2: fetch response 205 bytes
.
06:33:33.003 [info] UploadPackV2: processing fetch command
06:33:33.003 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.004 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.004 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.004 [info] UploadPackV2: fetch response 205 bytes
.
06:33:33.054 [info] UploadPackV2: processing ls-refs command
06:33:33.056 [info] UploadPackV2: processing fetch command
06:33:33.056 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.056 [info] UploadPackV2: collected 6 objects, generating pack
06:33:33.056 [info] UploadPackV2: pack generated, 365 bytes
06:33:33.057 [info] UploadPackV2: fetch response 387 bytes
06:33:33.073 [info] UploadPackV2: processing fetch command
06:33:33.073 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
06:33:33.073 [info] UploadPackV2: fetch response 122 bytes
.
06:33:33.076 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303407358" 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
06:33:33.076 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303400159" 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
.
06:33:33.077 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303407326" 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
06:33:33.077 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303407294" 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
.
06:33:33.078 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303407262" 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
06:33:33.078 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303407230" 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
.
06:33:33.079 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303400127" 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
06:33:33.079 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303400095" 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
..
06:33:33.080 [info] The function passed as a handler with ID "rev-list-range-test-23458" 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
.
06:33:33.082 [info] The function passed as a handler with ID "graph-query-test-16387" 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
..
06:33:33.086 [info] The function passed as a handler with ID "graph-query-test-19332" 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
.
06:33:33.087 [info] The function passed as a handler with ID "graph-query-test-19396" 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
.
06:33:33.088 [info] The function passed as a handler with ID "rev-list-range-test-19460" 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
........
06:33:33.099 [info] The function passed as a handler with ID "rev-list-range-test-23618" 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
..
06:33:33.105 [info] UploadPackV2: processing fetch command
06:33:33.105 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.105 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.105 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.105 [info] UploadPackV2: fetch response 205 bytes
06:33:33.105 [info] UploadPackV2: processing fetch command
06:33:33.105 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.106 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.106 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.106 [info] UploadPackV2: fetch response 205 bytes
06:33:33.106 [info] UploadPackV2: processing fetch command
06:33:33.106 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.106 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.106 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.106 [info] UploadPackV2: fetch response 205 bytes
06:33:33.106 [info] UploadPackV2: processing fetch command
06:33:33.106 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.107 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.107 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.107 [info] UploadPackV2: fetch response 205 bytes
06:33:33.107 [info] UploadPackV2: processing fetch command
06:33:33.107 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.107 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.107 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.107 [info] UploadPackV2: fetch response 205 bytes
06:33:33.108 [info] UploadPackV2: processing fetch command
06:33:33.108 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.108 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.108 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.108 [info] UploadPackV2: fetch response 205 bytes
06:33:33.108 [info] UploadPackV2: processing fetch command
06:33:33.108 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.109 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.109 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.109 [info] UploadPackV2: fetch response 205 bytes
06:33:33.109 [info] UploadPackV2: processing fetch command
06:33:33.109 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.110 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.110 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.110 [info] UploadPackV2: fetch response 205 bytes
06:33:33.110 [info] UploadPackV2: processing fetch command
06:33:33.110 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.110 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.110 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.110 [info] UploadPackV2: fetch response 205 bytes
06:33:33.111 [info] UploadPackV2: processing fetch command
06:33:33.111 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.111 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.111 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.111 [info] UploadPackV2: fetch response 205 bytes
06:33:33.111 [info] UploadPackV2: processing fetch command
06:33:33.111 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.112 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.112 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.112 [info] UploadPackV2: fetch response 205 bytes
06:33:33.112 [info] UploadPackV2: processing fetch command
06:33:33.112 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.112 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.112 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.112 [info] UploadPackV2: fetch response 205 bytes
06:33:33.112 [info] UploadPackV2: processing fetch command
06:33:33.112 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.113 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.113 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.113 [info] UploadPackV2: fetch response 205 bytes
06:33:33.113 [info] UploadPackV2: processing fetch command
06:33:33.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.113 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.113 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.113 [info] UploadPackV2: fetch response 205 bytes
06:33:33.114 [info] UploadPackV2: processing fetch command
06:33:33.114 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.114 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.114 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.114 [info] UploadPackV2: fetch response 205 bytes
06:33:33.114 [info] UploadPackV2: processing fetch command
06:33:33.114 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.115 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.115 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.115 [info] UploadPackV2: fetch response 205 bytes
06:33:33.115 [info] UploadPackV2: processing fetch command
06:33:33.115 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.115 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.115 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.115 [info] UploadPackV2: fetch response 205 bytes
06:33:33.116 [info] UploadPackV2: processing fetch command
06:33:33.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.116 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.116 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.116 [info] UploadPackV2: fetch response 205 bytes
06:33:33.116 [info] UploadPackV2: processing fetch command
06:33:33.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.116 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.117 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.117 [info] UploadPackV2: fetch response 205 bytes
06:33:33.117 [info] UploadPackV2: processing fetch command
06:33:33.117 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.117 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.117 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.117 [info] UploadPackV2: fetch response 205 bytes
06:33:33.117 [info] UploadPackV2: processing fetch command
06:33:33.117 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.118 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.118 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.118 [info] UploadPackV2: fetch response 205 bytes
.
06:33:33.206 [info] UploadPackV2: processing ls-refs command
06:33:33.208 [info] UploadPackV2: processing fetch command
06:33:33.208 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.230 [info] UploadPackV2: collected 600 objects, generating pack
06:33:33.249 [info] UploadPackV2: pack generated, 45197 bytes
06:33:33.249 [info] UploadPackV2: fetch response 45219 bytes
.
06:33:33.390 [info] UploadPackV2: processing ls-refs command
06:33:33.392 [info] UploadPackV2: processing fetch command
06:33:33.392 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:33:33.392 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.392 [info] UploadPackV2: pack generated, 231 bytes
06:33:33.392 [info] UploadPackV2: fetch response 327 bytes
.
06:33:33.458 [info] UploadPackV2: processing ls-refs command
.
06:33:33.526 [info] UploadPackV2: processing ls-refs command
06:33:33.528 [info] UploadPackV2: processing fetch command
06:33:33.528 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.534 [info] UploadPackV2: collected 240 objects, generating pack
06:33:33.538 [info] UploadPackV2: pack generated, 16258 bytes
06:33:33.538 [info] UploadPackV2: fetch response 16280 bytes
.
06:33:33.562 [info] UploadPackV2: processing fetch command
06:33:33.562 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.562 [info] UploadPackV2: collected 0 objects, generating pack
06:33:33.562 [info] UploadPackV2: pack generated, 32 bytes
06:33:33.562 [info] UploadPackV2: fetch response 54 bytes
.
06:33:33.806 [info] UploadPackV2: processing ls-refs command
.
06:33:33.858 [info] UploadPackV2: processing ls-refs command
06:33:33.860 [info] UploadPackV2: processing fetch command
06:33:33.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.860 [info] UploadPackV2: collected 6 objects, generating pack
06:33:33.861 [info] UploadPackV2: pack generated, 365 bytes
06:33:33.861 [info] UploadPackV2: fetch response 387 bytes
.
06:33:33.942 [info] UploadPackV2: processing ls-refs command
06:33:33.944 [info] UploadPackV2: processing fetch command
06:33:33.944 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:33.944 [info] UploadPackV2: collected 3 objects, generating pack
06:33:33.944 [info] UploadPackV2: pack generated, 183 bytes
06:33:33.944 [info] UploadPackV2: fetch response 205 bytes
.
06:33:49.066 [info] UploadPackV2: processing ls-refs command
06:33:49.068 [info] UploadPackV2: processing fetch command
06:33:49.068 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:33:49.068 [info] UploadPackV2: reused pack 240 bytes, 3 objects
06:33:49.068 [info] UploadPackV2: fetch response 262 bytes
...
06:34:34.334 [info] UploadPackV2: processing ls-refs command
06:34:34.336 [info] UploadPackV2: processing fetch command
06:34:34.336 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:34:34.336 [info] UploadPackV2: collected 6 objects, generating pack
06:34:34.336 [info] UploadPackV2: pack generated, 365 bytes
06:34:34.337 [info] UploadPackV2: fetch response 387 bytes
...
06:35:19.622 [info] UploadPackV2: processing ls-refs command
06:35:19.624 [info] UploadPackV2: processing fetch command
06:35:19.624 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:35:19.624 [info] UploadPackV2: collected 3 objects, generating pack
06:35:19.624 [info] UploadPackV2: pack generated, 201 bytes
06:35:19.624 [info] UploadPackV2: fetch response 223 bytes
...
06:36:04.882 [info] UploadPackV2: processing ls-refs command
06:36:04.884 [info] UploadPackV2: processing fetch command
06:36:04.884 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:36:04.884 [info] UploadPackV2: collected 3 objects, generating pack
06:36:04.884 [info] UploadPackV2: pack generated, 183 bytes
06:36:04.884 [info] UploadPackV2: fetch response 205 bytes
.***********...................
06:36:05.010 [info] UploadPackV2: processing ls-refs command
06:36:05.012 [info] UploadPackV2: processing fetch command
06:36:05.012 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:36:05.012 [info] UploadPackV2: collected 9 objects, generating pack
06:36:05.012 [info] UploadPackV2: pack generated, 549 bytes
06:36:05.012 [info] UploadPackV2: fetch response 571 bytes
06:36:05.029 [info] UploadPackV2: processing fetch command
06:36:05.029 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
06:36:05.030 [info] UploadPackV2: fetch response 171 bytes
.
06:36:05.078 [info] UploadPackV2: processing ls-refs command
06:36:05.080 [info] UploadPackV2: processing fetch command
06:36:05.080 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:36:05.080 [info] UploadPackV2: collected 3 objects, generating pack
06:36:05.080 [info] UploadPackV2: pack generated, 218 bytes
06:36:05.080 [info] UploadPackV2: fetch response 314 bytes
.
06:36:05.142 [info] UploadPackV2: processing ls-refs command
.
06:36:05.190 [info] UploadPackV2: processing ls-refs command
.
06:36:05.242 [info] UploadPackV2: processing ls-refs command
06:36:05.244 [info] UploadPackV2: processing fetch command
06:36:05.244 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:36:05.245 [info] UploadPackV2: collected 9 objects, generating pack
06:36:05.245 [info] UploadPackV2: pack generated, 585 bytes
06:36:05.245 [info] UploadPackV2: fetch response 681 bytes
.
06:36:05.318 [info] UploadPackV2: processing ls-refs command
06:36:05.321 [info] UploadPackV2: processing fetch command
06:36:05.321 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:36:05.322 [info] UploadPackV2: collected 6 objects, generating pack
06:36:05.322 [info] UploadPackV2: pack generated, 513 bytes
06:36:05.322 [info] UploadPackV2: fetch response 535 bytes
.
06:36:05.390 [info] UploadPackV2: processing ls-refs command
06:36:05.393 [info] UploadPackV2: processing fetch command
06:36:05.393 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
06:36:05.394 [info] UploadPackV2: collected 5 objects, generating pack
06:36:05.394 [info] UploadPackV2: pack generated, 319 bytes
06:36:05.394 [info] UploadPackV2: fetch response 341 bytes
.
06:36:05.458 [info] UploadPackV2: processing ls-refs command
.
06:36:05.514 [info] UploadPackV2: processing ls-refs command
06:36:05.517 [info] UploadPackV2: processing fetch command
06:36:05.517 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
06:36:05.518 [info] UploadPackV2: collected 3 objects, generating pack
06:36:05.519 [info] UploadPackV2: pack generated, 381 bytes
06:36:05.519 [info] UploadPackV2: fetch response 403 bytes
.
06:36:05.586 [info] UploadPackV2: processing ls-refs command
06:36:05.589 [info] UploadPackV2: processing fetch command
06:36:05.589 [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
06:36:05.590 [info] UploadPackV2: collected 6 objects, generating pack
06:36:05.591 [info] UploadPackV2: pack generated, 513 bytes
06:36:05.591 [info] UploadPackV2: fetch response 535 bytes
.
06:36:05.658 [info] UploadPackV2: processing ls-refs command
06:36:05.661 [info] UploadPackV2: processing fetch command
06:36:05.661 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
06:36:05.662 [info] UploadPackV2: collected 3 objects, generating pack
06:36:05.662 [info] UploadPackV2: pack generated, 381 bytes
06:36:05.662 [info] UploadPackV2: fetch response 403 bytes
.
06:36:05.722 [info] UploadPackV2: processing ls-refs command
.
06:36:05.774 [info] UploadPackV2: processing ls-refs command
06:36:05.776 [info] UploadPackV2: processing fetch command
06:36:05.776 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:36:05.776 [info] UploadPackV2: collected 3 objects, generating pack
06:36:05.776 [info] UploadPackV2: pack generated, 216 bytes
06:36:05.776 [info] UploadPackV2: fetch response 312 bytes
06:36:05.838 [info] UploadPackV2: processing ls-refs command
06:36:05.839 [info] UploadPackV2: processing fetch command
06:36:05.839 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:36:05.840 [info] UploadPackV2: collected 12 objects, generating pack
06:36:05.840 [info] UploadPackV2: pack generated, 768 bytes
06:36:05.840 [info] UploadPackV2: fetch response 1002 bytes
..
06:36:05.902 [info] UploadPackV2: processing ls-refs command
06:36:05.904 [info] UploadPackV2: processing fetch command
06:36:05.904 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:36:05.904 [info] UploadPackV2: collected 3 objects, generating pack
06:36:05.904 [info] UploadPackV2: pack generated, 216 bytes
06:36:05.904 [info] UploadPackV2: fetch response 312 bytes
.....*****.......
Finished in 217.5 seconds (14.1s async, 203.4s sync)
Result: 1066 passed (2 properties, 1064 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)