ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 4 files (.ex)
Cover compiling modules ...
Running ExUnit with seed: 344045, max_cases: 8
Excluding tags: [:s3]
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
...............................................................................................
22:51:53.337 [warning] post_receive hook failed: "webhook failed"
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
....................
22:51:53.551 [info] The function passed as a handler with ID #Reference<0.518523275.4127981571.107596> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: 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)
......................................................................................................................................
22:51:54.533 [info] UploadPackV2: processing fetch command
.
22:51:54.533 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:54.533 [info] UploadPackV2: collected 3 objects, generating pack
.
22:51:54.534 [info] UploadPackV2: pack generated, 195 bytes
.
22:51:54.534 [info] UploadPackV2: fetch response 217 bytes
.
22:51:54.536 [info] UploadPackV2: processing fetch command
.
22:51:54.536 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:54.536 [info] UploadPackV2: collected 3 objects, generating pack
..
22:51:54.537 [info] UploadPackV2: pack generated, 191 bytes
.
22:51:54.537 [info] UploadPackV2: fetch response 213 bytes
22:51:54.540 [info] UploadPackV2: processing fetch command
22:51:54.540 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:54.540 [info] UploadPackV2: collected 6 objects, generating pack
22:51:54.541 [info] UploadPackV2: pack generated, 414 bytes
22:51:54.541 [info] UploadPackV2: fetch response 436 bytes
22:51:54.673 [info] UploadPackV2: processing fetch command
22:51:54.673 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
.
22:51:54.696 [info] UploadPackV2: collected 32 objects, generating pack
................
22:51:54.820 [info] UploadPackV2: pack generated, 2459815 bytes
22:51:54.826 [info] UploadPackV2: fetch response 2460022 bytes
22:51:54.826 [info] UploadPackV2: processing fetch command
22:51:54.826 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:54.846 [info] UploadPackV2: collected 32 objects, streaming pack
......
22:51:54.920 [info] UploadPackV2: processing fetch command
22:51:54.920 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:54.921 [info] UploadPackV2: collected 17 objects, generating pack
22:51:54.921 [info] UploadPackV2: pack generated, 1278 bytes
22:51:54.921 [info] UploadPackV2: fetch response 1300 bytes
22:51:54.940 [info] UploadPackV2: processing fetch command
22:51:54.940 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:54.942 [info] UploadPackV2: collected 23 objects, generating pack
22:51:54.944 [info] UploadPackV2: pack generated, 1673 bytes
22:51:54.945 [info] UploadPackV2: fetch response 1695 bytes
22:51:54.953 [info] UploadPackV2: processing fetch command
22:51:54.953 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:54.955 [info] UploadPackV2: collected 28 objects, generating pack
22:51:54.955 [info] UploadPackV2: pack generated, 2077 bytes
22:51:54.955 [info] UploadPackV2: fetch response 2099 bytes
22:51:54.965 [info] UploadPackV2: processing fetch command
22:51:54.965 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:54.965 [info] UploadPackV2: collected 14 objects, generating pack
.
22:51:54.966 [info] UploadPackV2: pack generated, 1064 bytes
22:51:54.966 [info] UploadPackV2: fetch response 1086 bytes
22:51:54.974 [info] UploadPackV2: processing fetch command
22:51:54.974 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:54.975 [info] UploadPackV2: collected 26 objects, generating pack
22:51:54.977 [info] UploadPackV2: pack generated, 1876 bytes
22:51:54.977 [info] UploadPackV2: fetch response 1898 bytes
22:51:54.987 [info] UploadPackV2: processing fetch command
22:51:54.988 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:54.991 [info] UploadPackV2: collected 17 objects, generating pack
22:51:54.992 [info] UploadPackV2: pack generated, 1278 bytes
22:51:54.992 [info] UploadPackV2: fetch response 1300 bytes
22:51:55.002 [info] UploadPackV2: processing fetch command
22:51:55.002 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.002 [info] UploadPackV2: collected 11 objects, generating pack
22:51:55.003 [info] UploadPackV2: pack generated, 853 bytes
22:51:55.003 [info] UploadPackV2: fetch response 875 bytes
22:51:55.004 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
22:51:55.004 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
22:51:55.009 [info] UploadPackV2: processing fetch command
22:51:55.009 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.010 [info] UploadPackV2: collected 18 objects, generating pack
22:51:55.015 [info] UploadPackV2: pack generated, 1281 bytes
22:51:55.015 [info] UploadPackV2: fetch response 1303 bytes
22:51:55.023 [info] UploadPackV2: processing fetch command
22:51:55.023 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.032 [info] UploadPackV2: collected 24 objects, generating pack
22:51:55.033 [info] UploadPackV2: pack generated, 1646 bytes
22:51:55.033 [info] UploadPackV2: fetch response 1668 bytes
22:51:55.065 [info] UploadPackV2: processing fetch command
22:51:55.065 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.068 [info] UploadPackV2: collected 3 objects, generating pack
22:51:55.068 [info] UploadPackV2: pack generated, 214 bytes
22:51:55.069 [info] UploadPackV2: fetch response 236 bytes
22:51:55.084 [info] UploadPackV2: processing fetch command
22:51:55.084 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.085 [info] UploadPackV2: collected 9 objects, generating pack
22:51:55.085 [info] UploadPackV2: pack generated, 642 bytes
.
22:51:55.085 [info] UploadPackV2: fetch response 664 bytes
.
22:51:55.099 [info] UploadPackV2: processing fetch command
.
22:51:55.099 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:51:55.104 [info] UploadPackV2: collected 26 objects, generating pack
.
22:51:55.105 [info] UploadPackV2: pack generated, 1870 bytes
.
22:51:55.106 [info] UploadPackV2: fetch response 1892 bytes
.
22:51:55.128 [info] UploadPackV2: processing fetch command
.
22:51:55.128 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:51:55.129 [info] UploadPackV2: collected 29 objects, generating pack
.
22:51:55.130 [info] UploadPackV2: pack generated, 2072 bytes
.
22:51:55.130 [info] UploadPackV2: fetch response 2094 bytes
.
22:51:55.136 [info] UploadPackV2: processing fetch command
.
22:51:55.136 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:51:55.136 [info] UploadPackV2: collected 18 objects, generating pack
.
22:51:55.137 [info] UploadPackV2: pack generated, 1281 bytes
.
22:51:55.137 [info] UploadPackV2: fetch response 1303 bytes
.
22:51:55.142 [info] UploadPackV2: processing fetch command
.
22:51:55.142 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.144 [info] UploadPackV2: collected 32 objects, generating pack
22:51:55.182 [info] UploadPackV2: pack generated, 2301 bytes
22:51:55.182 [info] UploadPackV2: fetch response 2323 bytes
22:51:55.195 [info] UploadPackV2: processing fetch command
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
22:51:55.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.202 [info] UploadPackV2: collected 32 objects, streaming pack
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
22:51:55.212 [info] UploadPackV2: processing fetch command
.
22:51:55.212 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.213 [info] UploadPackV2: collected 30 objects, generating pack
22:51:55.214 [info] UploadPackV2: pack generated, 2074 bytes
22:51:55.214 [info] UploadPackV2: fetch response 2096 bytes
22:51:55.232 [info] UploadPackV2: processing fetch command
22:51:55.232 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.233 [info] UploadPackV2: collected 31 objects, generating pack
22:51:55.234 [info] UploadPackV2: pack generated, 2295 bytes
22:51:55.234 [info] UploadPackV2: fetch response 2317 bytes
22:51:55.278 [info] UploadPackV2: processing fetch command
22:51:55.278 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.292 [info] UploadPackV2: collected 20 objects, generating pack
22:51:55.293 [info] UploadPackV2: pack generated, 1490 bytes
22:51:55.293 [info] UploadPackV2: fetch response 1512 bytes
22:51:55.308 [info] UploadPackV2: streamed pack 2459750 bytes, 32 objects
22:51:55.308 [info] UploadPackV2: fetch streamed 2459750 pack bytes, 32 objects
22:51:55.318 [info] UploadPackV2: processing fetch command
22:51:55.318 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.321 [info] UploadPackV2: collected 15 objects, generating pack
22:51:55.321 [info] UploadPackV2: pack generated, 1068 bytes
22:51:55.322 [info] UploadPackV2: fetch response 1090 bytes
22:51:55.330 [info] UploadPackV2: processing fetch command
22:51:55.330 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.358 [info] UploadPackV2: collected 11 objects, generating pack
22:51:55.359 [info] UploadPackV2: pack generated, 853 bytes
22:51:55.360 [info] UploadPackV2: fetch response 875 bytes
22:51:55.371 [info] UploadPackV2: processing fetch command
22:51:55.371 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.377 [info] UploadPackV2: collected 25 objects, generating pack
22:51:55.377 [info] UploadPackV2: pack generated, 1872 bytes
22:51:55.377 [info] UploadPackV2: fetch response 1894 bytes
22:51:55.393 [info] UploadPackV2: processing fetch command
22:51:55.393 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.394 [info] UploadPackV2: collected 35 objects, generating pack
22:51:55.399 [info] UploadPackV2: pack generated, 2511 bytes
22:51:55.399 [info] UploadPackV2: fetch response 2533 bytes
22:51:55.412 [info] UploadPackV2: processing fetch command
22:51:55.412 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.412 [info] UploadPackV2: collected 8 objects, generating pack
22:51:55.412 [info] UploadPackV2: pack generated, 636 bytes
22:51:55.413 [info] UploadPackV2: fetch response 658 bytes
22:51:55.420 [info] UploadPackV2: processing fetch command
22:51:55.420 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:51:55.422 [info] UploadPackV2: collected 25 objects, generating pack
.
22:51:55.422 [info] UploadPackV2: pack generated, 1871 bytes
.
22:51:55.423 [info] UploadPackV2: fetch response 1893 bytes
.
22:51:55.432 [info] UploadPackV2: processing fetch command
.
22:51:55.432 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
....
22:51:55.439 [info] UploadPackV2: collected 36 objects, generating pack
.
22:51:55.440 [info] UploadPackV2: pack generated, 2500 bytes
22:51:55.440 [info] UploadPackV2: fetch response 2522 bytes
.
22:51:55.451 [info] UploadPackV2: processing fetch command
.
22:51:55.451 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
22:51:55.451 [info] UploadPackV2: fetch response 73 bytes
.
22:51:55.451 [info] UploadPackV2: processing fetch command
.
22:51:55.451 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
22:51:55.452 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
22:51:55.452 [info] UploadPackV2: processing fetch command
.
22:51:55.453 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:55.453 [info] UploadPackV2: collected 9 objects, streaming pack
.
22:51:55.454 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
22:51:55.454 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
22:51:55.455 [info] UploadPackV2: processing ls-refs command
22:51:55.456 [info] UploadPackV2: processing fetch command
22:51:55.456 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.456 [info] UploadPackV2: collected 3 objects, streaming pack
22:51:55.456 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
22:51:55.456 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
22:51:55.456 [info] UploadPackV2: processing fetch command
22:51:55.457 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.457 [info] UploadPackV2: collected 0 objects, generating pack
22:51:55.457 [info] UploadPackV2: pack generated, 32 bytes
22:51:55.457 [info] UploadPackV2: fetch response 54 bytes
22:51:55.458 [info] UploadPackV2: processing ls-refs command
22:51:55.458 [info] UploadPackV2: processing ls-refs command
22:51:55.463 [info] UploadPackV2: processing fetch command
22:51:55.463 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.464 [info] UploadPackV2: collected 8 objects, generating pack
22:51:55.464 [info] UploadPackV2: pack generated, 639 bytes
22:51:55.464 [info] UploadPackV2: fetch response 661 bytes
22:51:55.473 [info] UploadPackV2: processing fetch command
22:51:55.473 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.473 [info] UploadPackV2: collected 6 objects, generating pack
22:51:55.474 [info] UploadPackV2: pack generated, 428 bytes
22:51:55.474 [info] UploadPackV2: fetch response 450 bytes
22:51:55.479 [info] UploadPackV2: processing fetch command
22:51:55.479 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.484 [info] UploadPackV2: collected 20 objects, generating pack
22:51:55.484 [info] UploadPackV2: pack generated, 1492 bytes
22:51:55.484 [info] UploadPackV2: fetch response 1514 bytes
22:51:55.506 [info] UploadPackV2: processing fetch command
22:51:55.506 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.512 [info] UploadPackV2: collected 14 objects, generating pack
.
22:51:55.547 [info] UploadPackV2: pack generated, 1064 bytes
22:51:55.547 [info] UploadPackV2: fetch response 1086 bytes
22:51:55.552 [info] UploadPackV2: processing fetch command
22:51:55.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.560 [info] UploadPackV2: collected 18 objects, generating pack
22:51:55.560 [info] UploadPackV2: pack generated, 1281 bytes
22:51:55.560 [info] UploadPackV2: fetch response 1303 bytes
22:51:55.565 [info] UploadPackV2: processing fetch command
22:51:55.565 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.565 [info] UploadPackV2: collected 9 objects, generating pack
22:51:55.566 [info] UploadPackV2: pack generated, 642 bytes
22:51:55.566 [info] UploadPackV2: fetch response 664 bytes
22:51:55.570 [info] UploadPackV2: processing fetch command
22:51:55.570 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.572 [info] UploadPackV2: collected 18 objects, generating pack
22:51:55.573 [info] UploadPackV2: pack generated, 1281 bytes
22:51:55.573 [info] UploadPackV2: fetch response 1303 bytes
22:51:55.590 [info] UploadPackV2: processing fetch command
22:51:55.591 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.598 [info] UploadPackV2: collected 31 objects, generating pack
22:51:55.599 [info] UploadPackV2: pack generated, 2299 bytes
22:51:55.599 [info] UploadPackV2: fetch response 2321 bytes
22:51:55.622 [info] UploadPackV2: processing fetch command
22:51:55.622 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.622 [info] UploadPackV2: collected 6 objects, generating pack
22:51:55.622 [info] UploadPackV2: pack generated, 428 bytes
22:51:55.622 [info] UploadPackV2: fetch response 450 bytes
22:51:55.625 [info] UploadPackV2: processing fetch command
22:51:55.625 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.627 [info] UploadPackV2: collected 17 objects, generating pack
22:51:55.628 [info] UploadPackV2: pack generated, 1216 bytes
.
22:51:55.629 [info] UploadPackV2: fetch response 1238 bytes
.
22:51:55.637 [info] UploadPackV2: processing ls-refs command
.
22:51:55.641 [info] UploadPackV2: processing fetch command
22:51:55.704 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.706 [info] UploadPackV2: collected 25 objects, generating pack
22:51:55.706 [info] UploadPackV2: processing fetch command
22:51:55.707 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.707 [info] UploadPackV2: pack generated, 1872 bytes
22:51:55.707 [info] UploadPackV2: fetch response 1894 bytes
22:51:55.709 [info] UploadPackV2: collected 3 objects, generating pack
22:51:55.709 [info] UploadPackV2: pack generated, 210 bytes
22:51:55.709 [info] UploadPackV2: fetch response 232 bytes
22:51:55.717 [info] UploadPackV2: processing fetch command
22:51:55.718 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.719 [info] UploadPackV2: collected 9 objects, generating pack
22:51:55.720 [info] UploadPackV2: pack generated, 642 bytes
22:51:55.720 [info] UploadPackV2: fetch response 664 bytes
22:51:55.724 [info] UploadPackV2: processing fetch command
22:51:55.725 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.726 [info] UploadPackV2: collected 8 objects, generating pack
22:51:55.726 [info] UploadPackV2: pack generated, 636 bytes
22:51:55.727 [info] UploadPackV2: fetch response 658 bytes
22:51:55.733 [info] UploadPackV2: processing fetch command
22:51:55.733 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:51:55.735 [info] UploadPackV2: collected 20 objects, generating pack
22:51:55.735 [info] UploadPackV2: pack generated, 1492 bytes
22:51:55.736 [info] UploadPackV2: fetch response 1514 bytes
22:51:55.748 [info] UploadPackV2: processing fetch command
22:51:55.748 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:51:55.748 [info] UploadPackV2: collected 11 objects, generating pack
22:51:55.749 [info] UploadPackV2: pack generated, 853 bytes
22:51:55.749 [info] UploadPackV2: fetch response 875 bytes
22:51:55.754 [info] UploadPackV2: processing fetch command
22:51:55.754 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.755 [info] UploadPackV2: collected 23 objects, generating pack
22:51:55.755 [info] UploadPackV2: pack generated, 1437 bytes
22:51:55.755 [info] UploadPackV2: fetch response 1459 bytes
22:51:55.760 [info] UploadPackV2: processing fetch command
22:51:55.761 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.764 [info] UploadPackV2: collected 31 objects, generating pack
22:51:55.766 [info] UploadPackV2: pack generated, 1886 bytes
22:51:55.766 [info] UploadPackV2: fetch response 1908 bytes
22:51:55.775 [info] UploadPackV2: processing fetch command
22:51:55.775 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.779 [info] UploadPackV2: collected 38 objects, generating pack
22:51:55.780 [info] UploadPackV2: pack generated, 2332 bytes
22:51:55.780 [info] UploadPackV2: fetch response 2354 bytes
.
22:51:55.793 [info] UploadPackV2: processing fetch command
22:51:55.793 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.795 [info] UploadPackV2: collected 19 objects, generating pack
22:51:55.795 [info] UploadPackV2: pack generated, 1196 bytes
22:51:55.795 [info] UploadPackV2: fetch response 1218 bytes
22:51:55.800 [info] UploadPackV2: processing fetch command
22:51:55.800 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.801 [info] UploadPackV2: collected 35 objects, generating pack
22:51:55.802 [info] UploadPackV2: pack generated, 2107 bytes
22:51:55.802 [info] UploadPackV2: fetch response 2129 bytes
22:51:55.812 [info] UploadPackV2: processing fetch command
22:51:55.812 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.826 [info] UploadPackV2: collected 23 objects, generating pack
22:51:55.828 [info] UploadPackV2: pack generated, 1437 bytes
22:51:55.828 [info] UploadPackV2: fetch response 1459 bytes
22:51:55.837 [info] UploadPackV2: processing ls-refs command
.
22:51:55.837 [info] UploadPackV2: processing fetch command
....
22:51:55.837 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:55.837 [info] UploadPackV2: collected 3 objects, generating pack
.
22:51:55.837 [info] UploadPackV2: pack generated, 191 bytes
.
22:51:55.837 [info] UploadPackV2: fetch response 213 bytes
22:51:55.838 [info] UploadPackV2: processing fetch command
22:51:55.838 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.838 [info] UploadPackV2: collected 3 objects, generating pack
22:51:55.838 [info] UploadPackV2: pack generated, 191 bytes
22:51:55.838 [info] UploadPackV2: fetch response 213 bytes
22:51:55.841 [info] UploadPackV2: processing fetch command
22:51:55.842 [info] UploadPackV2: processing fetch command
22:51:55.842 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.843 [info] UploadPackV2: collected 3 objects, generating pack
22:51:55.843 [info] UploadPackV2: pack generated, 194 bytes
22:51:55.843 [info] UploadPackV2: fetch response 216 bytes
22:51:55.844 [info] UploadPackV2: processing fetch command
22:51:55.844 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.845 [info] UploadPackV2: collected 15 objects, generating pack
22:51:55.845 [info] UploadPackV2: pack generated, 984 bytes
22:51:55.845 [info] UploadPackV2: fetch response 1006 bytes
22:51:55.845 [info] UploadPackV2: processing fetch command
22:51:55.846 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.846 [info] UploadPackV2: collected 15 objects, streaming pack
22:51:55.841 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.850 [info] UploadPackV2: collected 15 objects, generating pack
22:51:55.851 [info] UploadPackV2: pack generated, 958 bytes
22:51:55.851 [info] UploadPackV2: fetch response 980 bytes
22:51:55.858 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
22:51:55.858 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
22:51:55.861 [info] UploadPackV2: processing fetch command
22:51:55.861 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.864 [info] UploadPackV2: processing fetch command
22:51:55.864 [info] UploadPackV2: collected 24 objects, generating pack
22:51:55.864 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.865 [info] UploadPackV2: pack generated, 1443 bytes
22:51:55.865 [info] UploadPackV2: fetch response 1465 bytes
22:51:55.868 [info] UploadPackV2: collected 15 objects, generating pack
22:51:55.871 [info] UploadPackV2: pack generated, 984 bytes
22:51:55.871 [info] UploadPackV2: fetch response 1006 bytes
22:51:55.876 [info] UploadPackV2: processing fetch command
22:51:55.963 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.965 [info] UploadPackV2: collected 32 objects, generating pack
22:51:55.965 [info] UploadPackV2: pack generated, 1862 bytes
22:51:55.965 [info] UploadPackV2: fetch response 1884 bytes
.
22:51:55.966 [info] UploadPackV2: processing fetch command
22:51:55.966 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.969 [info] UploadPackV2: processing fetch command
22:51:55.969 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.969 [info] UploadPackV2: collected 4 objects, generating pack
22:51:55.969 [info] UploadPackV2: pack generated, 241 bytes
.
22:51:55.969 [info] UploadPackV2: fetch response 263 bytes
22:51:55.972 [info] UploadPackV2: processing fetch command
22:51:55.972 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.973 [info] UploadPackV2: collected 12 objects, generating pack
22:51:55.973 [info] UploadPackV2: pack generated, 723 bytes
22:51:55.973 [info] UploadPackV2: fetch response 745 bytes
22:51:55.976 [info] UploadPackV2: processing fetch command
22:51:55.976 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.977 [info] UploadPackV2: collected 35 objects, generating pack
22:51:55.978 [info] UploadPackV2: pack generated, 2101 bytes
22:51:55.978 [info] UploadPackV2: fetch response 2123 bytes
22:51:55.984 [info] UploadPackV2: processing fetch command
22:51:55.984 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.985 [info] UploadPackV2: collected 39 objects, generating pack
22:51:55.986 [info] UploadPackV2: pack generated, 2339 bytes
22:51:55.987 [info] UploadPackV2: fetch response 2361 bytes
22:51:55.992 [info] UploadPackV2: processing fetch command
22:51:55.992 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:55.993 [info] UploadPackV2: collected 24 objects, generating pack
22:51:55.993 [info] UploadPackV2: pack generated, 1443 bytes
22:51:55.993 [info] UploadPackV2: fetch response 1465 bytes
22:51:56.006 [info] UploadPackV2: collected 700 objects, generating pack
22:51:56.007 [info] UploadPackV2: processing fetch command
22:51:56.007 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.009 [info] UploadPackV2: collected 43 objects, generating pack
22:51:56.010 [info] UploadPackV2: pack generated, 2586 bytes
22:51:56.010 [info] UploadPackV2: fetch response 2608 bytes
22:51:56.027 [info] UploadPackV2: pack generated, 48139 bytes
....
22:51:56.027 [info] UploadPackV2: fetch response 48161 bytes
22:51:56.035 [info] UploadPackV2: processing fetch command
22:51:56.035 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.037 [info] UploadPackV2: collected 40 objects, generating pack
22:51:56.037 [info] UploadPackV2: pack generated, 2344 bytes
22:51:56.037 [info] UploadPackV2: fetch response 2366 bytes
22:51:56.052 [info] UploadPackV2: processing fetch command
.
22:51:56.052 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.058 [info] UploadPackV2: collected 42 objects, generating pack
.
22:51:56.099 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
22:51:56.119 [info] UploadPackV2: pack generated, 2577 bytes
22:51:56.119 [info] UploadPackV2: fetch response 2599 bytes
22:51:56.121 [info] UploadPackV2: processing fetch command
22:51:56.121 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.121 [info] UploadPackV2: collected 3 objects, streaming pack
22:51:56.125 [info] UploadPackV2: processing fetch command
22:51:56.126 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.127 [info] UploadPackV2: collected 27 objects, generating pack
22:51:56.127 [info] UploadPackV2: pack generated, 1676 bytes
22:51:56.127 [info] UploadPackV2: fetch response 1698 bytes
22:51:56.129 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
22:51:56.129 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
22:51:56.131 [info] UploadPackV2: processing fetch command
22:51:56.131 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.132 [info] UploadPackV2: collected 20 objects, generating pack
22:51:56.132 [info] UploadPackV2: pack generated, 1203 bytes
22:51:56.132 [info] UploadPackV2: fetch response 1225 bytes
22:51:56.135 [info] UploadPackV2: processing fetch command
22:51:56.135 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.135 [info] UploadPackV2: collected 3 objects, generating pack
22:51:56.135 [info] UploadPackV2: processing fetch command
22:51:56.135 [info] UploadPackV2: pack generated, 223 bytes
22:51:56.136 [info] UploadPackV2: fetch response 245 bytes
22:51:56.135 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.142 [info] UploadPackV2: collected 15 objects, generating pack
22:51:56.142 [info] UploadPackV2: pack generated, 958 bytes
22:51:56.143 [info] UploadPackV2: fetch response 980 bytes
22:51:56.150 [info] UploadPackV2: processing fetch command
22:51:56.150 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.152 [info] UploadPackV2: collected 34 objects, generating pack
22:51:56.153 [info] UploadPackV2: pack generated, 2100 bytes
22:51:56.153 [info] UploadPackV2: fetch response 2122 bytes
22:51:56.184 [info] UploadPackV2: processing fetch command
22:51:56.184 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.185 [info] UploadPackV2: collected 47 objects, generating pack
22:51:56.187 [info] UploadPackV2: pack generated, 2823 bytes
22:51:56.187 [info] UploadPackV2: fetch response 2845 bytes
22:51:56.203 [info] UploadPackV2: processing fetch command
22:51:56.203 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.203 [info] UploadPackV2: collected 11 objects, generating pack
.
22:51:56.203 [info] UploadPackV2: pack generated, 714 bytes
22:51:56.203 [info] UploadPackV2: fetch response 736 bytes
22:51:56.206 [info] UploadPackV2: processing fetch command
22:51:56.206 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.209 [info] UploadPackV2: collected 34 objects, generating pack
22:51:56.210 [info] UploadPackV2: pack generated, 2099 bytes
22:51:56.210 [info] UploadPackV2: fetch response 2121 bytes
22:51:56.221 [info] UploadPackV2: processing fetch command
22:51:56.221 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.225 [info] UploadPackV2: processing fetch command
22:51:56.225 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.228 [info] UploadPackV2: collected 48 objects, generating pack
22:51:56.229 [info] UploadPackV2: pack generated, 2824 bytes
22:51:56.229 [info] UploadPackV2: fetch response 2846 bytes
22:51:56.241 [info] UploadPackV2: processing fetch command
22:51:56.241 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.241 [info] UploadPackV2: collected 11 objects, generating pack
22:51:56.242 [info] UploadPackV2: pack generated, 717 bytes
22:51:56.242 [info] UploadPackV2: fetch response 739 bytes
22:51:56.258 [info] UploadPackV2: processing fetch command
22:51:56.260 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.260 [info] UploadPackV2: collected 8 objects, generating pack
22:51:56.264 [info] UploadPackV2: pack generated, 482 bytes
22:51:56.264 [info] UploadPackV2: fetch response 504 bytes
22:51:56.276 [info] UploadPackV2: collected 600 objects, generating pack
22:51:56.277 [info] UploadPackV2: processing fetch command
22:51:56.277 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.278 [info] UploadPackV2: collected 27 objects, generating pack
22:51:56.279 [info] UploadPackV2: pack generated, 1678 bytes
22:51:56.279 [info] UploadPackV2: fetch response 1700 bytes
22:51:56.287 [info] UploadPackV2: processing fetch command
22:51:56.287 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.295 [info] UploadPackV2: collected 19 objects, generating pack
22:51:56.296 [info] UploadPackV2: pack generated, 1196 bytes
22:51:56.296 [info] UploadPackV2: fetch response 1218 bytes
22:51:56.300 [info] UploadPackV2: processing fetch command
22:51:56.300 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.301 [info] UploadPackV2: pack generated, 39862 bytes
22:51:56.301 [info] UploadPackV2: fetch response 39884 bytes
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
22:51:56.307 [info] UploadPackV2: collected 24 objects, generating pack
22:51:56.308 [info] UploadPackV2: pack generated, 1443 bytes
22:51:56.308 [info] UploadPackV2: fetch response 1465 bytes
22:51:56.319 [info] UploadPackV2: processing fetch command
.
22:51:56.319 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.326 [info] UploadPackV2: collected 12 objects, generating pack
.
22:51:56.326 [info] UploadPackV2: pack generated, 723 bytes
22:51:56.327 [info] UploadPackV2: fetch response 745 bytes
.
22:51:56.334 [info] UploadPackV2: processing fetch command
22:51:56.334 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.340 [info] UploadPackV2: collected 24 objects, generating pack
22:51:56.341 [info] UploadPackV2: pack generated, 1443 bytes
22:51:56.341 [info] UploadPackV2: fetch response 1465 bytes
22:51:56.356 [info] UploadPackV2: processing fetch command
22:51:56.356 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.357 [info] UploadPackV2: collected 42 objects, generating pack
22:51:56.358 [info] UploadPackV2: pack generated, 2581 bytes
22:51:56.358 [info] UploadPackV2: fetch response 2603 bytes
22:51:56.364 [info] UploadPackV2: processing fetch command
22:51:56.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.369 [info] UploadPackV2: collected 8 objects, generating pack
22:51:56.369 [info] UploadPackV2: pack generated, 482 bytes
..
22:51:56.369 [info] UploadPackV2: fetch response 504 bytes
.
22:51:56.372 [info] UploadPackV2: processing fetch command
.
22:51:56.372 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.373 [info] UploadPackV2: processing fetch command
.
22:51:56.373 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.373 [info] UploadPackV2: collected 3 objects, generating pack
..
22:51:56.373 [info] UploadPackV2: pack generated, 195 bytes
.
22:51:56.373 [info] UploadPackV2: fetch response 217 bytes
.
22:51:56.373 [info] UploadPackV2: collected 23 objects, generating pack
.
22:51:56.373 [info] UploadPackV2: pack generated, 1375 bytes
.
22:51:56.374 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
22:51:56.374 [info] UploadPackV2: fetch response 1397 bytes
.
22:51:56.382 [info] UploadPackV2: processing fetch command
.
22:51:56.382 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.385 [info] UploadPackV2: collected 34 objects, generating pack
.
22:51:56.387 [info] UploadPackV2: processing fetch command
.
22:51:56.387 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.390 [info] UploadPackV2: collected 90 objects, generating pack
.
22:51:56.391 [info] UploadPackV2: pack generated, 2100 bytes
.
22:51:56.391 [info] UploadPackV2: fetch response 2122 bytes
.
22:51:56.396 [info] UploadPackV2: pack generated, 5946 bytes
.
22:51:56.396 [info] UploadPackV2: fetch response 5968 bytes
.
22:51:56.401 [info] UploadPackV2: processing fetch command
.
22:51:56.401 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.402 [info] UploadPackV2: collected 12 objects, generating pack
.
22:51:56.402 [info] UploadPackV2: pack generated, 723 bytes
.
22:51:56.402 [info] UploadPackV2: fetch response 745 bytes
22:51:56.408 [info] UploadPackV2: processing fetch command
.
22:51:56.408 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.409 [info] UploadPackV2: collected 11 objects, generating pack
.
22:51:56.409 [info] UploadPackV2: pack generated, 714 bytes
.
22:51:56.409 [info] UploadPackV2: fetch response 736 bytes
.
22:51:56.412 [info] UploadPackV2: processing ls-refs command
.
22:51:56.412 [info] UploadPackV2: processing fetch command
.
22:51:56.412 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.413 [info] UploadPackV2: collected 3 objects, generating pack
.
22:51:56.413 [info] UploadPackV2: pack generated, 206 bytes
.
22:51:56.413 [info] UploadPackV2: fetch response 228 bytes
22:51:56.414 [info] UploadPackV2: processing fetch command
.
22:51:56.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.511 [info] UploadPackV2: collected 27 objects, generating pack
.
22:51:56.512 [info] UploadPackV2: pack generated, 1678 bytes
.......
22:51:56.512 [info] UploadPackV2: fetch response 1700 bytes
22:51:56.524 [info] UploadPackV2: processing fetch command
22:51:56.524 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.531 [info] UploadPackV2: collected 15 objects, generating pack
22:51:56.531 [info] UploadPackV2: pack generated, 958 bytes
22:51:56.531 [info] UploadPackV2: fetch response 980 bytes
22:51:56.539 [info] UploadPackV2: processing fetch command
22:51:56.539 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.541 [info] UploadPackV2: collected 16 objects, generating pack
22:51:56.542 [info] UploadPackV2: pack generated, 901 bytes
22:51:56.542 [info] UploadPackV2: fetch response 923 bytes
22:51:56.558 [info] UploadPackV2: processing fetch command
22:51:56.559 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.560 [info] UploadPackV2: collected 38 objects, generating pack
22:51:56.561 [info] UploadPackV2: pack generated, 2341 bytes
22:51:56.561 [info] UploadPackV2: fetch response 2363 bytes
22:51:56.568 [info] UploadPackV2: processing fetch command
22:51:56.568 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.569 [info] UploadPackV2: collected 40 objects, generating pack
22:51:56.570 [info] UploadPackV2: pack generated, 2373 bytes
22:51:56.570 [info] UploadPackV2: fetch response 2395 bytes
22:51:56.577 [info] UploadPackV2: processing fetch command
22:51:56.577 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.578 [info] UploadPackV2: collected 7 objects, generating pack
22:51:56.578 [info] UploadPackV2: pack generated, 475 bytes
22:51:56.578 [info] UploadPackV2: fetch response 497 bytes
.
22:51:56.585 [info] UploadPackV2: processing fetch command
22:51:56.585 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.586 [info] UploadPackV2: collected 20 objects, generating pack
22:51:56.586 [info] UploadPackV2: pack generated, 1203 bytes
22:51:56.586 [info] UploadPackV2: fetch response 1225 bytes
22:51:56.593 [info] UploadPackV2: processing fetch command
22:51:56.593 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.599 [info] UploadPackV2: collected 31 objects, generating pack
22:51:56.603 [info] UploadPackV2: pack generated, 1883 bytes
22:51:56.603 [info] UploadPackV2: fetch response 1905 bytes
22:51:56.610 [info] UploadPackV2: processing fetch command
22:51:56.610 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.617 [info] UploadPackV2: collected 7 objects, generating pack
22:51:56.617 [info] UploadPackV2: pack generated, 475 bytes
22:51:56.617 [info] UploadPackV2: fetch response 497 bytes
22:51:56.632 [info] UploadPackV2: processing fetch command
22:51:56.632 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.633 [info] UploadPackV2: collected 24 objects, generating pack
22:51:56.633 [info] UploadPackV2: pack generated, 1443 bytes
22:51:56.633 [info] UploadPackV2: fetch response 1465 bytes
22:51:56.638 [info] UploadPackV2: processing fetch command
22:51:56.638 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.641 [info] UploadPackV2: collected 35 objects, generating pack
22:51:56.641 [info] UploadPackV2: pack generated, 2105 bytes
22:51:56.641 [info] UploadPackV2: fetch response 2127 bytes
22:51:56.646 [info] UploadPackV2: processing fetch command
22:51:56.646 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.646 [info] UploadPackV2: collected 23 objects, generating pack
22:51:56.647 [info] UploadPackV2: pack generated, 1435 bytes
22:51:56.647 [info] UploadPackV2: fetch response 1457 bytes
22:51:56.659 [info] UploadPackV2: processing fetch command
22:51:56.659 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.659 [info] UploadPackV2: collected 8 objects, generating pack
22:51:56.659 [info] UploadPackV2: pack generated, 482 bytes
22:51:56.662 [info] UploadPackV2: fetch response 504 bytes
22:51:56.663 [info] UploadPackV2: processing fetch command
22:51:56.664 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.664 [info] UploadPackV2: collected 15 objects, generating pack
22:51:56.664 [info] UploadPackV2: pack generated, 894 bytes
22:51:56.664 [info] UploadPackV2: fetch response 916 bytes
22:51:56.672 [info] UploadPackV2: processing fetch command
22:51:56.672 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.673 [info] UploadPackV2: collected 47 objects, generating pack
22:51:56.674 [info] UploadPackV2: pack generated, 2828 bytes
22:51:56.674 [info] UploadPackV2: fetch response 2850 bytes
22:51:56.691 [info] UploadPackV2: processing fetch command
22:51:56.840 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.845 [info] UploadPackV2: collected 27 objects, generating pack
22:51:56.846 [info] UploadPackV2: pack generated, 1627 bytes
22:51:56.846 [info] UploadPackV2: fetch response 1649 bytes
22:51:56.852 [info] UploadPackV2: processing fetch command
22:51:56.852 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.852 [info] UploadPackV2: collected 20 objects, generating pack
22:51:56.853 [info] UploadPackV2: pack generated, 1203 bytes
22:51:56.853 [info] UploadPackV2: fetch response 1225 bytes
22:51:56.857 [info] UploadPackV2: processing fetch command
22:51:56.857 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.858 [info] UploadPackV2: collected 27 objects, generating pack
22:51:56.859 [info] UploadPackV2: pack generated, 1678 bytes
22:51:56.859 [info] UploadPackV2: fetch response 1700 bytes
22:51:56.864 [info] UploadPackV2: processing fetch command
22:51:56.864 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.865 [info] UploadPackV2: collected 7 objects, generating pack
22:51:56.865 [info] UploadPackV2: pack generated, 475 bytes
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
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
22:51:56.865 [info] UploadPackV2: fetch response 497 bytes
22:51:56.868 [info] UploadPackV2: processing fetch command
22:51:56.868 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.869 [info] UploadPackV2: collected 19 objects, generating pack
22:51:56.870 [info] UploadPackV2: pack generated, 1194 bytes
22:51:56.870 [info] UploadPackV2: fetch response 1216 bytes
22:51:56.874 [info] UploadPackV2: processing fetch command
22:51:56.874 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.875 [info] UploadPackV2: collected 32 objects, generating pack
22:51:56.876 [info] UploadPackV2: pack generated, 1892 bytes
22:51:56.876 [info] UploadPackV2: fetch response 1914 bytes
22:51:56.883 [info] UploadPackV2: processing fetch command
22:51:56.883 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.885 [info] UploadPackV2: collected 51 objects, generating pack
22:51:56.886 [info] UploadPackV2: pack generated, 3070 bytes
22:51:56.886 [info] UploadPackV2: fetch response 3092 bytes
22:51:56.893 [info] UploadPackV2: processing fetch command
22:51:56.893 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.894 [info] UploadPackV2: collected 27 objects, generating pack
22:51:56.894 [info] UploadPackV2: pack generated, 1678 bytes
22:51:56.894 [info] UploadPackV2: fetch response 1700 bytes
22:51:56.897 [info] UploadPackV2: processing fetch command
22:51:56.897 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.897 [info] UploadPackV2: collected 7 objects, generating pack
22:51:56.898 [info] UploadPackV2: pack generated, 475 bytes
22:51:56.898 [info] UploadPackV2: fetch response 497 bytes
22:51:56.900 [info] UploadPackV2: processing fetch command
22:51:56.900 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.901 [info] UploadPackV2: collected 19 objects, generating pack
22:51:56.901 [info] UploadPackV2: pack generated, 1146 bytes
22:51:56.901 [info] UploadPackV2: fetch response 1168 bytes
22:51:56.905 [info] UploadPackV2: processing fetch command
22:51:56.905 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:51:56.906 [info] UploadPackV2: collected 47 objects, generating pack
22:51:56.908 [info] UploadPackV2: pack generated, 2828 bytes
22:51:56.908 [info] UploadPackV2: fetch response 2850 bytes
22:51:56.921 [info] UploadPackV2: processing fetch command
22:51:56.921 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.922 [info] UploadPackV2: collected 34 objects, generating pack
.
22:51:56.927 [info] UploadPackV2: pack generated, 2097 bytes
.
22:51:56.927 [info] UploadPackV2: fetch response 2119 bytes
.
22:51:56.938 [info] UploadPackV2: processing fetch command
.
22:51:56.938 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.940 [info] UploadPackV2: collected 34 objects, generating pack
.
22:51:56.940 [info] UploadPackV2: pack generated, 2098 bytes
.
22:51:56.940 [info] UploadPackV2: fetch response 2120 bytes
.
22:51:56.945 [info] UploadPackV2: processing fetch command
.
22:51:56.945 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.946 [info] UploadPackV2: collected 15 objects, generating pack
.
22:51:56.946 [info] UploadPackV2: pack generated, 903 bytes
22:51:56.946 [info] UploadPackV2: fetch response 925 bytes
.
22:51:56.949 [info] UploadPackV2: processing fetch command
.
22:51:56.949 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:56.950 [info] UploadPackV2: collected 11 objects, generating pack
.
22:51:56.950 [info] UploadPackV2: pack generated, 717 bytes
.
22:51:56.950 [info] UploadPackV2: fetch response 739 bytes
.
22:51:56.957 [info] UploadPackV2: processing fetch command
.
22:51:57.082 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
22:51:57.084 [info] UploadPackV2: collected 38 objects, generating pack
.
22:51:57.085 [info] UploadPackV2: pack generated, 2340 bytes
.
22:51:57.085 [info] UploadPackV2: fetch response 2362 bytes
.
22:51:57.089 [info] UploadPackV2: processing fetch command
.
22:51:57.089 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.090 [info] UploadPackV2: collected 20 objects, generating pack
.
22:51:57.090 [info] UploadPackV2: pack generated, 1203 bytes
.
22:51:57.090 [info] UploadPackV2: fetch response 1225 bytes
.
22:51:57.098 [info] UploadPackV2: processing fetch command
.
22:51:57.098 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.098 [info] UploadPackV2: collected 15 objects, generating pack
.
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
22:51:57.103 [info] UploadPackV2: pack generated, 956 bytes
.
22:51:57.103 [info] UploadPackV2: fetch response 978 bytes
.
22:51:57.106 [info] UploadPackV2: processing fetch command
.
22:51:57.106 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.106 [info] UploadPackV2: collected 4 objects, generating pack
.
22:51:57.106 [info] UploadPackV2: pack generated, 241 bytes
.
22:51:57.106 [info] UploadPackV2: fetch response 263 bytes
.
22:51:57.113 [info] UploadPackV2: processing fetch command
.
22:51:57.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
......
22:51:57.114 [info] UploadPackV2: collected 24 objects, generating pack
.
22:51:57.114 [info] UploadPackV2: pack generated, 1443 bytes
.
22:51:57.114 [info] UploadPackV2: fetch response 1465 bytes
....
22:51:57.122 [info] UploadPackV2: processing fetch command
.
22:51:57.126 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.128 [info] UploadPackV2: collected 35 objects, generating pack
.
22:51:57.129 [info] UploadPackV2: pack generated, 2109 bytes
.
22:51:57.129 [info] UploadPackV2: fetch response 2131 bytes
.
22:51:57.142 [info] UploadPackV2: processing fetch command
.
22:51:57.143 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.144 [info] UploadPackV2: collected 54 objects, generating pack
.
22:51:57.145 [info] UploadPackV2: pack generated, 3297 bytes
.
22:51:57.145 [info] UploadPackV2: fetch response 3319 bytes
..
22:51:57.167 [info] UploadPackV2: processing fetch command
.
22:51:57.167 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.169 [info] UploadPackV2: collected 31 objects, generating pack
.
22:51:57.169 [info] UploadPackV2: pack generated, 1884 bytes
.
22:51:57.169 [info] UploadPackV2: fetch response 1906 bytes
.
22:51:57.184 [info] UploadPackV2: processing fetch command
.
22:51:57.184 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.184 [info] UploadPackV2: collected 7 objects, generating pack
.
22:51:57.185 [info] UploadPackV2: pack generated, 475 bytes
.
22:51:57.185 [info] UploadPackV2: fetch response 497 bytes
.
22:51:57.188 [info] UploadPackV2: processing fetch command
.
22:51:57.189 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.189 [info] UploadPackV2: collected 20 objects, generating pack
.
22:51:57.190 [info] UploadPackV2: pack generated, 1203 bytes
.
22:51:57.191 [info] UploadPackV2: fetch response 1225 bytes
.
22:51:57.193 [info] UploadPackV2: processing fetch command
.
22:51:57.193 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.194 [info] UploadPackV2: collected 11 objects, generating pack
.
22:51:57.194 [info] UploadPackV2: pack generated, 714 bytes
.
22:51:57.194 [info] UploadPackV2: fetch response 736 bytes
.
22:51:57.197 [info] UploadPackV2: processing fetch command
.
22:51:57.197 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:51:57.198 [info] UploadPackV2: collected 30 objects, generating pack
.
22:51:57.199 [info] UploadPackV2: pack generated, 1858 bytes
.
22:51:57.199 [info] UploadPackV2: fetch response 1880 bytes
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 "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 "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 "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
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
..................................................................................................................................................................................................................................................................................
22:52:03.005 [info] The function passed as a handler with ID #Reference<0.518523275.4127981570.172102> 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 "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: module attribute @git_lfs_available was set but never used
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
....................................................................................
22:52:04.187 [info] The function passed as a handler with ID "test-fail-#Reference<0.518523275.4127981570.173028>" 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
.
22:52:04.188 [info] The function passed as a handler with ID "test-#Reference<0.518523275.4127981570.173114>" 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: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
.........................................................
22:52:05.232 [info] UploadPackV2: processing fetch command
22:52:05.232 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:52:05.239 [info] UploadPackV2: reused pack 12338 bytes, 160 objects
22:52:05.239 [info] UploadPackV2: fetch response 12360 bytes
...........
22:52:05.895 [info] UploadPackV2: processing fetch command
22:52:05.895 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:05.905 [info] UploadPackV2: collected 163 objects, generating pack
22:52:05.915 [info] UploadPackV2: pack generated, 15093 bytes
22:52:05.915 [info] UploadPackV2: fetch response 15115 bytes
.....
22:52:06.417 [info] UploadPackV2: processing fetch command
22:52:06.418 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:06.422 [info] UploadPackV2: reused pack 12017 bytes, 160 objects
22:52:06.422 [info] UploadPackV2: fetch response 12039 bytes
.
22:52:06.522 [info] UploadPackV2: processing ls-refs command
22:52:06.523 [info] UploadPackV2: processing fetch command
22:52:06.523 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:52:06.523 [info] UploadPackV2: collected 3 objects, generating pack
22:52:06.524 [info] UploadPackV2: pack generated, 216 bytes
22:52:06.524 [info] UploadPackV2: fetch response 346 bytes
.
22:52:06.582 [info] UploadPackV2: processing ls-refs command
22:52:06.584 [info] UploadPackV2: processing fetch command
22:52:06.584 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:06.585 [info] UploadPackV2: collected 9 objects, generating pack
22:52:06.585 [info] UploadPackV2: pack generated, 547 bytes
22:52:06.585 [info] UploadPackV2: fetch response 569 bytes
22:52:06.654 [info] UploadPackV2: processing ls-refs command
.
22:52:06.726 [info] UploadPackV2: processing ls-refs command
22:52:06.728 [info] UploadPackV2: processing fetch command
22:52:06.728 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:06.729 [info] UploadPackV2: collected 6 objects, generating pack
22:52:06.729 [info] UploadPackV2: pack generated, 365 bytes
22:52:06.729 [info] UploadPackV2: fetch response 387 bytes
.
22:52:21.798 [info] UploadPackV2: processing ls-refs command
22:52:21.800 [info] UploadPackV2: processing fetch command
22:52:21.800 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:21.803 [info] UploadPackV2: collected 90 objects, generating pack
22:52:21.804 [info] UploadPackV2: pack generated, 5649 bytes
22:52:21.804 [info] UploadPackV2: fetch response 5671 bytes
22:52:22.102 [info] UploadPackV2: processing ls-refs command
.
22:52:22.162 [info] UploadPackV2: processing ls-refs command
22:52:22.164 [info] UploadPackV2: processing fetch command
22:52:22.164 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:22.164 [info] UploadPackV2: collected 6 objects, generating pack
22:52:22.164 [info] UploadPackV2: pack generated, 366 bytes
22:52:22.164 [info] UploadPackV2: fetch response 388 bytes
22:52:22.234 [info] UploadPackV2: processing ls-refs command
22:52:22.235 [info] UploadPackV2: processing fetch command
22:52:22.235 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
22:52:22.235 [info] UploadPackV2: fetch response 32 bytes
22:52:22.235 [info] UploadPackV2: processing fetch command
22:52:22.235 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:22.236 [info] UploadPackV2: collected 3 objects, generating pack
22:52:22.236 [info] UploadPackV2: pack generated, 183 bytes
22:52:22.236 [info] UploadPackV2: fetch response 205 bytes
.
22:52:22.298 [info] UploadPackV2: processing ls-refs command
22:52:22.300 [info] UploadPackV2: processing fetch command
22:52:22.300 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:22.300 [info] UploadPackV2: collected 6 objects, generating pack
22:52:22.300 [info] UploadPackV2: pack generated, 365 bytes
22:52:22.301 [info] UploadPackV2: fetch response 387 bytes
22:52:22.322 [info] UploadPackV2: processing fetch command
22:52:22.322 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
22:52:22.323 [info] UploadPackV2: fetch response 122 bytes
.
22:52:22.378 [info] UploadPackV2: processing ls-refs command
22:52:22.380 [info] UploadPackV2: processing fetch command
22:52:22.380 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:22.380 [info] UploadPackV2: collected 6 objects, generating pack
22:52:22.381 [info] UploadPackV2: pack generated, 365 bytes
22:52:22.381 [info] UploadPackV2: fetch response 387 bytes
22:52:22.382 [info] UploadPackV2: processing ls-refs command
22:52:22.389 [info] UploadPackV2: processing fetch command
22:52:22.389 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:22.390 [info] UploadPackV2: collected 6 objects, generating pack
22:52:22.390 [info] UploadPackV2: pack generated, 365 bytes
22:52:22.390 [info] UploadPackV2: fetch response 387 bytes
.
22:52:22.538 [info] UploadPackV2: processing ls-refs command
22:52:22.540 [info] UploadPackV2: processing fetch command
22:52:22.540 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:22.540 [info] UploadPackV2: collected 6 objects, generating pack
22:52:22.541 [info] UploadPackV2: pack generated, 365 bytes
22:52:22.541 [info] UploadPackV2: fetch response 387 bytes
22:52:24.746 [info] UploadPackV2: processing ls-refs command
.
22:52:24.752 [info] UploadPackV2: processing fetch command
22:52:24.752 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:24.752 [info] UploadPackV2: collected 3 objects, generating pack
22:52:24.752 [info] UploadPackV2: pack generated, 183 bytes
.
22:52:24.752 [info] UploadPackV2: fetch response 205 bytes
22:52:24.806 [info] UploadPackV2: processing ls-refs command
22:52:24.808 [info] UploadPackV2: processing fetch command
22:52:24.808 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:24.808 [info] UploadPackV2: collected 15 objects, generating pack
22:52:24.809 [info] UploadPackV2: pack generated, 952 bytes
22:52:24.809 [info] UploadPackV2: fetch response 974 bytes
.
22:52:24.910 [info] UploadPackV2: processing ls-refs command
22:52:24.911 [info] UploadPackV2: processing fetch command
22:52:24.911 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:52:24.911 [info] UploadPackV2: collected 3 objects, generating pack
22:52:24.912 [info] UploadPackV2: pack generated, 200 bytes
22:52:24.912 [info] UploadPackV2: fetch response 256 bytes
.
22:52:24.974 [info] UploadPackV2: processing ls-refs command
22:52:24.976 [info] UploadPackV2: processing fetch command
22:52:24.976 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:24.977 [info] UploadPackV2: collected 3 objects, generating pack
22:52:24.977 [info] UploadPackV2: pack generated, 185 bytes
22:52:24.977 [info] UploadPackV2: fetch response 207 bytes
22:52:25.042 [info] UploadPackV2: processing ls-refs command
.
22:52:25.102 [info] UploadPackV2: processing ls-refs command
22:52:25.104 [info] UploadPackV2: processing fetch command
22:52:25.104 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:25.104 [info] UploadPackV2: collected 3 objects, generating pack
22:52:25.105 [info] UploadPackV2: pack generated, 196 bytes
22:52:25.105 [info] UploadPackV2: fetch response 218 bytes
..
22:52:40.246 [info] UploadPackV2: processing ls-refs command
22:52:40.248 [info] UploadPackV2: processing fetch command
22:52:40.248 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:40.249 [info] UploadPackV2: collected 3 objects, generating pack
22:52:40.249 [info] UploadPackV2: pack generated, 183 bytes
22:52:40.249 [info] UploadPackV2: fetch response 205 bytes
.
22:52:55.374 [info] UploadPackV2: processing ls-refs command
22:52:55.376 [info] UploadPackV2: processing fetch command
22:52:55.376 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:52:55.377 [info] UploadPackV2: reused pack 240 bytes, 3 objects
22:52:55.377 [info] UploadPackV2: fetch response 262 bytes
..
22:53:25.574 [info] UploadPackV2: processing ls-refs command
22:53:25.576 [info] UploadPackV2: processing fetch command
22:53:25.576 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:53:25.576 [info] UploadPackV2: collected 3 objects, generating pack
22:53:25.576 [info] UploadPackV2: pack generated, 201 bytes
22:53:25.576 [info] UploadPackV2: fetch response 223 bytes
.
22:53:40.702 [info] UploadPackV2: processing ls-refs command
22:53:40.704 [info] UploadPackV2: processing fetch command
22:53:40.704 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:53:40.704 [info] UploadPackV2: collected 6 objects, generating pack
22:53:40.704 [info] UploadPackV2: pack generated, 365 bytes
22:53:40.704 [info] UploadPackV2: fetch response 387 bytes
..
22:54:10.914 [info] UploadPackV2: processing ls-refs command
22:54:10.916 [info] UploadPackV2: processing fetch command
22:54:10.916 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:10.917 [info] UploadPackV2: collected 3 objects, generating pack
22:54:10.917 [info] UploadPackV2: pack generated, 183 bytes
22:54:10.917 [info] UploadPackV2: fetch response 205 bytes
..
22:54:26.102 [info] UploadPackV2: processing ls-refs command
22:54:26.104 [info] UploadPackV2: processing fetch command
22:54:26.104 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:26.105 [info] UploadPackV2: collected 6 objects, generating pack
22:54:26.105 [info] UploadPackV2: pack generated, 365 bytes
22:54:26.105 [info] UploadPackV2: fetch response 387 bytes
...***********
22:54:56.358 [info] UploadPackV2: processing ls-refs command
22:54:56.361 [info] UploadPackV2: processing fetch command
22:54:56.361 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
22:54:56.362 [info] UploadPackV2: collected 3 objects, generating pack
22:54:56.362 [info] UploadPackV2: pack generated, 381 bytes
22:54:56.362 [info] UploadPackV2: fetch response 403 bytes
.
22:54:56.434 [info] UploadPackV2: processing ls-refs command
22:54:56.437 [info] UploadPackV2: processing fetch command
22:54:56.437 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
22:54:56.438 [info] UploadPackV2: collected 5 objects, generating pack
22:54:56.438 [info] UploadPackV2: pack generated, 319 bytes
22:54:56.438 [info] UploadPackV2: fetch response 341 bytes
.
22:54:56.506 [info] UploadPackV2: processing ls-refs command
..
22:54:56.554 [info] UploadPackV2: processing ls-refs command
.
22:54:56.614 [info] UploadPackV2: processing ls-refs command
22:54:56.617 [info] UploadPackV2: processing fetch command
22:54:56.617 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:54:56.618 [info] UploadPackV2: collected 6 objects, generating pack
22:54:56.618 [info] UploadPackV2: pack generated, 513 bytes
22:54:56.618 [info] UploadPackV2: fetch response 535 bytes
.
22:54:56.694 [info] UploadPackV2: processing ls-refs command
22:54:56.698 [info] UploadPackV2: processing fetch command
22:54:56.698 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
22:54:56.699 [info] UploadPackV2: collected 3 objects, generating pack
22:54:56.699 [info] UploadPackV2: pack generated, 381 bytes
22:54:56.699 [info] UploadPackV2: fetch response 403 bytes
.
22:54:56.774 [info] UploadPackV2: processing ls-refs command
.
22:54:56.822 [info] UploadPackV2: processing ls-refs command
.
22:54:56.874 [info] UploadPackV2: processing ls-refs command
22:54:56.876 [info] UploadPackV2: processing fetch command
22:54:56.876 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:54:56.876 [info] UploadPackV2: collected 3 objects, generating pack
22:54:56.877 [info] UploadPackV2: pack generated, 216 bytes
22:54:56.877 [info] UploadPackV2: fetch response 312 bytes
.
22:54:57.046 [info] UploadPackV2: processing ls-refs command
22:54:57.048 [info] UploadPackV2: processing fetch command
22:54:57.048 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.048 [info] UploadPackV2: collected 9 objects, generating pack
22:54:57.049 [info] UploadPackV2: pack generated, 549 bytes
22:54:57.049 [info] UploadPackV2: fetch response 571 bytes
22:54:57.072 [info] UploadPackV2: processing fetch command
22:54:57.073 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
22:54:57.073 [info] UploadPackV2: fetch response 171 bytes
.
22:54:57.126 [info] UploadPackV2: processing ls-refs command
22:54:57.128 [info] UploadPackV2: processing fetch command
22:54:57.128 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:54:57.129 [info] UploadPackV2: collected 9 objects, generating pack
22:54:57.129 [info] UploadPackV2: pack generated, 585 bytes
22:54:57.129 [info] UploadPackV2: fetch response 681 bytes
.
22:54:57.202 [info] UploadPackV2: processing ls-refs command
22:54:57.204 [info] UploadPackV2: processing fetch command
22:54:57.204 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:54:57.205 [info] UploadPackV2: collected 3 objects, generating pack
22:54:57.205 [info] UploadPackV2: pack generated, 218 bytes
22:54:57.205 [info] UploadPackV2: fetch response 314 bytes
..
22:54:57.282 [info] UploadPackV2: processing ls-refs command
22:54:57.284 [info] UploadPackV2: processing fetch command
22:54:57.284 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:54:57.284 [info] UploadPackV2: collected 3 objects, generating pack
22:54:57.284 [info] UploadPackV2: pack generated, 216 bytes
22:54:57.284 [info] UploadPackV2: fetch response 312 bytes
22:54:57.350 [info] UploadPackV2: processing ls-refs command
22:54:57.351 [info] UploadPackV2: processing fetch command
22:54:57.351 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:54:57.352 [info] UploadPackV2: collected 12 objects, generating pack
22:54:57.352 [info] UploadPackV2: pack generated, 768 bytes
22:54:57.352 [info] UploadPackV2: fetch response 1002 bytes
.
22:54:57.414 [info] UploadPackV2: processing ls-refs command
22:54:57.420 [info] UploadPackV2: processing fetch command
22:54:57.420 [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
22:54:57.421 [info] UploadPackV2: collected 6 objects, generating pack
22:54:57.421 [info] UploadPackV2: pack generated, 513 bytes
22:54:57.421 [info] UploadPackV2: fetch response 535 bytes
.
22:54:57.469 [info] UploadPackV2: processing ls-refs command
22:54:57.472 [info] UploadPackV2: processing fetch command
22:54:57.472 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.473 [info] UploadPackV2: collected 15 objects, generating pack
22:54:57.474 [info] UploadPackV2: pack generated, 919 bytes
22:54:57.474 [info] UploadPackV2: fetch response 941 bytes
.
22:54:57.517 [info] UploadPackV2: processing ls-refs command
22:54:57.520 [info] UploadPackV2: processing fetch command
22:54:57.520 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.521 [info] UploadPackV2: collected 6 objects, generating pack
22:54:57.521 [info] UploadPackV2: pack generated, 366 bytes
22:54:57.521 [info] UploadPackV2: fetch response 388 bytes
22:54:57.556 [info] UploadPackV2: processing ls-refs command
.
22:54:57.582 [info] UploadPackV2: processing ls-refs command
22:54:57.585 [info] UploadPackV2: processing fetch command
22:54:57.585 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.585 [info] UploadPackV2: collected 9 objects, generating pack
22:54:57.586 [info] UploadPackV2: pack generated, 549 bytes
22:54:57.586 [info] UploadPackV2: fetch response 571 bytes
22:54:57.617 [info] UploadPackV2: processing ls-refs command
.
22:54:57.644 [info] UploadPackV2: processing ls-refs command
22:54:57.646 [info] UploadPackV2: processing fetch command
22:54:57.646 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.647 [info] UploadPackV2: collected 3 objects, generating pack
22:54:57.647 [info] UploadPackV2: pack generated, 183 bytes
22:54:57.647 [info] UploadPackV2: fetch response 205 bytes
..
22:54:57.735 [info] UploadPackV2: processing ls-refs command
22:54:57.738 [info] UploadPackV2: processing fetch command
22:54:57.738 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.743 [info] UploadPackV2: collected 180 objects, generating pack
22:54:57.745 [info] UploadPackV2: pack generated, 11106 bytes
22:54:57.745 [info] UploadPackV2: fetch response 11128 bytes
.
22:54:57.849 [info] UploadPackV2: processing fetch command
22:54:57.849 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:54:57.849 [info] UploadPackV2: collected 3 objects, generating pack
22:54:57.849 [info] UploadPackV2: pack generated, 183 bytes
22:54:57.849 [info] UploadPackV2: fetch response 205 bytes
.
22:54:57.855 [info] The function passed as a handler with ID "telemetry-test-26434" 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
22:54:57.856 [info] UploadPackV2: processing fetch command
22:54:57.856 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:54:57.856 [info] UploadPackV2: collected 3 objects, generating pack
22:54:57.856 [info] UploadPackV2: pack generated, 183 bytes
22:54:57.856 [info] UploadPackV2: fetch response 205 bytes
.
22:54:57.857 [info] The function passed as a handler with ID "telemetry-test-26466" 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
22:54:57.857 [info] UploadPackV2: processing fetch command
22:54:57.857 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:54:57.858 [info] UploadPackV2: collected 2 objects, generating pack
22:54:57.858 [info] UploadPackV2: pack generated, 169 bytes
22:54:57.858 [info] UploadPackV2: fetch response 191 bytes
22:54:57.861 [info] The function passed as a handler with ID "telemetry-test-26498" 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
.
22:55:12.929 [info] The function passed as a handler with ID "telemetry-test-26530" 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
22:55:12.929 [info] UploadPackV2: processing fetch command
22:55:12.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:55:12.930 [info] UploadPackV2: collected 3 objects, generating pack
22:55:12.930 [info] UploadPackV2: pack generated, 186 bytes
22:55:12.930 [info] UploadPackV2: fetch response 208 bytes
.
22:55:12.931 [info] The function passed as a handler with ID "rev-list-range-test-16131" 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
....
22:55:12.937 [info] The function passed as a handler with ID "graph-query-test-26658" 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
.....
22:55:12.944 [info] The function passed as a handler with ID "rev-list-range-test-26754" 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
.
22:55:12.947 [info] The function passed as a handler with ID "graph-query-test-11268" 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
.
22:55:12.948 [info] The function passed as a handler with ID "graph-query-test-11332" 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
.
22:55:12.950 [info] The function passed as a handler with ID "rev-list-range-test-26786" 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
...
22:55:12.955 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303412093" 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
.
22:55:12.956 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303412061" 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
22:55:12.957 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303396639" 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
22:55:12.957 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303396607" 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
.
22:55:12.958 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--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
22:55:12.958 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303411516" 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
.
22:55:12.959 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303411484" 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
22:55:12.959 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303411452" 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
..
22:55:28.086 [info] UploadPackV2: processing ls-refs command
22:55:28.088 [info] UploadPackV2: processing fetch command
22:55:28.088 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:28.089 [info] UploadPackV2: collected 3 objects, generating pack
22:55:28.089 [info] UploadPackV2: pack generated, 185 bytes
22:55:28.089 [info] UploadPackV2: fetch response 207 bytes
.
22:55:28.170 [info] UploadPackV2: processing ls-refs command
22:55:28.172 [info] UploadPackV2: processing fetch command
22:55:28.172 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:28.172 [info] UploadPackV2: collected 3 objects, generating pack
22:55:28.173 [info] UploadPackV2: pack generated, 196 bytes
22:55:28.173 [info] UploadPackV2: fetch response 218 bytes
.*****......................
22:55:29.510 [info] UploadPackV2: processing ls-refs command
22:55:29.512 [info] UploadPackV2: processing fetch command
22:55:29.512 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.534 [info] UploadPackV2: collected 600 objects, generating pack
22:55:29.552 [info] UploadPackV2: pack generated, 45197 bytes
22:55:29.552 [info] UploadPackV2: fetch response 45219 bytes
.
22:55:29.702 [info] UploadPackV2: processing ls-refs command
22:55:29.704 [info] UploadPackV2: processing fetch command
22:55:29.704 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:55:29.705 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.705 [info] UploadPackV2: pack generated, 231 bytes
22:55:29.705 [info] UploadPackV2: fetch response 327 bytes
.
22:55:29.774 [info] UploadPackV2: processing ls-refs command
.
22:55:29.842 [info] UploadPackV2: processing ls-refs command
22:55:29.844 [info] UploadPackV2: processing fetch command
22:55:29.844 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.850 [info] UploadPackV2: collected 240 objects, generating pack
22:55:29.854 [info] UploadPackV2: pack generated, 16258 bytes
22:55:29.854 [info] UploadPackV2: fetch response 16280 bytes
.
22:55:29.922 [info] UploadPackV2: processing ls-refs command
.
22:55:29.924 [info] UploadPackV2: processing fetch command
22:55:29.924 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.924 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.924 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.925 [info] UploadPackV2: fetch response 205 bytes
22:55:29.925 [info] UploadPackV2: processing fetch command
22:55:29.925 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.925 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.925 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.925 [info] UploadPackV2: fetch response 205 bytes
22:55:29.925 [info] UploadPackV2: processing fetch command
22:55:29.925 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.925 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.925 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.925 [info] UploadPackV2: fetch response 205 bytes
22:55:29.926 [info] UploadPackV2: processing fetch command
22:55:29.926 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.926 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.926 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.926 [info] UploadPackV2: fetch response 205 bytes
22:55:29.926 [info] UploadPackV2: processing fetch command
22:55:29.926 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.926 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.926 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.926 [info] UploadPackV2: fetch response 205 bytes
22:55:29.927 [info] UploadPackV2: processing fetch command
22:55:29.927 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.927 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.927 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.927 [info] UploadPackV2: fetch response 205 bytes
22:55:29.927 [info] UploadPackV2: processing fetch command
22:55:29.927 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.927 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.927 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.927 [info] UploadPackV2: fetch response 205 bytes
22:55:29.927 [info] UploadPackV2: processing fetch command
22:55:29.927 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.927 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.928 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.928 [info] UploadPackV2: fetch response 205 bytes
22:55:29.928 [info] UploadPackV2: processing fetch command
22:55:29.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.928 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.928 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.928 [info] UploadPackV2: fetch response 205 bytes
22:55:29.928 [info] UploadPackV2: processing fetch command
22:55:29.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.928 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.928 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.928 [info] UploadPackV2: fetch response 205 bytes
22:55:29.928 [info] UploadPackV2: processing fetch command
22:55:29.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.928 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.929 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.929 [info] UploadPackV2: fetch response 205 bytes
22:55:29.929 [info] UploadPackV2: processing fetch command
22:55:29.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.929 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.929 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.929 [info] UploadPackV2: fetch response 205 bytes
22:55:29.929 [info] UploadPackV2: processing fetch command
22:55:29.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.929 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.929 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.929 [info] UploadPackV2: fetch response 205 bytes
22:55:29.929 [info] UploadPackV2: processing fetch command
22:55:29.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.929 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.930 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.930 [info] UploadPackV2: fetch response 205 bytes
22:55:29.930 [info] UploadPackV2: processing fetch command
22:55:29.930 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.930 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.930 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.930 [info] UploadPackV2: fetch response 205 bytes
22:55:29.930 [info] UploadPackV2: processing fetch command
22:55:29.930 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.930 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.930 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.930 [info] UploadPackV2: fetch response 205 bytes
22:55:29.930 [info] UploadPackV2: processing fetch command
22:55:29.932 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.933 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.933 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.933 [info] UploadPackV2: fetch response 205 bytes
22:55:29.933 [info] UploadPackV2: processing fetch command
22:55:29.933 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.933 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.933 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.933 [info] UploadPackV2: fetch response 205 bytes
22:55:29.934 [info] UploadPackV2: processing fetch command
22:55:29.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.934 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.934 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.934 [info] UploadPackV2: fetch response 205 bytes
22:55:29.934 [info] UploadPackV2: processing fetch command
22:55:29.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.934 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.934 [info] UploadPackV2: pack generated, 183 bytes
.
22:55:29.934 [info] UploadPackV2: fetch response 205 bytes
22:55:29.935 [info] UploadPackV2: processing fetch command
22:55:29.935 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.935 [info] UploadPackV2: collected 3 objects, generating pack
22:55:29.935 [info] UploadPackV2: pack generated, 183 bytes
22:55:29.935 [info] UploadPackV2: fetch response 205 bytes
22:55:29.939 [info] UploadPackV2: processing fetch command
22:55:29.939 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:55:29.940 [info] UploadPackV2: collected 0 objects, generating pack
22:55:29.940 [info] UploadPackV2: pack generated, 32 bytes
22:55:29.940 [info] UploadPackV2: fetch response 54 bytes
............
Finished in 217.7 seconds (14.0s async, 203.7s sync)
Result: 1038 passed (2 properties, 1036 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"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)