fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Runner:
carl
online
linux/arm64
Started: Jun 22, 2026 at 14:12 UTC
Completed: Jun 22, 2026 at 14:16 UTC
Duration: 3m 38s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 12 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 566133, max_cases: 8
Excluding tags: [:s3]
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
.......................................................................................................................................................
14:12:34.985 [info] The function passed as a handler with ID #Reference<0.3466505819.2277769219.169040> 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
.........................................................................
14:12:35.830 [warning] post_receive hook failed: "webhook failed"
warning: default values for the optional arguments in the private function http_post/4 are never used
│
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
│
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: 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
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
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
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
............................................................................................................................................................................................................................................................................................................................................................................................................................................
14:12:42.802 [info] UploadPackV2: processing fetch command
14:12:42.802 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:42.808 [info] UploadPackV2: collected 35 objects, generating pack
14:12:42.810 [info] UploadPackV2: pack generated, 2126 bytes
14:12:42.810 [info] UploadPackV2: fetch response 2148 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
..
14:12:42.937 [info] UploadPackV2: processing fetch command
.
14:12:42.937 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:42.939 [info] UploadPackV2: collected 24 objects, generating pack
.
14:12:42.941 [info] UploadPackV2: pack generated, 1443 bytes
.
14:12:42.941 [info] UploadPackV2: fetch response 1465 bytes
.......
14:12:43.076 [info] UploadPackV2: processing fetch command
14:12:43.076 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.114 [info] UploadPackV2: collected 31 objects, generating pack
14:12:43.117 [info] UploadPackV2: pack generated, 1885 bytes
14:12:43.117 [info] UploadPackV2: fetch response 1907 bytes
.
14:12:43.227 [info] UploadPackV2: processing fetch command
14:12:43.227 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.247 [info] UploadPackV2: collected 12 objects, generating pack
14:12:43.248 [info] UploadPackV2: pack generated, 723 bytes
14:12:43.248 [info] UploadPackV2: fetch response 745 bytes
.
14:12:43.326 [info] UploadPackV2: processing fetch command
.
14:12:43.326 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
14:12:43.351 [info] UploadPackV2: collected 43 objects, generating pack
.
14:12:43.357 [info] UploadPackV2: pack generated, 2586 bytes
14:12:43.357 [info] UploadPackV2: fetch response 2608 bytes
14:12:43.375 [info] UploadPackV2: processing fetch command
14:12:43.375 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.376 [info] UploadPackV2: collected 15 objects, generating pack
14:12:43.377 [info] UploadPackV2: pack generated, 958 bytes
14:12:43.377 [info] UploadPackV2: fetch response 980 bytes
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
14:12:43.419 [info] UploadPackV2: processing fetch command
14:12:43.419 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.422 [info] UploadPackV2: collected 42 objects, generating pack
14:12:43.424 [info] UploadPackV2: pack generated, 2580 bytes
14:12:43.424 [info] UploadPackV2: fetch response 2602 bytes
14:12:43.436 [info] UploadPackV2: processing fetch command
14:12:43.436 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.440 [info] UploadPackV2: collected 15 objects, generating pack
14:12:43.440 [info] UploadPackV2: pack generated, 958 bytes
14:12:43.441 [info] UploadPackV2: fetch response 980 bytes
14:12:43.451 [info] UploadPackV2: processing fetch command
14:12:43.452 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.453 [info] UploadPackV2: collected 38 objects, generating pack
14:12:43.454 [info] UploadPackV2: pack generated, 2340 bytes
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
14:12:43.454 [info] UploadPackV2: fetch response 2362 bytes
14:12:43.468 [info] UploadPackV2: processing fetch command
14:12:43.468 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.473 [info] UploadPackV2: collected 24 objects, generating pack
14:12:43.474 [info] UploadPackV2: pack generated, 1443 bytes
14:12:43.474 [info] UploadPackV2: fetch response 1465 bytes
14:12:43.487 [info] UploadPackV2: processing fetch command
14:12:43.487 [info] UploadPackV2.handle_fetch: 2 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
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
14:12:43.493 [info] UploadPackV2: collected 27 objects, generating pack
14:12:43.494 [info] UploadPackV2: pack generated, 1627 bytes
14:12:43.494 [info] UploadPackV2: fetch response 1649 bytes
14:12:43.499 [info] UploadPackV2: processing fetch command
14:12:43.499 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.505 [info] UploadPackV2: collected 23 objects, generating pack
14:12:43.506 [info] UploadPackV2: pack generated, 1406 bytes
14:12:43.506 [info] UploadPackV2: fetch response 1428 bytes
14:12:43.517 [info] UploadPackV2: processing fetch command
14:12:43.517 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.521 [info] UploadPackV2: collected 7 objects, generating pack
14:12:43.521 [info] UploadPackV2: pack generated, 475 bytes
14:12:43.522 [info] UploadPackV2: fetch response 497 bytes
14:12:43.526 [info] UploadPackV2: processing fetch command
14:12:43.526 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.528 [info] UploadPackV2: collected 27 objects, generating pack
14:12:43.532 [info] UploadPackV2: pack generated, 1627 bytes
14:12:43.532 [info] UploadPackV2: fetch response 1649 bytes
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
14:12:43.541 [info] UploadPackV2: processing fetch command
14:12:43.541 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.542 [info] UploadPackV2: collected 7 objects, generating pack
14:12:43.542 [info] UploadPackV2: pack generated, 475 bytes
14:12:43.542 [info] UploadPackV2: fetch response 497 bytes
.
14:12:43.547 [info] UploadPackV2: processing fetch command
.
14:12:43.547 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:43.549 [info] UploadPackV2: collected 34 objects, generating pack
.
14:12:43.550 [info] UploadPackV2: pack generated, 2098 bytes
.
14:12:43.550 [info] UploadPackV2: fetch response 2120 bytes
.
14:12:43.555 [info] UploadPackV2: processing fetch command
.
14:12:43.556 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
14:12:43.558 [info] UploadPackV2: collected 16 objects, generating pack
.
14:12:43.558 [info] UploadPackV2: pack generated, 962 bytes
.
14:12:43.558 [info] UploadPackV2: fetch response 984 bytes
.
14:12:43.566 [info] UploadPackV2: processing fetch command
.
14:12:43.566 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:43.567 [info] UploadPackV2: collected 16 objects, generating pack
14:12:43.567 [info] UploadPackV2: pack generated, 962 bytes
14:12:43.567 [info] UploadPackV2: fetch response 984 bytes
14:12:43.571 [info] UploadPackV2: processing fetch command
14:12:43.571 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.578 [info] UploadPackV2: collected 30 objects, generating pack
14:12:43.580 [info] UploadPackV2: pack generated, 1859 bytes
14:12:43.580 [info] UploadPackV2: fetch response 1881 bytes
14:12:43.592 [info] UploadPackV2: processing fetch command
14:12:43.592 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.594 [info] UploadPackV2: collected 24 objects, generating pack
14:12:43.596 [info] UploadPackV2: pack generated, 1411 bytes
14:12:43.596 [info] UploadPackV2: fetch response 1433 bytes
14:12:43.602 [info] UploadPackV2: processing fetch command
14:12:43.602 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.602 [info] UploadPackV2: collected 12 objects, generating pack
14:12:43.602 [info] UploadPackV2: pack generated, 691 bytes
14:12:43.603 [info] UploadPackV2: fetch response 713 bytes
14:12:43.609 [info] UploadPackV2: processing fetch command
14:12:43.609 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.616 [info] UploadPackV2: collected 31 objects, generating pack
14:12:43.617 [info] UploadPackV2: pack generated, 1865 bytes
14:12:43.617 [info] UploadPackV2: fetch response 1887 bytes
14:12:43.625 [info] UploadPackV2: processing fetch command
14:12:43.626 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.627 [info] UploadPackV2: collected 20 objects, generating pack
14:12:43.627 [info] UploadPackV2: pack generated, 1170 bytes
14:12:43.627 [info] UploadPackV2: fetch response 1192 bytes
14:12:43.634 [info] UploadPackV2: processing fetch command
14:12:43.635 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.636 [info] UploadPackV2: collected 40 objects, generating pack
14:12:43.638 [info] UploadPackV2: pack generated, 2372 bytes
14:12:43.638 [info] UploadPackV2: fetch response 2394 bytes
14:12:43.645 [info] UploadPackV2: processing fetch command
14:12:43.645 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.647 [info] UploadPackV2: collected 27 objects, generating pack
14:12:43.647 [info] UploadPackV2: pack generated, 1676 bytes
14:12:43.647 [info] UploadPackV2: fetch response 1698 bytes
14:12:43.654 [info] UploadPackV2: processing fetch command
14:12:43.654 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.655 [info] UploadPackV2: collected 11 objects, generating pack
14:12:43.656 [info] UploadPackV2: pack generated, 714 bytes
14:12:43.656 [info] UploadPackV2: fetch response 736 bytes
14:12:43.659 [info] UploadPackV2: processing fetch command
14:12:43.660 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.660 [info] UploadPackV2: collected 16 objects, generating pack
14:12:43.661 [info] UploadPackV2: pack generated, 962 bytes
14:12:43.661 [info] UploadPackV2: fetch response 984 bytes
14:12:43.680 [info] UploadPackV2: processing fetch command
14:12:43.680 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.684 [info] UploadPackV2: collected 27 objects, generating pack
14:12:43.685 [info] UploadPackV2: pack generated, 1676 bytes
14:12:43.686 [info] UploadPackV2: fetch response 1698 bytes
14:12:43.702 [info] UploadPackV2: processing fetch command
14:12:43.702 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.703 [info] UploadPackV2: collected 24 objects, generating pack
14:12:43.704 [info] UploadPackV2: pack generated, 1443 bytes
14:12:43.704 [info] UploadPackV2: fetch response 1465 bytes
14:12:43.713 [info] UploadPackV2: processing fetch command
14:12:43.713 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.714 [info] UploadPackV2: collected 7 objects, generating pack
14:12:43.714 [info] UploadPackV2: pack generated, 475 bytes
14:12:43.714 [info] UploadPackV2: fetch response 497 bytes
14:12:43.722 [info] UploadPackV2: processing fetch command
14:12:43.723 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.731 [info] UploadPackV2: collected 27 objects, generating pack
14:12:43.732 [info] UploadPackV2: pack generated, 1678 bytes
14:12:43.732 [info] UploadPackV2: fetch response 1700 bytes
14:12:43.753 [info] UploadPackV2: processing fetch command
14:12:43.930 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.932 [info] UploadPackV2: collected 23 objects, generating pack
14:12:43.933 [info] UploadPackV2: pack generated, 1435 bytes
14:12:43.933 [info] UploadPackV2: fetch response 1457 bytes
14:12:43.940 [info] UploadPackV2: processing fetch command
14:12:43.940 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.941 [info] UploadPackV2: collected 20 objects, generating pack
14:12:43.942 [info] UploadPackV2: pack generated, 1203 bytes
14:12:43.942 [info] UploadPackV2: fetch response 1225 bytes
14:12:43.961 [info] UploadPackV2: processing fetch command
14:12:43.961 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.967 [info] UploadPackV2: collected 27 objects, generating pack
14:12:43.968 [info] UploadPackV2: pack generated, 1676 bytes
14:12:43.968 [info] UploadPackV2: fetch response 1698 bytes
14:12:43.977 [info] UploadPackV2: processing fetch command
14:12:43.977 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:43.998 [info] UploadPackV2: collected 28 objects, generating pack
14:12:43.999 [info] UploadPackV2: pack generated, 1652 bytes
14:12:43.999 [info] UploadPackV2: fetch response 1674 bytes
14:12:44.008 [info] UploadPackV2: processing fetch command
14:12:44.008 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.009 [info] UploadPackV2: collected 23 objects, generating pack
14:12:44.010 [info] UploadPackV2: pack generated, 1435 bytes
14:12:44.010 [info] UploadPackV2: fetch response 1457 bytes
14:12:44.015 [info] UploadPackV2: processing fetch command
14:12:44.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.015 [info] UploadPackV2: collected 4 objects, generating pack
14:12:44.015 [info] UploadPackV2: pack generated, 241 bytes
14:12:44.015 [info] UploadPackV2: fetch response 263 bytes
14:12:44.020 [info] UploadPackV2: processing fetch command
14:12:44.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.022 [info] UploadPackV2: collected 24 objects, generating pack
14:12:44.023 [info] UploadPackV2: pack generated, 1443 bytes
14:12:44.023 [info] UploadPackV2: fetch response 1465 bytes
14:12:44.031 [info] UploadPackV2: processing fetch command
14:12:44.031 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.034 [info] UploadPackV2: collected 48 objects, generating pack
14:12:44.036 [info] UploadPackV2: pack generated, 2854 bytes
14:12:44.036 [info] UploadPackV2: fetch response 2876 bytes
14:12:44.046 [info] UploadPackV2: processing fetch command
14:12:44.046 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.047 [info] UploadPackV2: collected 19 objects, generating pack
14:12:44.049 [info] UploadPackV2: pack generated, 1196 bytes
14:12:44.049 [info] UploadPackV2: fetch response 1218 bytes
14:12:44.055 [info] UploadPackV2: processing fetch command
14:12:44.055 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.056 [info] UploadPackV2: collected 19 objects, generating pack
14:12:44.058 [info] UploadPackV2: pack generated, 1194 bytes
14:12:44.058 [info] UploadPackV2: fetch response 1216 bytes
14:12:44.062 [info] UploadPackV2: processing fetch command
14:12:44.063 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.064 [info] UploadPackV2: collected 19 objects, generating pack
14:12:44.064 [info] UploadPackV2: pack generated, 1196 bytes
14:12:44.064 [info] UploadPackV2: fetch response 1218 bytes
14:12:44.074 [info] UploadPackV2: processing fetch command
14:12:44.074 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.076 [info] UploadPackV2: collected 47 objects, generating pack
14:12:44.078 [info] UploadPackV2: pack generated, 2814 bytes
14:12:44.078 [info] UploadPackV2: fetch response 2836 bytes
14:12:44.087 [info] UploadPackV2: processing fetch command
14:12:44.087 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.088 [info] UploadPackV2: collected 19 objects, generating pack
14:12:44.089 [info] UploadPackV2: pack generated, 1196 bytes
14:12:44.089 [info] UploadPackV2: fetch response 1218 bytes
14:12:44.097 [info] UploadPackV2: processing fetch command
.
14:12:44.097 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.100 [info] UploadPackV2: collected 55 objects, generating pack
14:12:44.102 [info] UploadPackV2: pack generated, 3299 bytes
14:12:44.103 [info] UploadPackV2: fetch response 3321 bytes
14:12:44.116 [info] UploadPackV2: processing fetch command
14:12:44.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.116 [info] UploadPackV2: collected 15 objects, generating pack
14:12:44.117 [info] UploadPackV2: pack generated, 956 bytes
14:12:44.117 [info] UploadPackV2: fetch response 978 bytes
14:12:44.121 [info] UploadPackV2: processing fetch command
14:12:44.324 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.388 [info] UploadPackV2: collected 31 objects, generating pack
14:12:44.390 [info] UploadPackV2: pack generated, 1867 bytes
14:12:44.392 [info] UploadPackV2: fetch response 1889 bytes
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
14:12:44.489 [info] UploadPackV2: processing fetch command
14:12:44.489 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.512 [info] UploadPackV2: collected 27 objects, generating pack
14:12:44.514 [info] UploadPackV2: pack generated, 1678 bytes
14:12:44.514 [info] UploadPackV2: fetch response 1700 bytes
....
14:12:44.608 [info] UploadPackV2: processing fetch command
14:12:44.608 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.614 [info] UploadPackV2: collected 24 objects, generating pack
14:12:44.614 [info] UploadPackV2: pack generated, 1443 bytes
14:12:44.615 [info] UploadPackV2: fetch response 1465 bytes
14:12:44.624 [info] UploadPackV2: processing fetch command
14:12:44.624 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.628 [info] UploadPackV2: collected 23 objects, generating pack
14:12:44.630 [info] UploadPackV2: pack generated, 1437 bytes
14:12:44.630 [info] UploadPackV2: fetch response 1459 bytes
14:12:44.645 [info] UploadPackV2: processing fetch command
14:12:44.646 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.653 [info] UploadPackV2: collected 11 objects, generating pack
14:12:44.655 [info] UploadPackV2: pack generated, 717 bytes
14:12:44.655 [info] UploadPackV2: fetch response 739 bytes
.
14:12:44.664 [info] UploadPackV2: processing fetch command
14:12:44.665 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.666 [info] UploadPackV2: collected 8 objects, generating pack
14:12:44.667 [info] UploadPackV2: pack generated, 482 bytes
14:12:44.667 [info] UploadPackV2: fetch response 504 bytes
14:12:44.675 [info] UploadPackV2: processing fetch command
14:12:44.675 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.675 [info] UploadPackV2: collected 8 objects, generating pack
14:12:44.676 [info] UploadPackV2: pack generated, 482 bytes
14:12:44.676 [info] UploadPackV2: fetch response 504 bytes
14:12:44.695 [info] UploadPackV2: processing fetch command
14:12:44.695 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.700 [info] UploadPackV2: collected 26 objects, generating pack
14:12:44.703 [info] UploadPackV2: pack generated, 1620 bytes
14:12:44.704 [info] UploadPackV2: fetch response 1642 bytes
14:12:44.732 [info] UploadPackV2: processing fetch command
14:12:44.732 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.744 [info] UploadPackV2: collected 54 objects, generating pack
14:12:44.755 [info] UploadPackV2: pack generated, 3299 bytes
14:12:44.756 [info] UploadPackV2: fetch response 3321 bytes
14:12:44.776 [info] UploadPackV2: processing fetch command
14:12:44.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.777 [info] UploadPackV2: collected 7 objects, generating pack
14:12:44.778 [info] UploadPackV2: pack generated, 475 bytes
14:12:44.778 [info] UploadPackV2: fetch response 497 bytes
.
14:12:44.784 [info] UploadPackV2: processing fetch command
.
14:12:44.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.786 [info] UploadPackV2: collected 19 objects, generating pack
.
14:12:44.787 [info] UploadPackV2: pack generated, 1196 bytes
.
14:12:44.787 [info] UploadPackV2: fetch response 1218 bytes
.
14:12:44.815 [info] UploadPackV2: processing fetch command
14:12:44.815 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.816 [info] UploadPackV2: collected 23 objects, generating pack
14:12:44.818 [info] UploadPackV2: pack generated, 1437 bytes
14:12:44.818 [info] UploadPackV2: fetch response 1459 bytes
14:12:44.828 [info] UploadPackV2: processing fetch command
14:12:44.828 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.829 [info] UploadPackV2: collected 27 objects, generating pack
14:12:44.830 [info] UploadPackV2: pack generated, 1620 bytes
14:12:44.830 [info] UploadPackV2: fetch response 1642 bytes
14:12:44.836 [info] UploadPackV2: processing fetch command
14:12:44.836 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.837 [info] UploadPackV2: collected 7 objects, generating pack
14:12:44.837 [info] UploadPackV2: pack generated, 475 bytes
14:12:44.837 [info] UploadPackV2: fetch response 497 bytes
14:12:44.839 [info] UploadPackV2: processing fetch command
14:12:44.840 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.840 [info] UploadPackV2: collected 7 objects, generating pack
14:12:44.841 [info] UploadPackV2: pack generated, 475 bytes
14:12:44.841 [info] UploadPackV2: fetch response 497 bytes
14:12:44.866 [info] UploadPackV2: processing fetch command
14:12:44.874 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.886 [info] UploadPackV2: collected 23 objects, generating pack
14:12:44.888 [info] UploadPackV2: pack generated, 1437 bytes
14:12:44.888 [info] UploadPackV2: fetch response 1459 bytes
14:12:44.924 [info] UploadPackV2: processing fetch command
14:12:44.924 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.932 [info] UploadPackV2: collected 20 objects, generating pack
14:12:44.936 [info] UploadPackV2: pack generated, 1203 bytes
14:12:44.936 [info] UploadPackV2: fetch response 1225 bytes
14:12:44.957 [info] UploadPackV2: processing fetch command
14:12:44.958 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:44.973 [info] UploadPackV2: collected 27 objects, generating pack
14:12:44.975 [info] UploadPackV2: pack generated, 1626 bytes
14:12:44.976 [info] UploadPackV2: fetch response 1648 bytes
14:12:45.006 [info] UploadPackV2: processing fetch command
14:12:45.006 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.032 [info] UploadPackV2: collected 27 objects, generating pack
14:12:45.037 [info] UploadPackV2: pack generated, 1647 bytes
14:12:45.038 [info] UploadPackV2: fetch response 1669 bytes
..
14:12:45.080 [info] UploadPackV2: processing fetch command
.
14:12:45.080 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.081 [info] UploadPackV2: collected 19 objects, generating pack
.
14:12:45.082 [info] UploadPackV2: pack generated, 1196 bytes
.
14:12:45.082 [info] UploadPackV2: fetch response 1218 bytes
.
14:12:45.090 [info] UploadPackV2: processing fetch command
.
14:12:45.090 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.091 [info] UploadPackV2: collected 7 objects, generating pack
.
14:12:45.091 [info] UploadPackV2: pack generated, 475 bytes
...........
14:12:45.091 [info] UploadPackV2: fetch response 497 bytes
.
14:12:45.094 [info] UploadPackV2: processing fetch command
.
14:12:45.094 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.098 [info] UploadPackV2: collected 23 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
.
14:12:45.099 [info] UploadPackV2: pack generated, 1435 bytes
.
14:12:45.099 [info] UploadPackV2: fetch response 1457 bytes
.
14:12:45.116 [info] The function passed as a handler with ID #Reference<0.3466505819.2277769218.229621> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:12:45.117 [info] UploadPackV2: processing fetch command
.
14:12:45.117 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.123 [info] UploadPackV2: collected 8 objects, generating pack
.
14:12:45.124 [info] UploadPackV2: pack generated, 482 bytes
.
14:12:45.124 [info] UploadPackV2: fetch response 504 bytes
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
.
14:12:45.127 [info] UploadPackV2: processing fetch command
.
14:12:45.127 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.129 [info] UploadPackV2: collected 27 objects, generating pack
.
14:12:45.130 [info] UploadPackV2: pack generated, 1678 bytes
.
14:12:45.131 [info] UploadPackV2: fetch response 1700 bytes
.
14:12:45.144 [info] UploadPackV2: processing fetch command
.
14:12:45.144 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.146 [info] UploadPackV2: collected 23 objects, generating pack
.
14:12:45.156 [info] UploadPackV2: pack generated, 1407 bytes
....
14:12:45.156 [info] UploadPackV2: fetch response 1429 bytes
.
14:12:45.170 [info] UploadPackV2: processing fetch command
.
14:12:45.170 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.174 [info] UploadPackV2: collected 24 objects, generating pack
.
14:12:45.174 [info] UploadPackV2: pack generated, 1443 bytes
.
14:12:45.174 [info] UploadPackV2: fetch response 1465 bytes
.
14:12:45.187 [info] UploadPackV2: processing fetch command
.
14:12:45.187 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.190 [info] UploadPackV2: collected 15 objects, generating pack
.
14:12:45.192 [info] UploadPackV2: pack generated, 956 bytes
.
14:12:45.192 [info] UploadPackV2: fetch response 978 bytes
.
14:12:45.197 [info] UploadPackV2: processing ls-refs command
.
14:12:45.198 [info] UploadPackV2: processing fetch command
.
14:12:45.198 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.198 [info] UploadPackV2: collected 3 objects, generating pack
.
14:12:45.199 [info] UploadPackV2: pack generated, 195 bytes
.
14:12:45.199 [info] UploadPackV2: fetch response 217 bytes
.
14:12:45.203 [info] UploadPackV2: processing fetch command
.
14:12:45.203 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.207 [info] UploadPackV2: collected 9 objects, streaming pack
.
14:12:45.208 [info] UploadPackV2: processing fetch command
.
14:12:45.211 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.211 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
14:12:45.212 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
14:12:45.214 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
14:12:45.216 [info] UploadPackV2: collected 51 objects, generating pack
14:12:45.220 [info] UploadPackV2: processing fetch command
14:12:45.220 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:12:45.220 [info] UploadPackV2: fetch response 73 bytes
14:12:45.220 [info] UploadPackV2: processing fetch command
14:12:45.220 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:12:45.221 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
14:12:45.221 [info] UploadPackV2: pack generated, 3070 bytes
14:12:45.222 [info] UploadPackV2: fetch response 3092 bytes
14:12:45.245 [info] UploadPackV2: processing fetch command
14:12:45.245 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.251 [info] UploadPackV2: collected 35 objects, generating pack
14:12:45.253 [info] UploadPackV2: pack generated, 2102 bytes
14:12:45.255 [info] UploadPackV2: fetch response 2124 bytes
14:12:45.274 [info] UploadPackV2: processing fetch command
14:12:45.274 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.275 [info] UploadPackV2: collected 12 objects, generating pack
14:12:45.276 [info] UploadPackV2: pack generated, 723 bytes
14:12:45.276 [info] UploadPackV2: fetch response 745 bytes
14:12:45.291 [info] UploadPackV2: processing fetch command
14:12:45.405 [info] UploadPackV2: processing fetch command
14:12:45.405 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.406 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.408 [info] UploadPackV2: collected 30 objects, generating pack
14:12:45.408 [info] UploadPackV2: pack generated, 1861 bytes
14:12:45.409 [info] UploadPackV2: fetch response 1883 bytes
.
14:12:45.415 [info] UploadPackV2: processing fetch command
14:12:45.416 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.417 [info] UploadPackV2: collected 26 objects, generating pack
14:12:45.417 [info] UploadPackV2: pack generated, 1619 bytes
14:12:45.418 [info] UploadPackV2: fetch response 1641 bytes
14:12:45.425 [info] UploadPackV2: processing fetch command
14:12:45.425 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.426 [info] UploadPackV2: collected 16 objects, generating pack
14:12:45.426 [info] UploadPackV2: pack generated, 962 bytes
14:12:45.427 [info] UploadPackV2: fetch response 984 bytes
14:12:45.431 [info] UploadPackV2: processing fetch command
14:12:45.431 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.432 [info] UploadPackV2: collected 19 objects, generating pack
14:12:45.433 [info] UploadPackV2: pack generated, 1196 bytes
14:12:45.433 [info] UploadPackV2: fetch response 1218 bytes
14:12:45.454 [info] UploadPackV2: processing fetch command
14:12:45.456 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.458 [info] UploadPackV2: collected 26 objects, generating pack
14:12:45.458 [info] UploadPackV2: pack generated, 1886 bytes
14:12:45.459 [info] UploadPackV2: fetch response 1908 bytes
14:12:45.486 [info] UploadPackV2: processing fetch command
14:12:45.488 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.491 [info] UploadPackV2: collected 18 objects, generating pack
14:12:45.492 [info] UploadPackV2: collected 600 objects, generating pack
14:12:45.494 [info] UploadPackV2: pack generated, 1281 bytes
14:12:45.494 [info] UploadPackV2: fetch response 1303 bytes
14:12:45.519 [info] UploadPackV2: processing fetch command
14:12:45.519 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.524 [info] UploadPackV2: collected 23 objects, generating pack
14:12:45.525 [info] UploadPackV2: pack generated, 1672 bytes
14:12:45.525 [info] UploadPackV2: fetch response 1694 bytes
14:12:45.524 [info] UploadPackV2: pack generated, 39862 bytes
14:12:45.525 [info] UploadPackV2: fetch response 39884 bytes
14:12:45.548 [info] UploadPackV2: processing fetch command
14:12:45.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.552 [info] UploadPackV2: collected 9 objects, generating pack
14:12:45.552 [info] UploadPackV2: pack generated, 642 bytes
14:12:45.552 [info] UploadPackV2: fetch response 664 bytes
14:12:45.568 [info] UploadPackV2: processing fetch command
14:12:45.568 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.574 [info] UploadPackV2: collected 32 objects, generating pack
14:12:45.576 [info] UploadPackV2: pack generated, 2301 bytes
14:12:45.576 [info] UploadPackV2: fetch response 2323 bytes
14:12:45.589 [info] UploadPackV2: processing fetch command
14:12:45.589 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.590 [info] UploadPackV2: collected 11 objects, generating pack
14:12:45.591 [info] UploadPackV2: pack generated, 853 bytes
14:12:45.591 [info] UploadPackV2: fetch response 875 bytes
14:12:45.615 [info] UploadPackV2: processing fetch command
14:12:45.615 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.619 [info] UploadPackV2: collected 31 objects, generating pack
14:12:45.621 [info] UploadPackV2: pack generated, 2298 bytes
14:12:45.621 [info] UploadPackV2: fetch response 2320 bytes
14:12:45.643 [info] UploadPackV2: processing fetch command
14:12:45.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.644 [info] UploadPackV2: collected 11 objects, generating pack
14:12:45.644 [info] UploadPackV2: pack generated, 853 bytes
14:12:45.644 [info] UploadPackV2: fetch response 875 bytes
..........
14:12:45.663 [info] UploadPackV2: processing fetch command
.
14:12:45.663 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:12:45.665 [info] UploadPackV2: collected 28 objects, generating pack
.
14:12:45.666 [info] UploadPackV2: pack generated, 2085 bytes
.
14:12:45.667 [info] UploadPackV2: fetch response 2107 bytes
.
14:12:45.675 [info] UploadPackV2: processing fetch command
.
14:12:45.675 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.676 [info] UploadPackV2: collected 0 objects, generating pack
.
14:12:45.676 [info] UploadPackV2: pack generated, 32 bytes
.
14:12:45.676 [info] UploadPackV2: fetch response 54 bytes
.
14:12:45.676 [info] UploadPackV2: processing fetch command
.
14:12:45.677 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:12:45.678 [info] UploadPackV2: processing fetch command
.
14:12:45.678 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.679 [info] UploadPackV2: collected 15 objects, generating pack
.
14:12:45.679 [info] UploadPackV2: pack generated, 984 bytes
.
14:12:45.679 [info] UploadPackV2: fetch response 1006 bytes
...
14:12:45.681 [info] UploadPackV2: processing fetch command
.
14:12:45.682 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:45.682 [info] UploadPackV2: collected 3 objects, generating pack
.
14:12:45.682 [info] UploadPackV2: pack generated, 191 bytes
.
14:12:45.682 [info] UploadPackV2: fetch response 213 bytes
.
14:12:45.683 [info] UploadPackV2: processing ls-refs command
.
14:12:45.683 [info] UploadPackV2: processing fetch command
.
14:12:45.683 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.683 [info] UploadPackV2: collected 3 objects, generating pack
14:12:45.683 [info] UploadPackV2: pack generated, 206 bytes
14:12:45.683 [info] UploadPackV2: fetch response 228 bytes
14:12:45.685 [info] UploadPackV2: collected 18 objects, generating pack
14:12:45.687 [info] UploadPackV2: pack generated, 1281 bytes
14:12:45.687 [info] UploadPackV2: fetch response 1303 bytes
14:12:45.701 [info] UploadPackV2: processing fetch command
14:12:45.701 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.703 [info] UploadPackV2: collected 20 objects, generating pack
14:12:45.704 [info] UploadPackV2: pack generated, 1450 bytes
14:12:45.704 [info] UploadPackV2: fetch response 1472 bytes
14:12:45.712 [info] UploadPackV2: processing fetch command
14:12:45.712 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.713 [info] UploadPackV2: collected 17 objects, generating pack
14:12:45.714 [info] UploadPackV2: pack generated, 1247 bytes
14:12:45.714 [info] UploadPackV2: fetch response 1269 bytes
14:12:45.720 [info] UploadPackV2: processing fetch command
14:12:45.720 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.720 [info] UploadPackV2: collected 5 objects, generating pack
14:12:45.721 [info] UploadPackV2: pack generated, 424 bytes
14:12:45.721 [info] UploadPackV2: fetch response 446 bytes
14:12:45.725 [info] UploadPackV2: processing fetch command
14:12:45.725 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.726 [info] UploadPackV2: collected 20 objects, generating pack
14:12:45.727 [info] UploadPackV2: pack generated, 1450 bytes
14:12:45.727 [info] UploadPackV2: fetch response 1472 bytes
14:12:45.738 [info] UploadPackV2: processing fetch command
14:12:45.738 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.739 [info] UploadPackV2: collected 5 objects, generating pack
14:12:45.739 [info] UploadPackV2: pack generated, 424 bytes
14:12:45.739 [info] UploadPackV2: fetch response 446 bytes
14:12:45.749 [info] UploadPackV2: processing fetch command
14:12:45.749 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.751 [info] UploadPackV2: collected 25 objects, generating pack
14:12:45.753 [info] UploadPackV2: pack generated, 1870 bytes
14:12:45.753 [info] UploadPackV2: fetch response 1892 bytes
14:12:45.762 [info] UploadPackV2: processing fetch command
14:12:45.762 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.763 [info] UploadPackV2: collected 12 objects, generating pack
14:12:45.764 [info] UploadPackV2: pack generated, 854 bytes
14:12:45.764 [info] UploadPackV2: fetch response 876 bytes
14:12:45.771 [info] UploadPackV2: processing fetch command
14:12:45.771 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.774 [info] UploadPackV2: collected 12 objects, generating pack
14:12:45.774 [info] UploadPackV2: pack generated, 854 bytes
14:12:45.775 [info] UploadPackV2: fetch response 876 bytes
14:12:45.786 [info] UploadPackV2: processing fetch command
14:12:45.786 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.787 [info] UploadPackV2: collected 22 objects, generating pack
14:12:45.817 [info] UploadPackV2: processing fetch command
14:12:45.833 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.834 [info] UploadPackV2: pack generated, 1658 bytes
14:12:45.834 [info] UploadPackV2: fetch response 1680 bytes
14:12:45.842 [info] UploadPackV2: collected 32 objects, generating pack
14:12:45.843 [info] UploadPackV2: processing fetch command
14:12:45.844 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.844 [info] UploadPackV2: collected 18 objects, generating pack
14:12:45.845 [info] UploadPackV2: pack generated, 1249 bytes
14:12:45.848 [info] UploadPackV2: fetch response 1271 bytes
14:12:45.861 [info] UploadPackV2: processing fetch command
14:12:45.862 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.862 [info] UploadPackV2: collected 9 objects, generating pack
.
14:12:45.863 [info] UploadPackV2: pack generated, 610 bytes
.
14:12:45.863 [info] UploadPackV2: fetch response 632 bytes
14:12:45.870 [info] UploadPackV2: processing fetch command
14:12:45.870 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.872 [info] UploadPackV2: collected 23 objects, generating pack
14:12:45.873 [info] UploadPackV2: pack generated, 1661 bytes
14:12:45.873 [info] UploadPackV2: fetch response 1683 bytes
14:12:45.886 [info] UploadPackV2: processing fetch command
14:12:45.886 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.887 [info] UploadPackV2: collected 15 objects, generating pack
14:12:45.888 [info] UploadPackV2: pack generated, 1035 bytes
14:12:45.888 [info] UploadPackV2: fetch response 1057 bytes
14:12:45.905 [info] UploadPackV2: processing fetch command
14:12:45.905 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.907 [info] UploadPackV2: collected 30 objects, generating pack
14:12:45.908 [info] UploadPackV2: pack generated, 2102 bytes
14:12:45.908 [info] UploadPackV2: fetch response 2124 bytes
14:12:45.927 [info] UploadPackV2: processing fetch command
14:12:45.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.929 [info] UploadPackV2: collected 20 objects, generating pack
14:12:45.932 [info] UploadPackV2: pack generated, 1490 bytes
14:12:45.933 [info] UploadPackV2: fetch response 1512 bytes
14:12:45.954 [info] UploadPackV2: processing fetch command
14:12:45.954 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.955 [info] UploadPackV2: collected 8 objects, generating pack
14:12:45.956 [info] UploadPackV2: pack generated, 636 bytes
14:12:45.956 [info] UploadPackV2: fetch response 658 bytes
14:12:45.964 [info] UploadPackV2: processing fetch command
14:12:45.964 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.965 [info] UploadPackV2: collected 12 objects, generating pack
14:12:45.967 [info] UploadPackV2: pack generated, 854 bytes
14:12:45.967 [info] UploadPackV2: fetch response 876 bytes
14:12:45.971 [info] UploadPackV2: pack generated, 2459815 bytes
14:12:45.980 [info] UploadPackV2: fetch response 2460022 bytes
14:12:45.980 [info] UploadPackV2: processing fetch command
14:12:45.980 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:45.984 [info] UploadPackV2: processing fetch command
14:12:45.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:45.987 [info] UploadPackV2: collected 20 objects, generating pack
14:12:45.988 [info] UploadPackV2: pack generated, 1490 bytes
14:12:45.988 [info] UploadPackV2: fetch response 1512 bytes
14:12:45.997 [info] UploadPackV2: collected 32 objects, streaming pack
14:12:46.002 [info] UploadPackV2: processing fetch command
14:12:46.002 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.003 [info] UploadPackV2: collected 18 objects, generating pack
14:12:46.004 [info] UploadPackV2: pack generated, 1281 bytes
14:12:46.004 [info] UploadPackV2: fetch response 1303 bytes
14:12:46.018 [info] UploadPackV2: processing fetch command
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
14:12:46.018 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.019 [info] UploadPackV2: collected 5 objects, generating pack
14:12:46.019 [info] UploadPackV2: pack generated, 424 bytes
14:12:46.019 [info] UploadPackV2: fetch response 446 bytes
14:12:46.028 [info] UploadPackV2: processing fetch command
14:12:46.028 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.037 [info] UploadPackV2: collected 20 objects, generating pack
14:12:46.038 [info] UploadPackV2: pack generated, 1492 bytes
14:12:46.038 [info] UploadPackV2: fetch response 1514 bytes
14:12:46.052 [info] UploadPackV2: processing fetch command
14:12:46.052 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.054 [info] UploadPackV2: collected 17 objects, generating pack
14:12:46.054 [info] UploadPackV2: pack generated, 1276 bytes
14:12:46.054 [info] UploadPackV2: fetch response 1298 bytes
14:12:46.076 [info] UploadPackV2: processing fetch command
14:12:46.076 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.077 [info] UploadPackV2: collected 15 objects, generating pack
14:12:46.078 [info] UploadPackV2: pack generated, 1068 bytes
14:12:46.078 [info] UploadPackV2: fetch response 1090 bytes
14:12:46.084 [info] UploadPackV2: processing fetch command
14:12:46.084 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.085 [info] UploadPackV2: collected 20 objects, generating pack
14:12:46.086 [info] UploadPackV2: pack generated, 1490 bytes
14:12:46.086 [info] UploadPackV2: fetch response 1512 bytes
14:12:46.095 [info] UploadPackV2: processing fetch command
14:12:46.095 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.096 [info] UploadPackV2: collected 21 objects, generating pack
14:12:46.099 [info] UploadPackV2: pack generated, 1463 bytes
14:12:46.099 [info] UploadPackV2: fetch response 1485 bytes
14:12:46.107 [info] UploadPackV2: processing fetch command
14:12:46.107 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.108 [info] UploadPackV2: collected 17 objects, generating pack
14:12:46.109 [info] UploadPackV2: pack generated, 1276 bytes
14:12:46.109 [info] UploadPackV2: fetch response 1298 bytes
14:12:46.116 [info] UploadPackV2: processing fetch command
14:12:46.122 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.122 [info] UploadPackV2: collected 3 objects, generating pack
14:12:46.122 [info] UploadPackV2: pack generated, 214 bytes
14:12:46.123 [info] UploadPackV2: fetch response 236 bytes
14:12:46.127 [info] UploadPackV2: processing fetch command
14:12:46.127 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.128 [info] UploadPackV2: collected 18 objects, generating pack
14:12:46.129 [info] UploadPackV2: pack generated, 1281 bytes
.
14:12:46.129 [info] UploadPackV2: fetch response 1303 bytes
.
14:12:46.160 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
14:12:46.160 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
14:12:46.169 [info] UploadPackV2: processing fetch command
14:12:46.169 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.170 [info] UploadPackV2: processing fetch command
.
14:12:46.170 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
..
14:12:46.171 [info] UploadPackV2: collected 3 objects, generating pack
14:12:46.171 [info] UploadPackV2: pack generated, 195 bytes
14:12:46.171 [info] UploadPackV2: fetch response 217 bytes
14:12:46.171 [info] UploadPackV2: collected 36 objects, generating pack
14:12:46.172 [info] UploadPackV2: pack generated, 2530 bytes
14:12:46.172 [info] UploadPackV2: fetch response 2552 bytes
14:12:46.175 [info] UploadPackV2: processing fetch command
14:12:46.176 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.183 [info] UploadPackV2: collected 15 objects, generating pack
14:12:46.184 [info] UploadPackV2: pack generated, 984 bytes
14:12:46.184 [info] UploadPackV2: fetch response 1006 bytes
14:12:46.184 [info] UploadPackV2: processing fetch command
14:12:46.184 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.185 [info] UploadPackV2: collected 15 objects, streaming pack
.
14:12:46.189 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
14:12:46.189 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
14:12:46.190 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
14:12:46.208 [info] UploadPackV2: processing fetch command
14:12:46.208 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:46.219 [info] UploadPackV2: collected 14 objects, generating pack
14:12:46.233 [info] UploadPackV2: pack generated, 1064 bytes
14:12:46.233 [info] UploadPackV2: fetch response 1086 bytes
14:12:46.356 [info] UploadPackV2: processing fetch command
14:12:46.356 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.368 [info] UploadPackV2: collected 32 objects, streaming pack
14:12:46.550 [info] UploadPackV2: streamed pack 2459749 bytes, 32 objects
14:12:46.550 [info] UploadPackV2: fetch streamed 2459749 pack bytes, 32 objects
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()
...
14:12:46.736 [info] UploadPackV2: processing ls-refs command
.
14:12:46.747 [info] UploadPackV2: processing ls-refs command
14:12:46.747 [info] UploadPackV2: processing fetch command
14:12:46.747 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.747 [info] UploadPackV2: collected 3 objects, generating pack
14:12:46.748 [info] UploadPackV2: pack generated, 210 bytes
14:12:46.748 [info] UploadPackV2: fetch response 232 bytes
..
14:12:46.838 [info] UploadPackV2: processing fetch command
14:12:46.838 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.872 [info] UploadPackV2: collected 700 objects, generating pack
14:12:46.885 [info] UploadPackV2: pack generated, 48139 bytes
14:12:46.885 [info] UploadPackV2: fetch response 48161 bytes
..
14:12:46.973 [info] UploadPackV2: processing fetch command
14:12:46.973 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.974 [info] UploadPackV2: collected 3 objects, generating pack
14:12:46.974 [info] UploadPackV2: pack generated, 223 bytes
14:12:46.974 [info] UploadPackV2: fetch response 245 bytes
.
14:12:46.975 [info] UploadPackV2: processing fetch command
14:12:46.975 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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)
│ ~
.
14:12:46.976 [info] UploadPackV2: collected 3 objects, generating pack
.
14:12:46.976 [info] UploadPackV2: pack generated, 191 bytes
14:12:46.976 [info] UploadPackV2: fetch response 213 bytes
14:12:46.977 [info] UploadPackV2: processing ls-refs command
14:12:46.977 [info] UploadPackV2: processing ls-refs command
14:12:46.980 [info] UploadPackV2: processing fetch command
.
14:12:46.980 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.981 [info] UploadPackV2: collected 6 objects, generating pack
14:12:46.981 [info] UploadPackV2: pack generated, 414 bytes
14:12:46.981 [info] UploadPackV2: fetch response 436 bytes
14:12:46.990 [info] UploadPackV2: processing fetch command
14:12:46.990 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:46.996 [info] UploadPackV2: collected 90 objects, generating pack
14:12:46.998 [info] UploadPackV2: pack generated, 5946 bytes
14:12:46.998 [info] UploadPackV2: fetch response 5968 bytes
.
14:12:47.011 [info] UploadPackV2: processing fetch command
14:12:47.011 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:47.012 [info] UploadPackV2: collected 3 objects, streaming pack
14:12:47.016 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
14:12:47.016 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
.
14:12:47.019 [info] UploadPackV2: processing fetch command
14:12:47.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:47.020 [info] UploadPackV2: collected 3 objects, streaming pack
..
14:12:47.021 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
14:12:47.021 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
14:12:47.022 [info] UploadPackV2: processing fetch command
14:12:47.023 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:47.023 [info] UploadPackV2: collected 3 objects, generating pack
14:12:47.023 [info] UploadPackV2: pack generated, 194 bytes
14:12:47.023 [info] UploadPackV2: fetch response 216 bytes
14:12:47.024 [info] UploadPackV2: processing fetch command
14:12:47.024 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:47.025 [info] UploadPackV2: collected 3 objects, generating pack
14:12:47.025 [info] UploadPackV2: pack generated, 191 bytes
14:12:47.025 [info] UploadPackV2: fetch response 213 bytes
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
.............................
14:12:53.261 [info] UploadPackV2: processing ls-refs command
.
14:12:53.321 [info] UploadPackV2: processing ls-refs command
14:12:53.323 [info] UploadPackV2: processing fetch command
14:12:53.323 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:53.324 [info] UploadPackV2: collected 3 objects, generating pack
14:12:53.324 [info] UploadPackV2: pack generated, 218 bytes
14:12:53.324 [info] UploadPackV2: fetch response 314 bytes
.
14:12:53.401 [info] UploadPackV2: processing ls-refs command
14:12:53.403 [info] UploadPackV2: processing fetch command
14:12:53.403 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:53.404 [info] UploadPackV2: collected 9 objects, generating pack
14:12:53.404 [info] UploadPackV2: pack generated, 549 bytes
14:12:53.404 [info] UploadPackV2: fetch response 571 bytes
14:12:53.426 [info] UploadPackV2: processing fetch command
14:12:53.426 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:12:53.427 [info] UploadPackV2: fetch response 171 bytes
..
14:12:53.485 [info] UploadPackV2: processing ls-refs command
14:12:53.487 [info] UploadPackV2: processing fetch command
14:12:53.487 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:53.487 [info] UploadPackV2: collected 3 objects, generating pack
14:12:53.488 [info] UploadPackV2: pack generated, 216 bytes
14:12:53.488 [info] UploadPackV2: fetch response 312 bytes
.
14:12:53.561 [info] UploadPackV2: processing ls-refs command
14:12:53.564 [info] UploadPackV2: processing fetch command
14:12:53.564 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:53.565 [info] UploadPackV2: collected 6 objects, generating pack
14:12:53.566 [info] UploadPackV2: pack generated, 513 bytes
14:12:53.566 [info] UploadPackV2: fetch response 535 bytes
.
14:12:53.645 [info] UploadPackV2: processing ls-refs command
14:12:53.648 [info] UploadPackV2: processing fetch command
14:12:53.648 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:combine, [:blob_none, {:tree_depth, 1}]}, send_packfile=true
14:12:53.649 [info] UploadPackV2: collected 6 objects, generating pack
14:12:53.649 [info] UploadPackV2: pack generated, 513 bytes
14:12:53.650 [info] UploadPackV2: fetch response 535 bytes
..
14:12:53.725 [info] UploadPackV2: processing ls-refs command
.
14:12:53.777 [info] UploadPackV2: processing ls-refs command
.
14:12:53.829 [info] UploadPackV2: processing ls-refs command
14:12:53.831 [info] UploadPackV2: processing fetch command
14:12:53.831 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:53.832 [info] UploadPackV2: collected 9 objects, generating pack
14:12:53.832 [info] UploadPackV2: pack generated, 585 bytes
14:12:53.832 [info] UploadPackV2: fetch response 681 bytes
.
14:12:53.913 [info] UploadPackV2: processing ls-refs command
14:12:53.917 [info] UploadPackV2: processing fetch command
14:12:53.918 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
14:12:53.918 [info] UploadPackV2: collected 3 objects, generating pack
14:12:53.918 [info] UploadPackV2: pack generated, 381 bytes
14:12:53.918 [info] UploadPackV2: fetch response 403 bytes
.
14:12:53.993 [info] UploadPackV2: processing ls-refs command
14:12:53.997 [info] UploadPackV2: processing fetch command
14:12:53.997 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
14:12:53.998 [info] UploadPackV2: collected 5 objects, generating pack
14:12:53.999 [info] UploadPackV2: pack generated, 319 bytes
14:12:53.999 [info] UploadPackV2: fetch response 341 bytes
.
14:12:54.081 [info] UploadPackV2: processing ls-refs command
14:12:54.083 [info] UploadPackV2: processing fetch command
14:12:54.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:54.084 [info] UploadPackV2: collected 3 objects, generating pack
14:12:54.084 [info] UploadPackV2: pack generated, 216 bytes
14:12:54.084 [info] UploadPackV2: fetch response 312 bytes
14:12:54.149 [info] UploadPackV2: processing ls-refs command
14:12:54.150 [info] UploadPackV2: processing fetch command
14:12:54.150 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:54.150 [info] UploadPackV2: collected 12 objects, generating pack
14:12:54.151 [info] UploadPackV2: pack generated, 768 bytes
14:12:54.151 [info] UploadPackV2: fetch response 1002 bytes
.
14:12:54.217 [info] UploadPackV2: processing ls-refs command
.
14:12:54.281 [info] UploadPackV2: processing ls-refs command
14:12:54.286 [info] UploadPackV2: processing fetch command
14:12:54.286 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
14:12:54.287 [info] UploadPackV2: collected 3 objects, generating pack
14:12:54.287 [info] UploadPackV2: pack generated, 381 bytes
14:12:54.287 [info] UploadPackV2: fetch response 403 bytes
..
14:12:54.313 [info] The function passed as a handler with ID "graph-query-test-19747" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:12:54.317 [info] The function passed as a handler with ID "graph-query-test-9797" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
....
14:12:54.323 [info] The function passed as a handler with ID "graph-query-test-13762" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.......***********
14:12:54.359 [info] UploadPackV2: processing ls-refs command
14:12:54.362 [info] UploadPackV2: processing fetch command
14:12:54.362 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.363 [info] UploadPackV2: collected 6 objects, generating pack
14:12:54.363 [info] UploadPackV2: pack generated, 366 bytes
14:12:54.363 [info] UploadPackV2: fetch response 388 bytes
14:12:54.393 [info] UploadPackV2: processing ls-refs command
.
14:12:54.425 [info] UploadPackV2: processing ls-refs command
14:12:54.428 [info] UploadPackV2: processing fetch command
14:12:54.428 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.434 [info] UploadPackV2: collected 180 objects, generating pack
14:12:54.436 [info] UploadPackV2: pack generated, 11106 bytes
14:12:54.436 [info] UploadPackV2: fetch response 11128 bytes
..
14:12:54.520 [info] UploadPackV2: processing ls-refs command
14:12:54.523 [info] UploadPackV2: processing fetch command
14:12:54.523 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.523 [info] UploadPackV2: collected 3 objects, generating pack
14:12:54.523 [info] UploadPackV2: pack generated, 183 bytes
14:12:54.523 [info] UploadPackV2: fetch response 205 bytes
.
14:12:54.566 [info] UploadPackV2: processing ls-refs command
14:12:54.569 [info] UploadPackV2: processing fetch command
14:12:54.569 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.570 [info] UploadPackV2: collected 15 objects, generating pack
14:12:54.570 [info] UploadPackV2: pack generated, 919 bytes
14:12:54.570 [info] UploadPackV2: fetch response 941 bytes
.
14:12:54.686 [info] UploadPackV2: processing fetch command
14:12:54.686 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.686 [info] UploadPackV2: collected 3 objects, generating pack
14:12:54.687 [info] UploadPackV2: pack generated, 183 bytes
14:12:54.687 [info] UploadPackV2: fetch response 205 bytes
.
14:12:54.713 [info] UploadPackV2: processing ls-refs command
14:12:54.716 [info] UploadPackV2: processing fetch command
14:12:54.716 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.716 [info] UploadPackV2: collected 9 objects, generating pack
14:12:54.717 [info] UploadPackV2: pack generated, 549 bytes
14:12:54.717 [info] UploadPackV2: fetch response 571 bytes
14:12:54.748 [info] UploadPackV2: processing ls-refs command
.
14:12:54.817 [info] UploadPackV2: processing ls-refs command
14:12:54.818 [info] UploadPackV2: processing fetch command
14:12:54.818 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:54.819 [info] UploadPackV2: collected 3 objects, generating pack
14:12:54.819 [info] UploadPackV2: pack generated, 200 bytes
14:12:54.819 [info] UploadPackV2: fetch response 256 bytes
.
14:12:54.881 [info] UploadPackV2: processing ls-refs command
14:12:54.883 [info] UploadPackV2: processing fetch command
14:12:54.883 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.884 [info] UploadPackV2: collected 3 objects, generating pack
14:12:54.884 [info] UploadPackV2: pack generated, 196 bytes
14:12:54.884 [info] UploadPackV2: fetch response 218 bytes
.
14:12:54.961 [info] UploadPackV2: processing ls-refs command
14:12:54.963 [info] UploadPackV2: processing fetch command
14:12:54.963 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:54.964 [info] UploadPackV2: collected 15 objects, generating pack
14:12:54.965 [info] UploadPackV2: pack generated, 952 bytes
14:12:54.965 [info] UploadPackV2: fetch response 974 bytes
.
14:12:55.041 [info] UploadPackV2: processing ls-refs command
14:12:55.043 [info] UploadPackV2: processing fetch command
14:12:55.043 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:55.044 [info] UploadPackV2: collected 3 objects, generating pack
14:12:55.044 [info] UploadPackV2: pack generated, 185 bytes
14:12:55.044 [info] UploadPackV2: fetch response 207 bytes
14:12:55.113 [info] UploadPackV2: processing ls-refs command
.................................
14:12:56.601 [info] UploadPackV2: processing ls-refs command
14:12:56.603 [info] UploadPackV2: processing fetch command
14:12:56.603 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:56.603 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.603 [info] UploadPackV2: pack generated, 231 bytes
14:12:56.603 [info] UploadPackV2: fetch response 327 bytes
.
14:12:56.624 [info] UploadPackV2: processing fetch command
14:12:56.624 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.625 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.625 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.625 [info] UploadPackV2: fetch response 205 bytes
14:12:56.625 [info] UploadPackV2: processing fetch command
14:12:56.625 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.626 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.626 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.626 [info] UploadPackV2: fetch response 205 bytes
14:12:56.626 [info] UploadPackV2: processing fetch command
14:12:56.626 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.627 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.627 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.627 [info] UploadPackV2: fetch response 205 bytes
14:12:56.627 [info] UploadPackV2: processing fetch command
14:12:56.627 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.627 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.627 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.627 [info] UploadPackV2: fetch response 205 bytes
14:12:56.627 [info] UploadPackV2: processing fetch command
14:12:56.627 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.628 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.628 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.628 [info] UploadPackV2: fetch response 205 bytes
14:12:56.628 [info] UploadPackV2: processing fetch command
14:12:56.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.628 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.628 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.628 [info] UploadPackV2: fetch response 205 bytes
14:12:56.628 [info] UploadPackV2: processing fetch command
14:12:56.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.629 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.629 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.629 [info] UploadPackV2: fetch response 205 bytes
14:12:56.629 [info] UploadPackV2: processing fetch command
14:12:56.629 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.629 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.629 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.629 [info] UploadPackV2: fetch response 205 bytes
14:12:56.630 [info] UploadPackV2: processing fetch command
14:12:56.630 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.630 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.630 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.630 [info] UploadPackV2: fetch response 205 bytes
14:12:56.630 [info] UploadPackV2: processing fetch command
14:12:56.630 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.630 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.630 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.630 [info] UploadPackV2: fetch response 205 bytes
14:12:56.630 [info] UploadPackV2: processing fetch command
14:12:56.631 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.631 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.631 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.631 [info] UploadPackV2: fetch response 205 bytes
14:12:56.631 [info] UploadPackV2: processing fetch command
14:12:56.631 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.631 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.631 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.631 [info] UploadPackV2: fetch response 205 bytes
14:12:56.632 [info] UploadPackV2: processing fetch command
14:12:56.632 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.632 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.632 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.632 [info] UploadPackV2: fetch response 205 bytes
14:12:56.632 [info] UploadPackV2: processing fetch command
14:12:56.632 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.632 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.632 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.632 [info] UploadPackV2: fetch response 205 bytes
14:12:56.632 [info] UploadPackV2: processing fetch command
14:12:56.633 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.633 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.633 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.633 [info] UploadPackV2: fetch response 205 bytes
14:12:56.633 [info] UploadPackV2: processing fetch command
14:12:56.633 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.633 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.633 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.633 [info] UploadPackV2: fetch response 205 bytes
14:12:56.634 [info] UploadPackV2: processing fetch command
14:12:56.634 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.634 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.636 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.636 [info] UploadPackV2: fetch response 205 bytes
14:12:56.636 [info] UploadPackV2: processing fetch command
14:12:56.636 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.637 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.637 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.637 [info] UploadPackV2: fetch response 205 bytes
14:12:56.637 [info] UploadPackV2: processing fetch command
14:12:56.637 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.637 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.637 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.638 [info] UploadPackV2: fetch response 205 bytes
14:12:56.638 [info] UploadPackV2: processing fetch command
14:12:56.638 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:12:56.638 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.638 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.638 [info] UploadPackV2: fetch response 205 bytes
14:12:56.638 [info] UploadPackV2: processing fetch command
14:12:56.638 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.639 [info] UploadPackV2: collected 3 objects, generating pack
14:12:56.639 [info] UploadPackV2: pack generated, 183 bytes
14:12:56.639 [info] UploadPackV2: fetch response 205 bytes
14:12:56.689 [info] UploadPackV2: processing ls-refs command
.
14:12:56.757 [info] UploadPackV2: processing ls-refs command
14:12:56.759 [info] UploadPackV2: processing fetch command
14:12:56.759 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.766 [info] UploadPackV2: collected 240 objects, generating pack
14:12:56.770 [info] UploadPackV2: pack generated, 16258 bytes
14:12:56.770 [info] UploadPackV2: fetch response 16280 bytes
.
14:12:56.901 [info] UploadPackV2: processing ls-refs command
14:12:56.903 [info] UploadPackV2: processing fetch command
14:12:56.903 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.927 [info] UploadPackV2: collected 600 objects, generating pack
14:12:56.945 [info] UploadPackV2: pack generated, 45197 bytes
14:12:56.945 [info] UploadPackV2: fetch response 45219 bytes
.
14:12:56.985 [info] UploadPackV2: processing fetch command
14:12:56.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:56.985 [info] UploadPackV2: collected 0 objects, generating pack
14:12:56.985 [info] UploadPackV2: pack generated, 32 bytes
14:12:56.985 [info] UploadPackV2: fetch response 54 bytes
.
14:12:57.237 [info] UploadPackV2: processing ls-refs command
.
14:12:57.248 [info] The function passed as a handler with ID "telemetry-test-25443" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
14:12:57.249 [info] UploadPackV2: processing fetch command
14:12:57.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:12:57.250 [info] UploadPackV2: collected 2 objects, generating pack
14:12:57.250 [info] UploadPackV2: pack generated, 169 bytes
14:12:57.250 [info] UploadPackV2: fetch response 191 bytes
.
14:12:57.250 [info] The function passed as a handler with ID "telemetry-test-13890" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
14:12:57.251 [info] UploadPackV2: processing fetch command
.
14:12:57.251 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:12:57.251 [info] UploadPackV2: collected 3 objects, generating pack
14:12:57.251 [info] UploadPackV2: pack generated, 186 bytes
14:12:57.251 [info] UploadPackV2: fetch response 208 bytes
14:12:57.252 [info] The function passed as a handler with ID "telemetry-test-25475" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
14:12:57.253 [info] UploadPackV2: processing fetch command
14:12:57.253 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:12:57.253 [info] UploadPackV2: collected 3 objects, generating pack
.
14:12:57.253 [info] UploadPackV2: pack generated, 183 bytes
14:12:57.253 [info] UploadPackV2: fetch response 205 bytes
14:12:57.260 [info] The function passed as a handler with ID "telemetry-test-13922" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:13:12.389 [info] UploadPackV2: processing ls-refs command
14:13:12.391 [info] UploadPackV2: processing fetch command
14:13:12.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:12.392 [info] UploadPackV2: collected 3 objects, generating pack
14:13:12.392 [info] UploadPackV2: pack generated, 185 bytes
14:13:12.392 [info] UploadPackV2: fetch response 207 bytes
.
14:13:12.469 [info] UploadPackV2: processing ls-refs command
14:13:12.471 [info] UploadPackV2: processing fetch command
14:13:12.471 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:12.471 [info] UploadPackV2: collected 3 objects, generating pack
14:13:12.471 [info] UploadPackV2: pack generated, 196 bytes
14:13:12.471 [info] UploadPackV2: fetch response 218 bytes
..
14:13:27.563 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303397982" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:13:27.563 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303397950" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:13:27.564 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303397918" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:13:27.564 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303397886" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:13:27.564 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303397854" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
14:13:27.564 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303397822" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
14:13:27.565 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303397790" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
14:13:27.566 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303397758" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
14:13:27.637 [info] UploadPackV2: processing ls-refs command
14:13:27.639 [info] UploadPackV2: processing fetch command
14:13:27.639 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:27.639 [info] UploadPackV2: collected 9 objects, generating pack
14:13:27.640 [info] UploadPackV2: pack generated, 547 bytes
14:13:27.640 [info] UploadPackV2: fetch response 569 bytes
14:13:27.721 [info] UploadPackV2: processing ls-refs command
.
14:13:27.845 [info] UploadPackV2: processing ls-refs command
14:13:27.847 [info] UploadPackV2: processing fetch command
14:13:27.847 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:27.847 [info] UploadPackV2: collected 6 objects, generating pack
14:13:27.847 [info] UploadPackV2: pack generated, 365 bytes
14:13:27.848 [info] UploadPackV2: fetch response 387 bytes
14:13:30.221 [info] UploadPackV2: processing ls-refs command
.
14:13:30.281 [info] UploadPackV2: processing ls-refs command
14:13:30.283 [info] UploadPackV2: processing fetch command
14:13:30.283 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:30.283 [info] UploadPackV2: collected 6 objects, generating pack
14:13:30.284 [info] UploadPackV2: pack generated, 365 bytes
14:13:30.284 [info] UploadPackV2: fetch response 387 bytes
14:13:30.328 [info] UploadPackV2: processing fetch command
14:13:30.328 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:13:30.328 [info] UploadPackV2: fetch response 122 bytes
.
14:13:30.409 [info] UploadPackV2: processing ls-refs command
14:13:30.411 [info] UploadPackV2: processing fetch command
14:13:30.411 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:30.412 [info] UploadPackV2: collected 6 objects, generating pack
14:13:30.412 [info] UploadPackV2: pack generated, 365 bytes
14:13:30.412 [info] UploadPackV2: fetch response 387 bytes
.
14:13:45.469 [info] UploadPackV2: processing ls-refs command
14:13:45.471 [info] UploadPackV2: processing fetch command
14:13:45.471 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:45.472 [info] UploadPackV2: collected 6 objects, generating pack
14:13:45.472 [info] UploadPackV2: pack generated, 366 bytes
14:13:45.472 [info] UploadPackV2: fetch response 388 bytes
14:13:45.541 [info] UploadPackV2: processing ls-refs command
14:13:45.542 [info] UploadPackV2: processing fetch command
14:13:45.542 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:13:45.542 [info] UploadPackV2: fetch response 32 bytes
14:13:45.542 [info] UploadPackV2: processing fetch command
14:13:45.542 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:45.543 [info] UploadPackV2: collected 3 objects, generating pack
14:13:45.543 [info] UploadPackV2: pack generated, 183 bytes
14:13:45.543 [info] UploadPackV2: fetch response 205 bytes
.
14:13:45.617 [info] UploadPackV2: processing ls-refs command
14:13:45.618 [info] UploadPackV2: processing fetch command
14:13:45.618 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:13:45.618 [info] UploadPackV2: collected 3 objects, generating pack
14:13:45.619 [info] UploadPackV2: pack generated, 216 bytes
14:13:45.619 [info] UploadPackV2: fetch response 346 bytes
.
14:13:45.681 [info] UploadPackV2: processing ls-refs command
14:13:45.683 [info] UploadPackV2: processing fetch command
14:13:45.683 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:45.684 [info] UploadPackV2: collected 6 objects, generating pack
14:13:45.684 [info] UploadPackV2: pack generated, 365 bytes
14:13:45.684 [info] UploadPackV2: fetch response 387 bytes
14:13:45.685 [info] UploadPackV2: processing ls-refs command
14:13:45.687 [info] UploadPackV2: processing fetch command
14:13:45.688 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:45.688 [info] UploadPackV2: collected 6 objects, generating pack
14:13:45.688 [info] UploadPackV2: pack generated, 365 bytes
14:13:45.688 [info] UploadPackV2: fetch response 387 bytes
.
14:13:45.720 [info] UploadPackV2: processing fetch command
14:13:45.720 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:45.721 [info] UploadPackV2: collected 3 objects, generating pack
14:13:45.721 [info] UploadPackV2: pack generated, 183 bytes
.
14:13:45.721 [info] UploadPackV2: fetch response 205 bytes
14:13:45.797 [info] UploadPackV2: processing ls-refs command
14:13:45.799 [info] UploadPackV2: processing fetch command
14:13:45.799 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:45.803 [info] UploadPackV2: collected 90 objects, generating pack
14:13:45.805 [info] UploadPackV2: pack generated, 5649 bytes
14:13:45.805 [info] UploadPackV2: fetch response 5671 bytes
14:13:46.113 [info] UploadPackV2: processing ls-refs command
.
14:13:46.169 [info] UploadPackV2: processing ls-refs command
14:13:46.171 [info] UploadPackV2: processing fetch command
14:13:46.171 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:13:46.171 [info] UploadPackV2: collected 6 objects, generating pack
14:13:46.172 [info] UploadPackV2: pack generated, 365 bytes
14:13:46.172 [info] UploadPackV2: fetch response 387 bytes
.....
14:15:01.605 [info] UploadPackV2: processing ls-refs command
14:15:01.607 [info] UploadPackV2: processing fetch command
14:15:01.607 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:15:01.607 [info] UploadPackV2: collected 3 objects, generating pack
14:15:01.608 [info] UploadPackV2: pack generated, 183 bytes
14:15:01.608 [info] UploadPackV2: fetch response 205 bytes
...
14:15:46.913 [info] UploadPackV2: processing ls-refs command
14:15:46.915 [info] UploadPackV2: processing fetch command
14:15:46.915 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:15:46.916 [info] UploadPackV2: collected 6 objects, generating pack
14:15:46.916 [info] UploadPackV2: pack generated, 365 bytes
14:15:46.916 [info] UploadPackV2: fetch response 387 bytes
.
14:15:47.005 [info] UploadPackV2: processing ls-refs command
14:15:47.007 [info] UploadPackV2: processing fetch command
14:15:47.007 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:15:47.008 [info] UploadPackV2: collected 3 objects, generating pack
14:15:47.008 [info] UploadPackV2: pack generated, 183 bytes
14:15:47.008 [info] UploadPackV2: fetch response 205 bytes
.
14:15:47.137 [info] UploadPackV2: processing ls-refs command
14:15:47.139 [info] UploadPackV2: processing fetch command
14:15:47.140 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:15:47.140 [info] UploadPackV2: collected 3 objects, generating pack
14:15:47.140 [info] UploadPackV2: pack generated, 201 bytes
14:15:47.141 [info] UploadPackV2: fetch response 223 bytes
.
Finished in 208.5 seconds (19.5s async, 189.0s sync)
Result: 968 passed (2 properties, 966 tests), 11 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"]
LCOV written to cover/lcov.info