fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Started: Jul 10, 2026 at 16:06 UTC
Completed: Jul 10, 2026 at 16:10 UTC
Duration: 3m 32s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 2 files (.ex)
Cover compiling modules ...
Running ExUnit with seed: 882316, max_cases: 8
Excluding tags: [:s3]
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 "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: the variable "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
.............................................................................................................................................
16:06:59.860 [info] The function passed as a handler with ID #Reference<0.1085166687.2822766596.31416> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
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
................................................................................................................................................
16:07:00.679 [info] The function passed as a handler with ID "test-#Reference<0.1085166687.2822766595.34284>" 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
..
16:07:00.687 [info] The function passed as a handler with ID "test-fail-#Reference<0.1085166687.2822766595.34403>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
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 "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: 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
............................................................................
16:07:02.838 [info] UploadPackV2: processing fetch command
16:07:02.838 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
16:07:02.851 [info] UploadPackV2: reused pack 12122 bytes, 160 objects
.
16:07:02.851 [info] UploadPackV2: fetch response 12144 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
│
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 "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
......................................................................................................................................
16:07:03.447 [info] UploadPackV2: processing fetch command
16:07:03.447 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.448 [info] UploadPackV2: collected 20 objects, generating pack
16:07:03.450 [info] UploadPackV2: pack generated, 1203 bytes
16:07:03.451 [info] UploadPackV2: fetch response 1225 bytes
......
16:07:03.575 [info] UploadPackV2: processing fetch command
16:07:03.575 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.576 [info] UploadPackV2: collected 46 objects, generating pack
16:07:03.577 [info] UploadPackV2: pack generated, 2816 bytes
16:07:03.577 [info] UploadPackV2: fetch response 2838 bytes
16:07:03.585 [info] UploadPackV2: processing fetch command
16:07:03.585 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.588 [info] UploadPackV2: collected 27 objects, generating pack
16:07:03.588 [info] UploadPackV2: pack generated, 1625 bytes
.......
16:07:03.589 [info] UploadPackV2: fetch response 1647 bytes
16:07:05.508 [notice] Handler :default switched from :sync to :drop mode
16:07:03.595 [info] UploadPackV2: processing fetch command
.
16:07:03.595 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.596 [info] UploadPackV2: collected 24 objects, generating pack
.
16:07:03.596 [info] UploadPackV2: pack generated, 1443 bytes
.
16:07:03.596 [info] UploadPackV2: fetch response 1465 bytes
.
16:07:03.600 [info] UploadPackV2: processing fetch command
.
16:07:03.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.600 [info] UploadPackV2: collected 7 objects, generating pack
.
16:07:03.601 [info] UploadPackV2: pack generated, 475 bytes
.
16:07:03.601 [info] UploadPackV2: fetch response 497 bytes
.
16:07:03.604 [info] UploadPackV2: processing fetch command
.
16:07:03.604 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.605 [info] UploadPackV2: collected 43 objects, generating pack
.
16:07:03.606 [info] UploadPackV2: pack generated, 2607 bytes
.
16:07:03.606 [info] UploadPackV2: fetch response 2629 bytes
16:07:03.612 [info] UploadPackV2: processing fetch command
.
16:07:03.612 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.612 [info] UploadPackV2: collected 4 objects, generating pack
.
16:07:03.613 [info] UploadPackV2: pack generated, 241 bytes
.
16:07:03.613 [info] UploadPackV2: fetch response 263 bytes
.
16:07:03.616 [info] UploadPackV2: processing fetch command
.
16:07:03.616 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.617 [info] UploadPackV2: collected 43 objects, generating pack
.
16:07:03.618 [info] UploadPackV2: pack generated, 2577 bytes
.
16:07:03.618 [info] UploadPackV2: fetch response 2599 bytes
.
16:07:03.622 [info] UploadPackV2: processing fetch command
16:07:03.623 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.623 [info] UploadPackV2: collected 4 objects, generating pack
16:07:03.623 [info] UploadPackV2: pack generated, 241 bytes
16:07:03.623 [info] UploadPackV2: fetch response 263 bytes
16:07:03.625 [info] UploadPackV2: processing fetch command
16:07:03.625 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.625 [info] UploadPackV2: collected 20 objects, generating pack
16:07:03.625 [info] UploadPackV2: pack generated, 1172 bytes
16:07:03.626 [info] UploadPackV2: fetch response 1194 bytes
.
16:07:03.629 [info] UploadPackV2: processing fetch command
.
16:07:03.629 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.630 [info] UploadPackV2: collected 19 objects, generating pack
.
16:07:03.630 [info] UploadPackV2: pack generated, 1164 bytes
.
16:07:03.630 [info] UploadPackV2: fetch response 1186 bytes
.
16:07:03.634 [info] UploadPackV2: processing fetch command
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
.
16:07:03.635 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.636 [info] UploadPackV2: collected 51 objects, generating pack
.
16:07:03.637 [info] UploadPackV2: pack generated, 3058 bytes
.
16:07:03.637 [info] UploadPackV2: fetch response 3080 bytes
.
16:07:03.642 [info] UploadPackV2: processing fetch command
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
.
16:07:03.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.643 [info] UploadPackV2: collected 8 objects, generating pack
16:07:03.643 [info] UploadPackV2: pack generated, 482 bytes
16:07:03.643 [info] UploadPackV2: fetch response 504 bytes
16:07:03.644 [info] UploadPackV2: processing fetch command
16:07:03.644 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.644 [info] UploadPackV2: collected 7 objects, generating pack
16:07:03.644 [info] UploadPackV2: pack generated, 475 bytes
16:07:03.644 [info] UploadPackV2: fetch response 497 bytes
16:07:03.646 [info] UploadPackV2: processing fetch command
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
16:07:03.646 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.646 [info] UploadPackV2: collected 16 objects, generating pack
16:07:03.647 [info] UploadPackV2: pack generated, 962 bytes
16:07:03.647 [info] UploadPackV2: fetch response 984 bytes
16:07:03.649 [info] UploadPackV2: processing fetch command
16:07:03.649 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.649 [info] UploadPackV2: collected 8 objects, generating pack
16:07:03.649 [info] UploadPackV2: pack generated, 482 bytes
16:07:03.649 [info] UploadPackV2: fetch response 504 bytes
16:07:03.651 [info] UploadPackV2: processing fetch command
16:07:03.651 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.652 [info] UploadPackV2: collected 19 objects, generating pack
16:07:03.652 [info] UploadPackV2: pack generated, 1196 bytes
16:07:03.652 [info] UploadPackV2: fetch response 1218 bytes
16:07:03.654 [info] UploadPackV2: processing fetch command
16:07:03.654 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.655 [info] UploadPackV2: collected 11 objects, generating pack
16:07:03.655 [info] UploadPackV2: pack generated, 717 bytes
16:07:03.655 [info] UploadPackV2: fetch response 739 bytes
16:07:03.657 [info] UploadPackV2: processing fetch command
16:07:03.657 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.658 [info] UploadPackV2: collected 23 objects, generating pack
16:07:03.659 [info] UploadPackV2: pack generated, 1437 bytes
16:07:03.659 [info] UploadPackV2: fetch response 1459 bytes
16:07:03.662 [info] UploadPackV2: processing fetch command
16:07:03.662 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.663 [info] UploadPackV2: collected 24 objects, generating pack
16:07:03.663 [info] UploadPackV2: pack generated, 1443 bytes
16:07:03.663 [info] UploadPackV2: fetch response 1465 bytes
16:07:03.665 [info] UploadPackV2: processing fetch command
16:07:03.665 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.666 [info] UploadPackV2: collected 4 objects, generating pack
16:07:03.666 [info] UploadPackV2: pack generated, 241 bytes
16:07:03.666 [info] UploadPackV2: fetch response 263 bytes
16:07:03.667 [info] UploadPackV2: processing fetch command
16:07:03.667 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.668 [info] UploadPackV2: collected 23 objects, generating pack
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)
│ ~~~~~~
16:07:03.668 [info] UploadPackV2: pack generated, 1435 bytes
16:07:03.668 [info] UploadPackV2: fetch response 1457 bytes
16:07:03.671 [info] UploadPackV2: processing fetch command
.
16:07:03.671 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.672 [info] UploadPackV2: collected 4 objects, generating pack
.
16:07:03.672 [info] UploadPackV2: pack generated, 241 bytes
.
16:07:03.672 [info] UploadPackV2: fetch response 263 bytes
.
16:07:03.674 [info] UploadPackV2: processing fetch command
.
16:07:03.675 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.675 [info] UploadPackV2: collected 27 objects, generating pack
.
16:07:03.676 [info] UploadPackV2: pack generated, 1676 bytes
.
16:07:03.676 [info] UploadPackV2: fetch response 1698 bytes
.
16:07:03.679 [info] UploadPackV2: processing fetch command
.
16:07:03.679 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.679 [info] UploadPackV2: collected 4 objects, generating pack
16:07:03.679 [info] UploadPackV2: pack generated, 241 bytes
16:07:03.679 [info] UploadPackV2: fetch response 263 bytes
16:07:03.681 [info] UploadPackV2: processing fetch command
16:07:03.681 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.683 [info] UploadPackV2: collected 27 objects, generating pack
16:07:03.683 [info] UploadPackV2: pack generated, 1678 bytes
16:07:03.683 [info] UploadPackV2: fetch response 1700 bytes
16:07:03.687 [info] UploadPackV2: processing fetch command
16:07:03.687 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.687 [info] UploadPackV2: collected 16 objects, generating pack
16:07:03.688 [info] UploadPackV2: pack generated, 930 bytes
16:07:03.688 [info] UploadPackV2: fetch response 952 bytes
16:07:03.691 [info] UploadPackV2: processing fetch command
16:07:03.691 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.691 [info] UploadPackV2: collected 27 objects, generating pack
16:07:03.692 [info] UploadPackV2: pack generated, 1627 bytes
16:07:03.692 [info] UploadPackV2: fetch response 1649 bytes
16:07:03.694 [info] UploadPackV2: processing fetch command
16:07:03.694 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.695 [info] UploadPackV2: collected 7 objects, generating pack
16:07:03.695 [info] UploadPackV2: pack generated, 475 bytes
16:07:03.695 [info] UploadPackV2: fetch response 497 bytes
16:07:03.697 [info] UploadPackV2: processing fetch command
16:07:03.698 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.699 [info] UploadPackV2: collected 50 objects, generating pack
16:07:03.700 [info] UploadPackV2: pack generated, 3060 bytes
16:07:03.701 [info] UploadPackV2: fetch response 3082 bytes
16:07:03.707 [info] UploadPackV2: processing fetch command
16:07:03.707 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.708 [info] UploadPackV2: collected 12 objects, generating pack
16:07:03.708 [info] UploadPackV2: pack generated, 723 bytes
16:07:03.709 [info] UploadPackV2: fetch response 745 bytes
16:07:03.710 [info] UploadPackV2: processing fetch command
16:07:03.710 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.711 [info] UploadPackV2: collected 12 objects, generating pack
16:07:03.711 [info] UploadPackV2: pack generated, 723 bytes
16:07:03.711 [info] UploadPackV2: fetch response 745 bytes
16:07:03.713 [info] UploadPackV2: processing fetch command
16:07:03.713 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.714 [info] UploadPackV2: collected 23 objects, generating pack
16:07:03.714 [info] UploadPackV2: pack generated, 1376 bytes
16:07:03.714 [info] UploadPackV2: fetch response 1398 bytes
16:07:03.717 [info] UploadPackV2: processing fetch command
16:07:03.717 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.718 [info] UploadPackV2: collected 15 objects, generating pack
16:07:03.718 [info] UploadPackV2: pack generated, 923 bytes
16:07:03.718 [info] UploadPackV2: fetch response 945 bytes
16:07:03.721 [info] UploadPackV2: processing fetch command
16:07:03.721 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.722 [info] UploadPackV2: collected 30 objects, generating pack
16:07:03.723 [info] UploadPackV2: pack generated, 1859 bytes
16:07:03.723 [info] UploadPackV2: fetch response 1881 bytes
16:07:03.726 [info] UploadPackV2: processing fetch command
16:07:03.726 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.727 [info] UploadPackV2: collected 15 objects, generating pack
16:07:03.727 [info] UploadPackV2: pack generated, 958 bytes
16:07:03.727 [info] UploadPackV2: fetch response 980 bytes
16:07:03.729 [info] UploadPackV2: processing fetch command
16:07:03.729 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.729 [info] UploadPackV2: collected 7 objects, generating pack
16:07:03.729 [info] UploadPackV2: pack generated, 475 bytes
16:07:03.729 [info] UploadPackV2: fetch response 497 bytes
16:07:03.732 [info] UploadPackV2: processing fetch command
16:07:03.732 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.733 [info] UploadPackV2: collected 35 objects, generating pack
16:07:03.734 [info] UploadPackV2: pack generated, 2107 bytes
16:07:03.734 [info] UploadPackV2: fetch response 2129 bytes
16:07:03.738 [info] UploadPackV2: processing fetch command
16:07:03.739 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.739 [info] UploadPackV2: collected 24 objects, generating pack
16:07:03.740 [info] UploadPackV2: pack generated, 1443 bytes
16:07:03.740 [info] UploadPackV2: fetch response 1465 bytes
16:07:03.742 [info] UploadPackV2: processing fetch command
16:07:03.742 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
16:07:03.743 [info] UploadPackV2: collected 8 objects, generating pack
16:07:03.743 [info] UploadPackV2: pack generated, 482 bytes
16:07:03.743 [info] UploadPackV2: fetch response 504 bytes
16:07:03.746 [info] UploadPackV2: processing fetch command
16:07:03.746 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.747 [info] UploadPackV2: collected 23 objects, generating pack
.
16:07:03.747 [info] UploadPackV2: pack generated, 1435 bytes
.
16:07:03.747 [info] UploadPackV2: fetch response 1457 bytes
.
16:07:03.750 [info] UploadPackV2: processing fetch command
.
16:07:03.750 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.751 [info] UploadPackV2: collected 15 objects, generating pack
.
16:07:03.751 [info] UploadPackV2: pack generated, 956 bytes
16:07:03.751 [info] UploadPackV2: fetch response 978 bytes
.
16:07:03.754 [info] UploadPackV2: processing fetch command
.
16:07:03.754 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.755 [info] UploadPackV2: collected 32 objects, generating pack
.
16:07:03.756 [info] UploadPackV2: pack generated, 1863 bytes
.
16:07:03.756 [info] UploadPackV2: fetch response 1885 bytes
.
16:07:03.761 [info] UploadPackV2: processing fetch command
.
16:07:03.761 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.761 [info] UploadPackV2: collected 11 objects, generating pack
.
16:07:03.762 [info] UploadPackV2: pack generated, 714 bytes
.
16:07:03.762 [info] UploadPackV2: fetch response 736 bytes
.
16:07:03.764 [info] UploadPackV2: processing fetch command
.
16:07:03.764 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.765 [info] UploadPackV2: collected 8 objects, generating pack
.
16:07:03.765 [info] UploadPackV2: pack generated, 482 bytes
.
16:07:03.765 [info] UploadPackV2: fetch response 504 bytes
.
16:07:03.767 [info] UploadPackV2: processing fetch command
.
16:07:03.767 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.768 [info] UploadPackV2: collected 7 objects, generating pack
.
16:07:03.768 [info] UploadPackV2: pack generated, 475 bytes
16:07:03.768 [info] UploadPackV2: fetch response 497 bytes
16:07:03.771 [info] UploadPackV2: processing fetch command
16:07:03.771 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.772 [info] UploadPackV2: collected 19 objects, generating pack
16:07:03.772 [info] UploadPackV2: pack generated, 1194 bytes
16:07:03.772 [info] UploadPackV2: fetch response 1216 bytes
16:07:03.780 [info] UploadPackV2: processing fetch command
16:07:03.780 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.781 [info] UploadPackV2: collected 43 objects, generating pack
16:07:03.786 [info] UploadPackV2: pack generated, 2589 bytes
16:07:03.786 [info] UploadPackV2: fetch response 2611 bytes
16:07:03.791 [info] UploadPackV2: processing fetch command
16:07:03.791 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.792 [info] UploadPackV2: collected 28 objects, generating pack
16:07:03.793 [info] UploadPackV2: pack generated, 1651 bytes
16:07:03.793 [info] UploadPackV2: fetch response 1673 bytes
16:07:03.796 [info] UploadPackV2: processing fetch command
.
16:07:03.796 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.797 [info] UploadPackV2: collected 34 objects, generating pack
.
16:07:03.798 [info] UploadPackV2: pack generated, 2094 bytes
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
.
16:07:03.798 [info] UploadPackV2: fetch response 2116 bytes
.
16:07:03.801 [info] UploadPackV2: processing fetch command
.
16:07:03.801 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.802 [info] UploadPackV2: collected 22 objects, generating pack
.
16:07:03.802 [info] UploadPackV2: pack generated, 1380 bytes
.
16:07:03.803 [info] UploadPackV2: fetch response 1402 bytes
.
16:07:03.806 [info] UploadPackV2: processing fetch command
16:07:03.806 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.807 [info] UploadPackV2: collected 23 objects, generating pack
16:07:03.807 [info] UploadPackV2: pack generated, 1383 bytes
16:07:03.807 [info] UploadPackV2: fetch response 1405 bytes
16:07:03.810 [info] UploadPackV2: processing fetch command
16:07:03.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.811 [info] UploadPackV2: collected 15 objects, generating pack
16:07:03.811 [info] UploadPackV2: pack generated, 956 bytes
16:07:03.811 [info] UploadPackV2: fetch response 978 bytes
16:07:03.814 [info] UploadPackV2: processing fetch command
16:07:03.814 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.814 [info] UploadPackV2: collected 19 objects, generating pack
16:07:03.815 [info] UploadPackV2: pack generated, 1196 bytes
16:07:03.815 [info] UploadPackV2: fetch response 1218 bytes
16:07:03.817 [info] UploadPackV2: processing fetch command
16:07:03.817 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.818 [info] UploadPackV2: collected 12 objects, generating pack
16:07:03.818 [info] UploadPackV2: pack generated, 723 bytes
16:07:03.818 [info] UploadPackV2: fetch response 745 bytes
16:07:03.821 [info] UploadPackV2: processing fetch command
16:07:03.821 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.822 [info] UploadPackV2: collected 43 objects, generating pack
16:07:03.823 [info] UploadPackV2: pack generated, 2605 bytes
16:07:03.823 [info] UploadPackV2: fetch response 2627 bytes
16:07:03.827 [info] UploadPackV2: processing fetch command
16:07:03.828 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.828 [info] UploadPackV2: collected 16 objects, generating pack
16:07:03.829 [info] UploadPackV2: pack generated, 962 bytes
16:07:03.829 [info] UploadPackV2: fetch response 984 bytes
16:07:03.832 [info] UploadPackV2: processing fetch command
16:07:03.832 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.833 [info] UploadPackV2: collected 23 objects, generating pack
16:07:03.833 [info] UploadPackV2: pack generated, 1437 bytes
16:07:03.833 [info] UploadPackV2: fetch response 1459 bytes
16:07:03.836 [info] UploadPackV2: processing fetch command
16:07:03.836 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.836 [info] UploadPackV2: collected 4 objects, generating pack
16:07:03.836 [info] UploadPackV2: pack generated, 241 bytes
16:07:03.836 [info] UploadPackV2: fetch response 263 bytes
16:07:03.839 [info] UploadPackV2: processing fetch command
16:07:03.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.839 [info] UploadPackV2: collected 4 objects, generating pack
16:07:03.839 [info] UploadPackV2: pack generated, 241 bytes
16:07:03.839 [info] UploadPackV2: fetch response 263 bytes
16:07:03.841 [info] UploadPackV2: processing fetch command
.
16:07:03.841 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:03.842 [info] UploadPackV2: collected 24 objects, generating pack
.
16:07:03.843 [info] UploadPackV2: pack generated, 1443 bytes
.
16:07:03.843 [info] UploadPackV2: fetch response 1465 bytes
.
16:07:03.845 [info] UploadPackV2: processing fetch command
.
16:07:03.845 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.845 [info] UploadPackV2: collected 4 objects, generating pack
16:07:03.846 [info] UploadPackV2: pack generated, 241 bytes
16:07:03.846 [info] UploadPackV2: fetch response 263 bytes
16:07:03.849 [info] UploadPackV2: processing fetch command
16:07:03.849 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.850 [info] UploadPackV2: collected 20 objects, generating pack
16:07:03.851 [info] UploadPackV2: pack generated, 1203 bytes
16:07:03.851 [info] UploadPackV2: fetch response 1225 bytes
16:07:03.856 [info] UploadPackV2: processing fetch command
16:07:03.856 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.856 [info] UploadPackV2: collected 7 objects, generating pack
16:07:03.857 [info] UploadPackV2: pack generated, 475 bytes
16:07:03.857 [info] UploadPackV2: fetch response 497 bytes
16:07:03.859 [info] UploadPackV2: processing fetch command
16:07:03.859 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.860 [info] UploadPackV2: collected 16 objects, generating pack
16:07:03.860 [info] UploadPackV2: pack generated, 962 bytes
16:07:03.860 [info] UploadPackV2: fetch response 984 bytes
16:07:03.863 [info] UploadPackV2: processing fetch command
16:07:03.863 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.864 [info] UploadPackV2: collected 22 objects, generating pack
16:07:03.864 [info] UploadPackV2: pack generated, 1380 bytes
16:07:03.864 [info] UploadPackV2: fetch response 1402 bytes
16:07:03.868 [info] UploadPackV2: processing fetch command
16:07:03.868 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.869 [info] UploadPackV2: collected 11 objects, generating pack
16:07:03.869 [info] UploadPackV2: pack generated, 684 bytes
16:07:03.869 [info] UploadPackV2: fetch response 706 bytes
16:07:03.872 [info] UploadPackV2: processing fetch command
16:07:03.872 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.873 [info] UploadPackV2: collected 12 objects, generating pack
16:07:03.873 [info] UploadPackV2: pack generated, 723 bytes
16:07:03.873 [info] UploadPackV2: fetch response 745 bytes
16:07:03.876 [info] UploadPackV2: processing fetch command
16:07:03.876 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.878 [info] UploadPackV2: collected 44 objects, generating pack
16:07:03.878 [info] UploadPackV2: pack generated, 2582 bytes
16:07:03.879 [info] UploadPackV2: fetch response 2604 bytes
16:07:03.883 [info] UploadPackV2: processing fetch command
16:07:03.883 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.884 [info] UploadPackV2: collected 20 objects, generating pack
16:07:03.884 [info] UploadPackV2: pack generated, 1203 bytes
16:07:03.884 [info] UploadPackV2: fetch response 1225 bytes
16:07:03.887 [info] UploadPackV2: processing fetch command
16:07:03.887 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.887 [info] UploadPackV2: collected 11 objects, generating pack
16:07:03.887 [info] UploadPackV2: pack generated, 717 bytes
16:07:03.887 [info] UploadPackV2: fetch response 739 bytes
16:07:03.889 [info] UploadPackV2: processing fetch command
16:07:03.889 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.890 [info] UploadPackV2: collected 16 objects, generating pack
16:07:03.890 [info] UploadPackV2: pack generated, 930 bytes
16:07:03.890 [info] UploadPackV2: fetch response 952 bytes
.
16:07:03.893 [info] UploadPackV2: processing fetch command
16:07:03.893 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.894 [info] UploadPackV2: collected 24 objects, generating pack
16:07:03.894 [info] UploadPackV2: pack generated, 1443 bytes
16:07:03.894 [info] UploadPackV2: fetch response 1465 bytes
16:07:03.898 [info] UploadPackV2: processing fetch command
16:07:03.898 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.899 [info] UploadPackV2: collected 24 objects, generating pack
16:07:03.899 [info] UploadPackV2: pack generated, 1443 bytes
16:07:03.900 [info] UploadPackV2: fetch response 1465 bytes
16:07:03.904 [info] UploadPackV2: processing fetch command
16:07:03.904 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.905 [info] UploadPackV2: collected 27 objects, generating pack
16:07:03.905 [info] UploadPackV2: pack generated, 1614 bytes
16:07:03.905 [info] UploadPackV2: fetch response 1636 bytes
16:07:03.913 [info] UploadPackV2: processing fetch command
16:07:03.913 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.914 [info] UploadPackV2: collected 27 objects, generating pack
16:07:03.915 [info] UploadPackV2: pack generated, 1678 bytes
16:07:03.915 [info] UploadPackV2: fetch response 1700 bytes
16:07:03.917 [info] UploadPackV2: processing fetch command
16:07:03.917 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.918 [info] UploadPackV2: collected 12 objects, generating pack
16:07:03.918 [info] UploadPackV2: pack generated, 723 bytes
16:07:03.918 [info] UploadPackV2: fetch response 745 bytes
16:07:03.920 [info] UploadPackV2: processing fetch command
16:07:03.920 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.920 [info] UploadPackV2: collected 7 objects, generating pack
16:07:03.921 [info] UploadPackV2: pack generated, 475 bytes
16:07:03.921 [info] UploadPackV2: fetch response 497 bytes
16:07:03.922 [info] UploadPackV2: processing fetch command
16:07:03.922 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.922 [info] UploadPackV2: collected 11 objects, generating pack
16:07:03.922 [info] UploadPackV2: pack generated, 717 bytes
16:07:03.922 [info] UploadPackV2: fetch response 739 bytes
16:07:03.926 [info] UploadPackV2: processing fetch command
16:07:03.926 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:03.927 [info] UploadPackV2: collected 50 objects, generating pack
16:07:03.928 [info] UploadPackV2: pack generated, 3060 bytes
16:07:03.928 [info] UploadPackV2: fetch response 3082 bytes
16:07:06.881 [notice] Handler :default switched from :drop to :sync mode
16:07:03.934 [info] UploadPackV2: processing fetch command
16:07:03.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.935 [info] UploadPackV2: collected 15 objects, generating pack
16:07:03.935 [info] UploadPackV2: pack generated, 1068 bytes
16:07:03.935 [info] UploadPackV2: fetch response 1090 bytes
16:07:03.942 [info] UploadPackV2: processing fetch command
16:07:03.942 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.944 [info] UploadPackV2: collected 34 objects, generating pack
16:07:03.944 [info] UploadPackV2: pack generated, 2507 bytes
16:07:03.944 [info] UploadPackV2: fetch response 2529 bytes
16:07:03.951 [info] UploadPackV2: processing fetch command
16:07:03.951 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.952 [info] UploadPackV2: collected 20 objects, generating pack
16:07:03.952 [info] UploadPackV2: pack generated, 1448 bytes
16:07:03.952 [info] UploadPackV2: fetch response 1470 bytes
16:07:03.958 [info] UploadPackV2: processing fetch command
16:07:03.958 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.958 [info] UploadPackV2: collected 18 objects, generating pack
16:07:03.959 [info] UploadPackV2: pack generated, 1281 bytes
16:07:03.959 [info] UploadPackV2: fetch response 1303 bytes
.
16:07:03.962 [info] UploadPackV2: processing fetch command
16:07:03.962 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.963 [info] UploadPackV2: collected 5 objects, generating pack
16:07:03.963 [info] UploadPackV2: pack generated, 424 bytes
16:07:03.963 [info] UploadPackV2: fetch response 446 bytes
16:07:03.965 [info] UploadPackV2: processing fetch command
16:07:03.965 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.966 [info] UploadPackV2: collected 32 objects, generating pack
16:07:03.967 [info] UploadPackV2: pack generated, 2313 bytes
16:07:03.967 [info] UploadPackV2: fetch response 2335 bytes
16:07:03.973 [info] UploadPackV2: processing fetch command
16:07:03.973 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.973 [info] UploadPackV2: collected 3 objects, generating pack
.
16:07:03.973 [info] UploadPackV2: pack generated, 214 bytes
16:07:03.973 [info] UploadPackV2: fetch response 236 bytes
16:07:03.977 [info] UploadPackV2: processing fetch command
16:07:03.977 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.979 [info] UploadPackV2: collected 32 objects, generating pack
16:07:03.979 [info] UploadPackV2: pack generated, 2283 bytes
16:07:03.980 [info] UploadPackV2: fetch response 2305 bytes
16:07:03.990 [info] UploadPackV2: processing fetch command
16:07:03.991 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.991 [info] UploadPackV2: collected 3 objects, generating pack
16:07:03.991 [info] UploadPackV2: pack generated, 214 bytes
16:07:03.991 [info] UploadPackV2: fetch response 236 bytes
16:07:03.993 [info] UploadPackV2: processing fetch command
16:07:03.993 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.994 [info] UploadPackV2: collected 15 objects, generating pack
16:07:03.994 [info] UploadPackV2: pack generated, 1037 bytes
16:07:03.994 [info] UploadPackV2: fetch response 1059 bytes
16:07:03.998 [info] UploadPackV2: processing fetch command
16:07:03.998 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:03.999 [info] UploadPackV2: collected 14 objects, generating pack
16:07:03.999 [info] UploadPackV2: pack generated, 1032 bytes
16:07:03.999 [info] UploadPackV2: fetch response 1054 bytes
16:07:04.009 [info] UploadPackV2: processing fetch command
16:07:04.009 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:04.010 [info] UploadPackV2: collected 38 objects, generating pack
16:07:04.011 [info] UploadPackV2: pack generated, 2710 bytes
16:07:04.011 [info] UploadPackV2: fetch response 2732 bytes
16:07:04.019 [info] UploadPackV2: processing fetch command
16:07:04.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:04.020 [info] UploadPackV2: collected 6 objects, generating pack
16:07:04.020 [info] UploadPackV2: pack generated, 428 bytes
16:07:04.020 [info] UploadPackV2: fetch response 450 bytes
16:07:04.021 [info] UploadPackV2: processing fetch command
16:07:04.021 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:04.022 [info] UploadPackV2: collected 5 objects, generating pack
.
16:07:04.022 [info] UploadPackV2: pack generated, 424 bytes
.
16:07:04.022 [info] UploadPackV2: fetch response 446 bytes
16:07:04.024 [info] UploadPackV2: processing fetch command
16:07:04.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:04.025 [info] UploadPackV2: collected 12 objects, generating pack
16:07:04.025 [info] UploadPackV2: pack generated, 854 bytes
16:07:04.026 [info] UploadPackV2: fetch response 876 bytes
16:07:04.029 [info] UploadPackV2: processing fetch command
16:07:04.029 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.281 [info] UploadPackV2: collected 6 objects, generating pack
16:07:05.282 [info] UploadPackV2: pack generated, 428 bytes
16:07:05.282 [info] UploadPackV2: fetch response 450 bytes
16:07:05.288 [info] UploadPackV2: processing fetch command
16:07:05.288 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.289 [info] UploadPackV2: collected 14 objects, generating pack
16:07:05.290 [info] UploadPackV2: pack generated, 1064 bytes
16:07:05.290 [info] UploadPackV2: fetch response 1086 bytes
.
16:07:05.295 [info] UploadPackV2: processing fetch command
.
16:07:05.295 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:07:05.297 [info] UploadPackV2: collected 8 objects, generating pack
.
16:07:05.297 [info] UploadPackV2: pack generated, 639 bytes
.
16:07:05.297 [info] UploadPackV2: fetch response 661 bytes
.
16:07:05.302 [info] UploadPackV2: processing fetch command
.
16:07:05.302 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:07:05.303 [info] UploadPackV2: collected 17 objects, generating pack
.
16:07:05.304 [info] UploadPackV2: pack generated, 1278 bytes
.
16:07:05.304 [info] UploadPackV2: fetch response 1300 bytes
.
16:07:05.310 [info] UploadPackV2: processing fetch command
.
16:07:05.310 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:07:05.311 [info] UploadPackV2: collected 18 objects, generating pack
.
16:07:05.312 [info] UploadPackV2: pack generated, 1281 bytes
.
16:07:05.312 [info] UploadPackV2: fetch response 1303 bytes
.
16:07:05.316 [info] UploadPackV2: processing fetch command
.
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)
16:07:05.317 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:07:05.317 [info] UploadPackV2: collected 3 objects, generating pack
16:07:05.317 [info] UploadPackV2: pack generated, 214 bytes
16:07:05.317 [info] UploadPackV2: fetch response 236 bytes
16:07:05.320 [info] UploadPackV2: processing fetch command
16:07:05.320 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.321 [info] UploadPackV2: collected 17 objects, generating pack
16:07:05.322 [info] UploadPackV2: pack generated, 1276 bytes
16:07:05.322 [info] UploadPackV2: fetch response 1298 bytes
16:07:05.327 [info] UploadPackV2: processing fetch command
16:07:05.327 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.328 [info] UploadPackV2: collected 3 objects, generating pack
16:07:05.328 [info] UploadPackV2: pack generated, 214 bytes
16:07:05.328 [info] UploadPackV2: fetch response 236 bytes
16:07:05.332 [info] UploadPackV2: processing fetch command
16:07:05.333 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.334 [info] UploadPackV2: collected 20 objects, generating pack
16:07:05.335 [info] UploadPackV2: pack generated, 1490 bytes
16:07:05.335 [info] UploadPackV2: fetch response 1512 bytes
16:07:05.341 [info] UploadPackV2: processing fetch command
16:07:05.341 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.341 [info] UploadPackV2: collected 3 objects, generating pack
16:07:05.342 [info] UploadPackV2: pack generated, 214 bytes
16:07:05.342 [info] UploadPackV2: fetch response 236 bytes
16:07:05.345 [info] UploadPackV2: processing fetch command
16:07:05.346 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:07:05.346 [info] UploadPackV2: collected 20 objects, generating pack
16:07:05.347 [info] UploadPackV2: pack generated, 1492 bytes
16:07:05.347 [info] UploadPackV2: fetch response 1514 bytes
16:07:05.352 [info] UploadPackV2: processing fetch command
16:07:05.352 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.352 [info] UploadPackV2: collected 12 objects, generating pack
16:07:05.353 [info] UploadPackV2: pack generated, 822 bytes
16:07:05.353 [info] UploadPackV2: fetch response 844 bytes
16:07:05.357 [info] UploadPackV2: processing fetch command
16:07:05.357 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.358 [info] UploadPackV2: collected 20 objects, generating pack
16:07:05.359 [info] UploadPackV2: pack generated, 1450 bytes
16:07:05.359 [info] UploadPackV2: fetch response 1472 bytes
16:07:05.363 [info] UploadPackV2: processing fetch command
16:07:05.363 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.363 [info] UploadPackV2: collected 5 objects, generating pack
16:07:05.363 [info] UploadPackV2: pack generated, 424 bytes
16:07:05.363 [info] UploadPackV2: fetch response 446 bytes
16:07:05.366 [info] UploadPackV2: processing fetch command
16:07:05.366 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.367 [info] UploadPackV2: collected 37 objects, generating pack
16:07:05.368 [info] UploadPackV2: pack generated, 2724 bytes
16:07:05.368 [info] UploadPackV2: fetch response 2746 bytes
16:07:05.375 [info] UploadPackV2: processing fetch command
16:07:05.375 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.376 [info] UploadPackV2: collected 9 objects, generating pack
16:07:05.376 [info] UploadPackV2: pack generated, 642 bytes
16:07:05.376 [info] UploadPackV2: fetch response 664 bytes
16:07:05.378 [info] UploadPackV2: processing fetch command
16:07:05.378 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.378 [info] UploadPackV2: collected 9 objects, generating pack
16:07:05.379 [info] UploadPackV2: pack generated, 642 bytes
16:07:05.379 [info] UploadPackV2: fetch response 664 bytes
16:07:05.381 [info] UploadPackV2: processing fetch command
16:07:05.381 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.382 [info] UploadPackV2: collected 17 objects, generating pack
16:07:05.382 [info] UploadPackV2: pack generated, 1217 bytes
16:07:05.382 [info] UploadPackV2: fetch response 1239 bytes
16:07:05.386 [info] UploadPackV2: processing fetch command
16:07:05.386 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.387 [info] UploadPackV2: collected 11 objects, generating pack
16:07:05.387 [info] UploadPackV2: pack generated, 818 bytes
16:07:05.387 [info] UploadPackV2: fetch response 840 bytes
16:07:05.392 [info] UploadPackV2: processing fetch command
16:07:05.393 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.393 [info] UploadPackV2: collected 22 objects, generating pack
16:07:05.394 [info] UploadPackV2: pack generated, 1658 bytes
16:07:05.394 [info] UploadPackV2: fetch response 1680 bytes
16:07:05.399 [info] UploadPackV2: processing fetch command
16:07:05.399 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.401 [info] UploadPackV2: collected 11 objects, generating pack
16:07:05.401 [info] UploadPackV2: pack generated, 853 bytes
16:07:05.401 [info] UploadPackV2: fetch response 875 bytes
16:07:05.404 [info] UploadPackV2: processing fetch command
16:07:05.404 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.405 [info] UploadPackV2: collected 5 objects, generating pack
16:07:05.405 [info] UploadPackV2: pack generated, 424 bytes
16:07:05.405 [info] UploadPackV2: fetch response 446 bytes
16:07:05.409 [info] UploadPackV2: processing fetch command
16:07:05.409 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.411 [info] UploadPackV2: collected 26 objects, generating pack
16:07:05.412 [info] UploadPackV2: pack generated, 1876 bytes
16:07:05.412 [info] UploadPackV2: fetch response 1898 bytes
16:07:05.419 [info] UploadPackV2: processing fetch command
16:07:05.419 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.419 [info] UploadPackV2: collected 18 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
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: the variable "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
16:07:05.420 [info] UploadPackV2: pack generated, 1281 bytes
16:07:05.420 [info] UploadPackV2: fetch response 1303 bytes
16:07:05.423 [info] UploadPackV2: processing fetch command
16:07:05.424 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:07:05.424 [info] UploadPackV2: collected 6 objects, generating pack
16:07:05.424 [info] UploadPackV2: pack generated, 428 bytes
16:07:05.424 [info] UploadPackV2: fetch response 450 bytes
.
16:07:07.643 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
16:07:07.645 [info] UploadPackV2: processing fetch command
...
16:07:07.645 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:07.646 [info] UploadPackV2: collected 15 objects, generating pack
16:07:07.646 [info] UploadPackV2: pack generated, 984 bytes
16:07:07.647 [info] UploadPackV2: fetch response 1006 bytes
16:07:07.647 [info] UploadPackV2: processing fetch command
16:07:07.647 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:07.648 [info] UploadPackV2: collected 15 objects, streaming pack
16:07:07.650 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
16:07:07.650 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
16:07:07.651 [info] UploadPackV2: processing fetch command
16:07:07.651 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:07:07.652 [info] UploadPackV2: fetch response 73 bytes
16:07:07.652 [info] UploadPackV2: processing fetch command
16:07:07.652 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:07:07.652 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
16:07:07.652 [info] UploadPackV2: processing fetch command
16:07:07.652 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:07.653 [info] UploadPackV2: collected 3 objects, generating pack
16:07:07.653 [info] UploadPackV2: pack generated, 195 bytes
16:07:07.653 [info] UploadPackV2: fetch response 217 bytes
16:07:07.661 [info] UploadPackV2: processing fetch command
16:07:07.661 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:07.664 [info] UploadPackV2: collected 90 objects, generating pack
16:07:07.667 [info] UploadPackV2: pack generated, 5946 bytes
.
16:07:07.750 [info] UploadPackV2: fetch response 5968 bytes
16:07:07.784 [info] UploadPackV2: processing fetch command
16:07:07.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:07.785 [info] UploadPackV2: collected 3 objects, streaming pack
.
16:07:07.789 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
16:07:07.789 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
16:07:07.792 [info] UploadPackV2: processing fetch command
.
16:07:07.792 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:07.793 [info] UploadPackV2: collected 3 objects, generating pack
.
16:07:07.793 [info] UploadPackV2: pack generated, 194 bytes
16:07:07.793 [info] UploadPackV2: fetch response 216 bytes
16:07:07.793 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
16:07:07.794 [info] UploadPackV2: processing ls-refs command
16:07:07.794 [info] UploadPackV2: processing ls-refs command
16:07:07.795 [info] UploadPackV2: processing fetch command
16:07:07.795 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:07.795 [info] UploadPackV2: collected 3 objects, streaming pack
16:07:07.796 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
16:07:07.796 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
16:07:07.797 [info] UploadPackV2: processing ls-refs command
16:07:07.865 [info] UploadPackV2: processing fetch command
16:07:07.865 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:07.892 [info] UploadPackV2: collected 600 objects, generating pack
16:07:07.906 [info] UploadPackV2: pack generated, 39862 bytes
16:07:07.906 [info] UploadPackV2: fetch response 39884 bytes
.
16:07:07.952 [info] UploadPackV2: processing fetch command
16:07:07.952 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:07.952 [info] UploadPackV2: collected 15 objects, generating pack
16:07:07.953 [info] UploadPackV2: pack generated, 984 bytes
16:07:07.953 [info] UploadPackV2: fetch response 1006 bytes
.................................
16:07:08.105 [info] UploadPackV2: processing fetch command
.
16:07:08.106 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:08.116 [info] UploadPackV2: collected 32 objects, streaming pack
................................
16:07:08.247 [info] UploadPackV2: streamed pack 2459754 bytes, 32 objects
16:07:08.247 [info] UploadPackV2: fetch streamed 2459754 pack bytes, 32 objects
...
16:07:08.626 [info] UploadPackV2: processing fetch command
.
16:07:08.626 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:08.627 [info] UploadPackV2: collected 3 objects, generating pack
16:07:08.627 [info] UploadPackV2: pack generated, 195 bytes
16:07:08.627 [info] UploadPackV2: fetch response 217 bytes
..
16:07:08.748 [info] UploadPackV2: processing ls-refs command
16:07:08.749 [info] UploadPackV2: processing fetch command
16:07:08.749 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:08.749 [info] UploadPackV2: collected 3 objects, generating pack
16:07:08.749 [info] UploadPackV2: pack generated, 210 bytes
16:07:08.749 [info] UploadPackV2: fetch response 232 bytes
........
16:07:08.784 [info] UploadPackV2: processing fetch command
.
16:07:08.784 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:08.785 [info] UploadPackV2: collected 3 objects, generating pack
16:07:08.785 [info] UploadPackV2: pack generated, 223 bytes
16:07:08.785 [info] UploadPackV2: fetch response 245 bytes
16:07:08.786 [info] UploadPackV2: processing ls-refs command
.
16:07:08.787 [info] UploadPackV2: processing fetch command
16:07:08.787 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:08.788 [info] UploadPackV2: collected 3 objects, generating pack
.
16:07:08.788 [info] UploadPackV2: pack generated, 191 bytes
.
16:07:08.788 [info] UploadPackV2: fetch response 213 bytes
.
16:07:08.789 [info] UploadPackV2: processing fetch command
.
16:07:08.789 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:08.789 [info] UploadPackV2: collected 6 objects, generating pack
.
16:07:08.790 [info] UploadPackV2: pack generated, 414 bytes
.
16:07:08.790 [info] UploadPackV2: fetch response 436 bytes
.
16:07:08.792 [info] UploadPackV2: processing fetch command
.
16:07:08.792 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:08.793 [info] UploadPackV2: collected 9 objects, streaming pack
.
16:07:08.794 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
16:07:08.794 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
16:07:08.808 [info] The function passed as a handler with ID #Reference<0.1085166687.2822766594.60100> 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
.
16:07:08.810 [warning] post_receive hook failed: "webhook failed"
...........................................................................................
16:07:08.919 [info] UploadPackV2: processing fetch command
16:07:08.919 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:08.927 [info] UploadPackV2: collected 32 objects, generating pack
........
16:07:09.025 [info] UploadPackV2: processing fetch command
16:07:09.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:09.052 [info] UploadPackV2: collected 163 objects, generating pack
16:07:09.065 [info] UploadPackV2: pack generated, 15092 bytes
16:07:09.065 [info] UploadPackV2: fetch response 15114 bytes
16:07:09.069 [info] UploadPackV2: pack generated, 2459819 bytes
16:07:09.076 [info] UploadPackV2: fetch response 2460026 bytes
16:07:09.076 [info] UploadPackV2: processing fetch command
16:07:09.076 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
16:07:09.099 [info] UploadPackV2: collected 32 objects, streaming pack
.
16:07:09.232 [info] UploadPackV2: streamed pack 2459819 bytes, 32 objects
16:07:09.232 [info] UploadPackV2: fetch streamed 2459819 pack bytes, 32 objects
.
16:07:09.239 [info] UploadPackV2: processing fetch command
.
16:07:09.239 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:07:09.240 [info] UploadPackV2: collected 3 objects, generating pack
.
16:07:09.241 [info] UploadPackV2: pack generated, 191 bytes
.
16:07:09.241 [info] UploadPackV2: fetch response 213 bytes
16:07:09.242 [info] UploadPackV2: processing fetch command
16:07:09.242 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:09.243 [info] UploadPackV2: collected 0 objects, generating pack
16:07:09.243 [info] UploadPackV2: pack generated, 32 bytes
.
16:07:09.243 [info] UploadPackV2: fetch response 54 bytes
16:07:09.244 [info] UploadPackV2: processing ls-refs command
16:07:09.244 [info] UploadPackV2: processing fetch command
16:07:09.244 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:09.244 [info] UploadPackV2: collected 3 objects, generating pack
16:07:09.244 [info] UploadPackV2: pack generated, 206 bytes
16:07:09.245 [info] UploadPackV2: fetch response 228 bytes
16:07:09.246 [info] UploadPackV2: processing fetch command
16:07:09.247 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:09.247 [info] UploadPackV2: collected 3 objects, generating pack
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
16:07:09.247 [info] UploadPackV2: pack generated, 191 bytes
16:07:09.247 [info] UploadPackV2: fetch response 213 bytes
16:07:09.295 [info] UploadPackV2: processing fetch command
16:07:09.295 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:09.317 [info] UploadPackV2: collected 700 objects, generating pack
16:07:09.331 [info] UploadPackV2: pack generated, 48139 bytes
16:07:09.331 [info] UploadPackV2: fetch response 48161 bytes
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
............................................
16:07:10.032 [info] UploadPackV2: processing fetch command
16:07:10.033 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:10.037 [info] UploadPackV2: reused pack 12021 bytes, 160 objects
16:07:10.037 [info] UploadPackV2: fetch response 12043 bytes
..
16:07:14.321 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303406462" 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
16:07:14.322 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303406430" 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
.
16:07:14.322 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303406398" 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
16:07:14.323 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303406366" 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
.
16:07:14.323 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303406334" 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
16:07:14.323 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303406302" 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
.
16:07:14.324 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303408863" 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
16:07:14.324 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303408831" 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
.***********..........
16:07:14.390 [info] UploadPackV2: processing ls-refs command
16:07:14.391 [info] UploadPackV2: processing fetch command
16:07:14.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:14.392 [info] UploadPackV2: collected 3 objects, generating pack
16:07:14.392 [info] UploadPackV2: pack generated, 196 bytes
16:07:14.392 [info] UploadPackV2: fetch response 218 bytes
.
16:07:14.454 [info] UploadPackV2: processing ls-refs command
16:07:14.455 [info] UploadPackV2: processing fetch command
16:07:14.455 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:14.456 [info] UploadPackV2: collected 3 objects, generating pack
16:07:14.456 [info] UploadPackV2: pack generated, 185 bytes
16:07:14.456 [info] UploadPackV2: fetch response 207 bytes
...
16:07:44.658 [info] UploadPackV2: processing ls-refs command
16:07:44.660 [info] UploadPackV2: processing fetch command
16:07:44.660 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:44.660 [info] UploadPackV2: collected 6 objects, generating pack
16:07:44.661 [info] UploadPackV2: pack generated, 365 bytes
16:07:44.661 [info] UploadPackV2: fetch response 387 bytes
.
16:07:44.742 [info] UploadPackV2: processing ls-refs command
16:07:44.744 [info] UploadPackV2: processing fetch command
16:07:44.744 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:44.744 [info] UploadPackV2: collected 3 objects, generating pack
16:07:44.744 [info] UploadPackV2: pack generated, 183 bytes
16:07:44.744 [info] UploadPackV2: fetch response 205 bytes
..
16:07:59.942 [info] UploadPackV2: processing ls-refs command
16:07:59.944 [info] UploadPackV2: processing fetch command
16:07:59.944 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:07:59.944 [info] UploadPackV2: collected 6 objects, generating pack
16:07:59.944 [info] UploadPackV2: pack generated, 365 bytes
16:07:59.945 [info] UploadPackV2: fetch response 387 bytes
...
16:08:45.222 [info] UploadPackV2: processing ls-refs command
16:08:45.223 [info] UploadPackV2: processing fetch command
16:08:45.224 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:08:45.224 [info] UploadPackV2: collected 3 objects, generating pack
16:08:45.224 [info] UploadPackV2: pack generated, 183 bytes
16:08:45.224 [info] UploadPackV2: fetch response 205 bytes
.
16:09:00.350 [info] UploadPackV2: processing ls-refs command
16:09:00.351 [info] UploadPackV2: processing fetch command
16:09:00.352 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:00.352 [info] UploadPackV2: collected 3 objects, generating pack
16:09:00.352 [info] UploadPackV2: pack generated, 201 bytes
16:09:00.352 [info] UploadPackV2: fetch response 223 bytes
...
16:09:45.646 [info] UploadPackV2: processing ls-refs command
16:09:45.648 [info] UploadPackV2: processing fetch command
16:09:45.648 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:45.648 [info] UploadPackV2: collected 3 objects, generating pack
16:09:45.649 [info] UploadPackV2: pack generated, 185 bytes
16:09:45.649 [info] UploadPackV2: fetch response 207 bytes
16:09:45.706 [info] UploadPackV2: processing ls-refs command
.
16:09:45.762 [info] UploadPackV2: processing ls-refs command
16:09:45.763 [info] UploadPackV2: processing fetch command
16:09:45.764 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:45.764 [info] UploadPackV2: collected 3 objects, generating pack
16:09:45.764 [info] UploadPackV2: pack generated, 196 bytes
16:09:45.764 [info] UploadPackV2: fetch response 218 bytes
.
16:09:45.842 [info] UploadPackV2: processing ls-refs command
16:09:45.843 [info] UploadPackV2: processing fetch command
16:09:45.843 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:09:45.843 [info] UploadPackV2: collected 3 objects, generating pack
16:09:45.843 [info] UploadPackV2: pack generated, 200 bytes
16:09:45.843 [info] UploadPackV2: fetch response 256 bytes
.
16:09:45.902 [info] UploadPackV2: processing ls-refs command
16:09:45.903 [info] UploadPackV2: processing fetch command
16:09:45.904 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:45.904 [info] UploadPackV2: collected 15 objects, generating pack
16:09:45.905 [info] UploadPackV2: pack generated, 952 bytes
16:09:45.905 [info] UploadPackV2: fetch response 974 bytes
.
16:09:46.038 [info] UploadPackV2: processing ls-refs command
16:09:46.039 [info] UploadPackV2: processing fetch command
16:09:46.039 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:46.040 [info] UploadPackV2: collected 6 objects, generating pack
16:09:46.040 [info] UploadPackV2: pack generated, 365 bytes
16:09:46.040 [info] UploadPackV2: fetch response 387 bytes
16:09:48.018 [info] UploadPackV2: processing ls-refs command
.
16:09:48.022 [info] UploadPackV2: processing fetch command
.
16:09:48.022 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.023 [info] UploadPackV2: collected 3 objects, generating pack
16:09:48.023 [info] UploadPackV2: pack generated, 183 bytes
16:09:48.023 [info] UploadPackV2: fetch response 205 bytes
16:09:48.086 [info] UploadPackV2: processing ls-refs command
16:09:48.087 [info] UploadPackV2: processing fetch command
16:09:48.087 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.090 [info] UploadPackV2: collected 90 objects, generating pack
16:09:48.091 [info] UploadPackV2: pack generated, 5649 bytes
16:09:48.091 [info] UploadPackV2: fetch response 5671 bytes
16:09:48.354 [info] UploadPackV2: processing ls-refs command
.
16:09:48.410 [info] UploadPackV2: processing ls-refs command
16:09:48.411 [info] UploadPackV2: processing fetch command
16:09:48.411 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.412 [info] UploadPackV2: collected 6 objects, generating pack
16:09:48.412 [info] UploadPackV2: pack generated, 366 bytes
16:09:48.412 [info] UploadPackV2: fetch response 388 bytes
16:09:48.474 [info] UploadPackV2: processing ls-refs command
16:09:48.475 [info] UploadPackV2: processing fetch command
16:09:48.475 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:09:48.475 [info] UploadPackV2: fetch response 32 bytes
16:09:48.475 [info] UploadPackV2: processing fetch command
16:09:48.475 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.475 [info] UploadPackV2: collected 3 objects, generating pack
16:09:48.475 [info] UploadPackV2: pack generated, 183 bytes
16:09:48.475 [info] UploadPackV2: fetch response 205 bytes
.
16:09:48.534 [info] UploadPackV2: processing ls-refs command
16:09:48.535 [info] UploadPackV2: processing fetch command
16:09:48.535 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.536 [info] UploadPackV2: collected 9 objects, generating pack
16:09:48.536 [info] UploadPackV2: pack generated, 547 bytes
16:09:48.536 [info] UploadPackV2: fetch response 569 bytes
16:09:48.602 [info] UploadPackV2: processing ls-refs command
.
16:09:48.658 [info] UploadPackV2: processing ls-refs command
16:09:48.659 [info] UploadPackV2: processing fetch command
16:09:48.659 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.660 [info] UploadPackV2: collected 6 objects, generating pack
16:09:48.660 [info] UploadPackV2: pack generated, 365 bytes
16:09:48.660 [info] UploadPackV2: fetch response 387 bytes
16:09:48.675 [info] UploadPackV2: processing fetch command
16:09:48.675 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
16:09:48.675 [info] UploadPackV2: fetch response 122 bytes
.
16:09:48.734 [info] UploadPackV2: processing ls-refs command
16:09:48.734 [info] UploadPackV2: processing ls-refs command
16:09:48.735 [info] UploadPackV2: processing fetch command
16:09:48.735 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.736 [info] UploadPackV2: processing fetch command
16:09:48.736 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.736 [info] UploadPackV2: collected 6 objects, generating pack
16:09:48.736 [info] UploadPackV2: pack generated, 365 bytes
16:09:48.736 [info] UploadPackV2: fetch response 387 bytes
16:09:48.737 [info] UploadPackV2: collected 6 objects, generating pack
16:09:48.737 [info] UploadPackV2: pack generated, 365 bytes
16:09:48.737 [info] UploadPackV2: fetch response 387 bytes
.
16:09:48.818 [info] UploadPackV2: processing ls-refs command
16:09:48.818 [info] UploadPackV2: processing fetch command
16:09:48.819 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:09:48.819 [info] UploadPackV2: collected 3 objects, generating pack
16:09:48.819 [info] UploadPackV2: pack generated, 216 bytes
16:09:48.819 [info] UploadPackV2: fetch response 346 bytes
.
16:09:48.894 [info] UploadPackV2: processing ls-refs command
16:09:48.895 [info] UploadPackV2: processing fetch command
16:09:48.895 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:09:48.896 [info] UploadPackV2: collected 6 objects, generating pack
16:09:48.896 [info] UploadPackV2: pack generated, 365 bytes
16:09:48.896 [info] UploadPackV2: fetch response 387 bytes
.
16:10:03.903 [info] The function passed as a handler with ID "telemetry-test-14882" 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
.
16:10:18.969 [info] The function passed as a handler with ID "telemetry-test-17315" 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
16:10:18.970 [info] UploadPackV2: processing fetch command
16:10:18.970 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:18.970 [info] UploadPackV2: collected 3 objects, generating pack
16:10:18.970 [info] UploadPackV2: pack generated, 186 bytes
16:10:18.970 [info] UploadPackV2: fetch response 208 bytes
.
16:10:18.971 [info] The function passed as a handler with ID "telemetry-test-17347" 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
16:10:18.972 [info] UploadPackV2: processing fetch command
16:10:18.972 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:10:18.972 [info] UploadPackV2: collected 2 objects, generating pack
16:10:18.972 [info] UploadPackV2: pack generated, 169 bytes
16:10:18.972 [info] UploadPackV2: fetch response 191 bytes
.
16:10:18.972 [info] The function passed as a handler with ID "telemetry-test-14914" 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
16:10:18.973 [info] UploadPackV2: processing fetch command
16:10:18.973 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:18.974 [info] UploadPackV2: collected 3 objects, generating pack
16:10:18.974 [info] UploadPackV2: pack generated, 183 bytes
16:10:18.974 [info] UploadPackV2: fetch response 205 bytes
.
16:10:18.974 [info] The function passed as a handler with ID "rev-list-range-test-14978" 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
.
16:10:18.977 [info] The function passed as a handler with ID "graph-query-test-17411" 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
...
16:10:18.988 [info] The function passed as a handler with ID "rev-list-range-test-17539" 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
....
16:10:18.995 [info] The function passed as a handler with ID "graph-query-test-9349" 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
..
16:10:18.999 [info] The function passed as a handler with ID "rev-list-range-test-17603" 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
....
16:10:19.009 [info] The function passed as a handler with ID "graph-query-test-17763" 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
..
16:10:19.012 [info] UploadPackV2: processing fetch command
16:10:19.012 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.012 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.013 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.013 [info] UploadPackV2: fetch response 205 bytes
16:10:19.013 [info] UploadPackV2: processing fetch command
16:10:19.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.013 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.013 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.014 [info] UploadPackV2: fetch response 205 bytes
16:10:19.014 [info] UploadPackV2: processing fetch command
16:10:19.014 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.014 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.014 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.014 [info] UploadPackV2: fetch response 205 bytes
16:10:19.015 [info] UploadPackV2: processing fetch command
16:10:19.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.015 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.015 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.015 [info] UploadPackV2: fetch response 205 bytes
16:10:19.016 [info] UploadPackV2: processing fetch command
16:10:19.016 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.016 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.016 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.016 [info] UploadPackV2: fetch response 205 bytes
16:10:19.016 [info] UploadPackV2: processing fetch command
16:10:19.017 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.017 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.017 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.017 [info] UploadPackV2: fetch response 205 bytes
16:10:19.017 [info] UploadPackV2: processing fetch command
16:10:19.017 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.018 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.019 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.019 [info] UploadPackV2: fetch response 205 bytes
16:10:19.020 [info] UploadPackV2: processing fetch command
16:10:19.020 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.020 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.020 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.021 [info] UploadPackV2: fetch response 205 bytes
16:10:19.021 [info] UploadPackV2: processing fetch command
16:10:19.021 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.021 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.021 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.021 [info] UploadPackV2: fetch response 205 bytes
16:10:19.022 [info] UploadPackV2: processing fetch command
16:10:19.022 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.022 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.022 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.023 [info] UploadPackV2: fetch response 205 bytes
16:10:19.023 [info] UploadPackV2: processing fetch command
16:10:19.023 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.023 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.023 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.023 [info] UploadPackV2: fetch response 205 bytes
16:10:19.023 [info] UploadPackV2: processing fetch command
16:10:19.024 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.024 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.024 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.024 [info] UploadPackV2: fetch response 205 bytes
16:10:19.024 [info] UploadPackV2: processing fetch command
16:10:19.024 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.024 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.024 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.025 [info] UploadPackV2: fetch response 205 bytes
16:10:19.025 [info] UploadPackV2: processing fetch command
16:10:19.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.025 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.025 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.025 [info] UploadPackV2: fetch response 205 bytes
16:10:19.025 [info] UploadPackV2: processing fetch command
16:10:19.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.025 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.026 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.026 [info] UploadPackV2: fetch response 205 bytes
16:10:19.026 [info] UploadPackV2: processing fetch command
16:10:19.026 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.026 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.026 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.026 [info] UploadPackV2: fetch response 205 bytes
16:10:19.026 [info] UploadPackV2: processing fetch command
16:10:19.026 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.027 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.027 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.027 [info] UploadPackV2: fetch response 205 bytes
16:10:19.027 [info] UploadPackV2: processing fetch command
16:10:19.027 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.028 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.028 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.028 [info] UploadPackV2: fetch response 205 bytes
16:10:19.028 [info] UploadPackV2: processing fetch command
16:10:19.028 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.028 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.029 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.029 [info] UploadPackV2: fetch response 205 bytes
16:10:19.029 [info] UploadPackV2: processing fetch command
16:10:19.029 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.029 [info] UploadPackV2: collected 3 objects, generating pack
.
16:10:19.029 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.029 [info] UploadPackV2: fetch response 205 bytes
16:10:19.030 [info] UploadPackV2: processing fetch command
16:10:19.030 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.030 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.030 [info] UploadPackV2: pack generated, 183 bytes
16:10:19.030 [info] UploadPackV2: fetch response 205 bytes
16:10:19.036 [info] UploadPackV2: processing fetch command
16:10:19.037 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.037 [info] UploadPackV2: collected 0 objects, generating pack
16:10:19.037 [info] UploadPackV2: pack generated, 32 bytes
16:10:19.037 [info] UploadPackV2: fetch response 54 bytes
.
16:10:19.290 [info] UploadPackV2: processing ls-refs command
.
16:10:19.366 [info] UploadPackV2: processing ls-refs command
16:10:19.367 [info] UploadPackV2: processing fetch command
16:10:19.367 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.375 [info] UploadPackV2: collected 240 objects, generating pack
16:10:19.380 [info] UploadPackV2: pack generated, 16258 bytes
16:10:19.380 [info] UploadPackV2: fetch response 16280 bytes
.
16:10:19.534 [info] UploadPackV2: processing ls-refs command
16:10:19.535 [info] UploadPackV2: processing fetch command
16:10:19.535 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:19.536 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.536 [info] UploadPackV2: pack generated, 231 bytes
16:10:19.536 [info] UploadPackV2: fetch response 327 bytes
.
16:10:19.594 [info] UploadPackV2: processing ls-refs command
.
16:10:19.694 [info] UploadPackV2: processing ls-refs command
16:10:19.695 [info] UploadPackV2: processing fetch command
16:10:19.695 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:19.717 [info] UploadPackV2: collected 600 objects, generating pack
16:10:19.735 [info] UploadPackV2: pack generated, 45197 bytes
16:10:19.735 [info] UploadPackV2: fetch response 45219 bytes
.*****..
16:10:19.822 [info] UploadPackV2: processing ls-refs command
16:10:19.823 [info] UploadPackV2: processing fetch command
16:10:19.823 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:19.824 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.824 [info] UploadPackV2: pack generated, 218 bytes
16:10:19.824 [info] UploadPackV2: fetch response 314 bytes
.
16:10:19.890 [info] UploadPackV2: processing ls-refs command
16:10:19.891 [info] UploadPackV2: processing fetch command
16:10:19.891 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:19.892 [info] UploadPackV2: collected 3 objects, generating pack
16:10:19.892 [info] UploadPackV2: pack generated, 216 bytes
16:10:19.892 [info] UploadPackV2: fetch response 312 bytes
16:10:19.950 [info] UploadPackV2: processing ls-refs command
16:10:19.950 [info] UploadPackV2: processing fetch command
16:10:19.951 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:19.951 [info] UploadPackV2: collected 12 objects, generating pack
16:10:19.952 [info] UploadPackV2: pack generated, 768 bytes
16:10:19.952 [info] UploadPackV2: fetch response 1002 bytes
.
16:10:20.010 [info] UploadPackV2: processing ls-refs command
.
16:10:20.062 [info] UploadPackV2: processing ls-refs command
16:10:20.063 [info] UploadPackV2: processing fetch command
16:10:20.063 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:20.064 [info] UploadPackV2: collected 9 objects, generating pack
16:10:20.064 [info] UploadPackV2: pack generated, 549 bytes
16:10:20.064 [info] UploadPackV2: fetch response 571 bytes
16:10:20.080 [info] UploadPackV2: processing fetch command
16:10:20.080 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
16:10:20.081 [info] UploadPackV2: fetch response 171 bytes
.
16:10:20.126 [info] UploadPackV2: processing ls-refs command
.
16:10:20.174 [info] UploadPackV2: processing ls-refs command
.
16:10:20.226 [info] UploadPackV2: processing ls-refs command
16:10:20.227 [info] UploadPackV2: processing fetch command
16:10:20.227 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:20.227 [info] UploadPackV2: collected 3 objects, generating pack
16:10:20.228 [info] UploadPackV2: pack generated, 216 bytes
16:10:20.228 [info] UploadPackV2: fetch response 312 bytes
.
16:10:20.294 [info] UploadPackV2: processing ls-refs command
16:10:20.295 [info] UploadPackV2: processing fetch command
16:10:20.295 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:10:20.296 [info] UploadPackV2: collected 9 objects, generating pack
16:10:20.296 [info] UploadPackV2: pack generated, 585 bytes
16:10:20.296 [info] UploadPackV2: fetch response 681 bytes
.
16:10:20.354 [info] UploadPackV2: processing ls-refs command
.
16:10:20.406 [info] UploadPackV2: processing ls-refs command
16:10:20.409 [info] UploadPackV2: processing fetch command
16:10:20.409 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
16:10:20.409 [info] UploadPackV2: collected 3 objects, generating pack
16:10:20.409 [info] UploadPackV2: pack generated, 381 bytes
16:10:20.410 [info] UploadPackV2: fetch response 403 bytes
.
16:10:20.474 [info] UploadPackV2: processing ls-refs command
16:10:20.477 [info] UploadPackV2: processing fetch command
16:10:20.477 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
16:10:20.477 [info] UploadPackV2: collected 5 objects, generating pack
16:10:20.478 [info] UploadPackV2: pack generated, 319 bytes
16:10:20.478 [info] UploadPackV2: fetch response 341 bytes
.
16:10:20.542 [info] UploadPackV2: processing ls-refs command
16:10:20.544 [info] UploadPackV2: processing fetch command
16:10:20.545 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
16:10:20.545 [info] UploadPackV2: collected 3 objects, generating pack
16:10:20.545 [info] UploadPackV2: pack generated, 381 bytes
16:10:20.545 [info] UploadPackV2: fetch response 403 bytes
..
16:10:20.614 [info] UploadPackV2: processing ls-refs command
16:10:20.617 [info] UploadPackV2: processing fetch command
16:10:20.617 [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
16:10:20.618 [info] UploadPackV2: collected 6 objects, generating pack
16:10:20.618 [info] UploadPackV2: pack generated, 513 bytes
16:10:20.618 [info] UploadPackV2: fetch response 535 bytes
.
16:10:20.690 [info] UploadPackV2: processing ls-refs command
16:10:20.693 [info] UploadPackV2: processing fetch command
16:10:20.693 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:10:20.693 [info] UploadPackV2: collected 6 objects, generating pack
16:10:20.694 [info] UploadPackV2: pack generated, 513 bytes
16:10:20.694 [info] UploadPackV2: fetch response 535 bytes
.
16:10:20.736 [info] UploadPackV2: processing ls-refs command
16:10:20.739 [info] UploadPackV2: processing fetch command
16:10:20.739 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:20.744 [info] UploadPackV2: collected 180 objects, generating pack
16:10:20.746 [info] UploadPackV2: pack generated, 11106 bytes
16:10:20.746 [info] UploadPackV2: fetch response 11128 bytes
.
16:10:20.842 [info] UploadPackV2: processing fetch command
16:10:20.843 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:20.843 [info] UploadPackV2: collected 3 objects, generating pack
16:10:20.843 [info] UploadPackV2: pack generated, 183 bytes
16:10:20.843 [info] UploadPackV2: fetch response 205 bytes
.
16:10:20.880 [info] UploadPackV2: processing ls-refs command
16:10:20.886 [info] UploadPackV2: processing fetch command
16:10:20.886 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:20.887 [info] UploadPackV2: collected 9 objects, generating pack
16:10:20.887 [info] UploadPackV2: pack generated, 549 bytes
16:10:20.887 [info] UploadPackV2: fetch response 571 bytes
16:10:21.020 [info] UploadPackV2: processing ls-refs command
.
16:10:21.043 [info] UploadPackV2: processing ls-refs command
16:10:21.045 [info] UploadPackV2: processing fetch command
16:10:21.046 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:21.046 [info] UploadPackV2: collected 3 objects, generating pack
16:10:21.046 [info] UploadPackV2: pack generated, 183 bytes
16:10:21.046 [info] UploadPackV2: fetch response 205 bytes
.
16:10:21.084 [info] UploadPackV2: processing ls-refs command
16:10:21.087 [info] UploadPackV2: processing fetch command
16:10:21.087 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:21.087 [info] UploadPackV2: collected 6 objects, generating pack
16:10:21.087 [info] UploadPackV2: pack generated, 366 bytes
16:10:21.087 [info] UploadPackV2: fetch response 388 bytes
16:10:21.120 [info] UploadPackV2: processing ls-refs command
..
16:10:21.176 [info] UploadPackV2: processing ls-refs command
16:10:21.179 [info] UploadPackV2: processing fetch command
16:10:21.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:10:21.180 [info] UploadPackV2: collected 15 objects, generating pack
16:10:21.180 [info] UploadPackV2: pack generated, 919 bytes
16:10:21.180 [info] UploadPackV2: fetch response 941 bytes
.......................
Finished in 203.4 seconds (15.3s async, 188.1s sync)
Result: 1009 passed (2 properties, 1007 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info