fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Runner:
carl
online
linux/arm64
Started: Jun 15, 2026 at 18:56 UTC
Completed: Jun 15, 2026 at 18:59 UTC
Duration: 3m 39s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Cover compiling modules ...
Running ExUnit with seed: 534057, max_cases: 8
Excluding tags: [:s3]
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: 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: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: 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
│
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:63: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
│
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
........................................................................................................................................................................................................................................................................................
18:56:17.626 [info] The function passed as a handler with ID #Reference<0.1780016647.3712221187.196899> 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
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:151: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
│
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted 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
│
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: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
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
..................................................................................................................................................................................................................................................................................................
18:56:22.175 [info] UploadPackV2: processing fetch command
.
18:56:22.176 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:22.178 [info] UploadPackV2: collected 15 objects, generating pack
18:56:22.178 [info] UploadPackV2: pack generated, 984 bytes
18:56:22.181 [info] UploadPackV2: fetch response 1006 bytes
.........
18:56:22.576 [info] UploadPackV2: processing fetch command
18:56:22.576 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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)
....
18:56:22.700 [warning] post_receive hook failed: "webhook failed"
.....
18:56:22.849 [info] UploadPackV2: collected 600 objects, generating pack
18:56:22.863 [info] UploadPackV2: pack generated, 39862 bytes
18:56:22.863 [info] UploadPackV2: fetch response 39884 bytes
18:56:22.940 [info] UploadPackV2: processing ls-refs command
.....
18:56:23.021 [info] The function passed as a handler with ID #Reference<0.1780016647.3712221188.187111> 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
...........
18:56:23.284 [info] UploadPackV2: processing fetch command
18:56:23.284 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
18:56:23.375 [info] UploadPackV2: collected 700 objects, generating pack
18:56:23.397 [info] UploadPackV2: pack generated, 48139 bytes
18:56:23.397 [info] UploadPackV2: fetch response 48161 bytes
.
18:56:23.512 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.........................
18:56:23.695 [info] UploadPackV2: processing fetch command
.
18:56:23.695 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
........
18:56:23.738 [info] UploadPackV2: collected 32 objects, streaming pack
.............................................
18:56:24.232 [info] UploadPackV2: streamed pack 2459753 bytes, 32 objects
.
18:56:24.232 [info] UploadPackV2: fetch streamed 2459753 pack bytes, 32 objects
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
...............
18:56:24.550 [info] UploadPackV2: processing fetch command
18:56:24.550 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.555 [info] UploadPackV2: collected 90 objects, generating pack
.
18:56:24.557 [info] UploadPackV2: pack generated, 5946 bytes
.
18:56:24.557 [info] UploadPackV2: fetch response 5968 bytes
.
18:56:24.570 [info] UploadPackV2: processing fetch command
.
18:56:24.570 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:24.571 [info] UploadPackV2: collected 3 objects, generating pack
.
18:56:24.571 [info] UploadPackV2: pack generated, 191 bytes
.
18:56:24.572 [info] UploadPackV2: fetch response 213 bytes
18:56:24.577 [info] UploadPackV2: processing fetch command
18:56:24.577 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.579 [info] UploadPackV2: collected 3 objects, generating pack
18:56:24.580 [info] UploadPackV2: pack generated, 195 bytes
18:56:24.580 [info] UploadPackV2: fetch response 217 bytes
18:56:24.585 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
18:56:24.594 [info] UploadPackV2: processing fetch command
.
18:56:24.594 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
18:56:24.594 [info] UploadPackV2: fetch response 73 bytes
18:56:24.594 [info] UploadPackV2: processing fetch command
18:56:24.594 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
18:56:24.594 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
18:56:24.599 [info] UploadPackV2: processing fetch command
18:56:24.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.600 [info] UploadPackV2: collected 15 objects, generating pack
.
18:56:24.601 [info] UploadPackV2: pack generated, 984 bytes
.
18:56:24.601 [info] UploadPackV2: fetch response 1006 bytes
.
18:56:24.601 [info] UploadPackV2: processing fetch command
.
18:56:24.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.602 [info] UploadPackV2: collected 15 objects, streaming pack
18:56:24.605 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
18:56:24.605 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
18:56:24.609 [info] UploadPackV2: processing ls-refs command
18:56:24.609 [info] UploadPackV2: processing ls-refs command
18:56:24.612 [info] UploadPackV2: processing ls-refs command
18:56:24.613 [info] UploadPackV2: processing fetch command
18:56:24.613 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.613 [info] UploadPackV2: collected 3 objects, generating pack
18:56:24.694 [info] UploadPackV2: pack generated, 206 bytes
.
18:56:24.694 [info] UploadPackV2: fetch response 228 bytes
.
18:56:24.695 [info] UploadPackV2: processing fetch command
.
18:56:24.695 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:24.695 [info] UploadPackV2: collected 0 objects, generating pack
.
18:56:24.695 [info] UploadPackV2: pack generated, 32 bytes
18:56:24.695 [info] UploadPackV2: fetch response 54 bytes
.
18:56:24.696 [info] UploadPackV2: processing fetch command
18:56:24.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.700 [info] UploadPackV2: collected 3 objects, streaming pack
18:56:24.701 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
18:56:24.701 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
18:56:24.703 [info] UploadPackV2: processing fetch command
18:56:24.703 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.703 [info] UploadPackV2: collected 3 objects, generating pack
18:56:24.704 [info] UploadPackV2: pack generated, 191 bytes
18:56:24.704 [info] UploadPackV2: fetch response 213 bytes
18:56:24.708 [info] UploadPackV2: processing fetch command
18:56:24.708 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:24.709 [info] UploadPackV2: collected 9 objects, streaming pack
18:56:24.718 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
18:56:24.718 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
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
.........
18:56:25.000 [info] UploadPackV2: processing fetch command
.
18:56:25.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
18:56:25.029 [info] UploadPackV2: collected 32 objects, generating pack
18:56:25.058 [info] UploadPackV2: processing fetch command
18:56:25.058 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.067 [info] UploadPackV2: collected 14 objects, generating pack
18:56:25.067 [info] UploadPackV2: pack generated, 1062 bytes
.
18:56:25.067 [info] UploadPackV2: fetch response 1084 bytes
18:56:25.089 [info] UploadPackV2: processing fetch command
.
18:56:25.089 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.090 [info] UploadPackV2: collected 11 objects, generating pack
18:56:25.092 [info] UploadPackV2: pack generated, 851 bytes
18:56:25.092 [info] UploadPackV2: fetch response 873 bytes
18:56:25.100 [info] UploadPackV2: processing fetch command
18:56:25.100 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.103 [info] UploadPackV2: collected 20 objects, generating pack
18:56:25.103 [info] UploadPackV2: pack generated, 1490 bytes
18:56:25.103 [info] UploadPackV2: fetch response 1512 bytes
18:56:25.113 [info] UploadPackV2: processing fetch command
18:56:25.113 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
18:56:25.114 [info] UploadPackV2: collected 26 objects, generating pack
18:56:25.115 [info] UploadPackV2: pack generated, 1876 bytes
.
18:56:25.116 [info] UploadPackV2: fetch response 1898 bytes
.
18:56:25.124 [info] UploadPackV2: processing fetch command
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)
18:56:25.124 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
18:56:25.125 [info] UploadPackV2: collected 18 objects, generating pack
.
18:56:25.126 [info] UploadPackV2: pack generated, 1281 bytes
.
18:56:25.126 [info] UploadPackV2: fetch response 1303 bytes
.
18:56:25.136 [info] UploadPackV2: processing fetch command
.
18:56:25.136 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
18:56:25.142 [info] UploadPackV2: collected 26 objects, generating pack
.
18:56:25.143 [info] UploadPackV2: pack generated, 1886 bytes
.
18:56:25.143 [info] UploadPackV2: fetch response 1908 bytes
18:56:25.154 [info] UploadPackV2: processing fetch command
18:56:25.154 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.155 [info] UploadPackV2: collected 14 objects, generating pack
18:56:25.155 [info] UploadPackV2: pack generated, 1062 bytes
18:56:25.155 [info] UploadPackV2: fetch response 1084 bytes
18:56:25.163 [info] UploadPackV2: processing fetch command
18:56:25.163 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.164 [info] UploadPackV2: collected 12 objects, generating pack
18:56:25.165 [info] UploadPackV2: pack generated, 854 bytes
18:56:25.168 [info] UploadPackV2: fetch response 876 bytes
18:56:25.172 [info] UploadPackV2: processing fetch command
18:56:25.173 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.173 [info] UploadPackV2: collected 9 objects, generating pack
18:56:25.174 [info] UploadPackV2: pack generated, 642 bytes
18:56:25.174 [info] UploadPackV2: fetch response 664 bytes
.
18:56:25.184 [info] UploadPackV2: processing fetch command
18:56:25.185 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.187 [info] UploadPackV2: collected 20 objects, generating pack
18:56:25.188 [info] UploadPackV2: pack generated, 1492 bytes
18:56:25.188 [info] UploadPackV2: fetch response 1514 bytes
18:56:25.197 [info] UploadPackV2: processing fetch command
18:56:25.197 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.200 [info] UploadPackV2: collected 44 objects, generating pack
18:56:25.201 [info] UploadPackV2: pack generated, 3134 bytes
18:56:25.201 [info] UploadPackV2: fetch response 3156 bytes
.
18:56:25.213 [info] UploadPackV2: processing fetch command
18:56:25.213 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.214 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.214 [info] UploadPackV2: pack generated, 214 bytes
18:56:25.214 [info] UploadPackV2: fetch response 236 bytes
18:56:25.219 [info] UploadPackV2: processing fetch command
18:56:25.219 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.223 [info] UploadPackV2: collected 41 objects, generating pack
18:56:25.224 [info] UploadPackV2: pack generated, 2921 bytes
18:56:25.225 [info] UploadPackV2: fetch response 2943 bytes
18:56:25.237 [info] UploadPackV2: processing fetch command
18:56:25.237 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.238 [info] UploadPackV2: collected 23 objects, generating pack
18:56:25.239 [info] UploadPackV2: pack generated, 1673 bytes
18:56:25.239 [info] UploadPackV2: fetch response 1695 bytes
18:56:25.251 [info] UploadPackV2: processing fetch command
18:56:25.251 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.251 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.252 [info] UploadPackV2: pack generated, 214 bytes
18:56:25.252 [info] UploadPackV2: fetch response 236 bytes
18:56:25.259 [info] UploadPackV2: processing fetch command
18:56:25.260 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.261 [info] UploadPackV2: collected 5 objects, generating pack
18:56:25.262 [info] UploadPackV2: pack generated, 424 bytes
18:56:25.262 [info] UploadPackV2: fetch response 446 bytes
18:56:25.272 [info] UploadPackV2: processing fetch command
18:56:25.272 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.274 [info] UploadPackV2: pack generated, 2459815 bytes
18:56:25.279 [info] UploadPackV2: fetch response 2460022 bytes
18:56:25.279 [info] UploadPackV2: processing fetch command
18:56:25.279 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.285 [info] UploadPackV2: collected 39 objects, generating pack
18:56:25.286 [info] UploadPackV2: pack generated, 2713 bytes
18:56:25.286 [info] UploadPackV2: fetch response 2735 bytes
18:56:25.290 [info] UploadPackV2: collected 32 objects, streaming pack
.
18:56:25.310 [info] UploadPackV2: processing fetch command
18:56:25.310 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.313 [info] UploadPackV2: collected 30 objects, generating pack
18:56:25.314 [info] UploadPackV2: pack generated, 2075 bytes
18:56:25.314 [info] UploadPackV2: fetch response 2097 bytes
18:56:25.330 [info] UploadPackV2: processing fetch command
18:56:25.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.332 [info] UploadPackV2: collected 20 objects, generating pack
18:56:25.332 [info] UploadPackV2: pack generated, 1492 bytes
18:56:25.332 [info] UploadPackV2: fetch response 1514 bytes
18:56:25.344 [info] UploadPackV2: processing fetch command
18:56:25.345 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.346 [info] UploadPackV2: collected 18 objects, generating pack
18:56:25.346 [info] UploadPackV2: pack generated, 1281 bytes
18:56:25.346 [info] UploadPackV2: fetch response 1303 bytes
18:56:25.353 [info] UploadPackV2: processing fetch command
18:56:25.353 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.354 [info] UploadPackV2: collected 12 objects, generating pack
18:56:25.355 [info] UploadPackV2: pack generated, 854 bytes
18:56:25.355 [info] UploadPackV2: fetch response 876 bytes
18:56:25.359 [info] UploadPackV2: processing fetch command
18:56:25.360 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.360 [info] UploadPackV2: collected 8 objects, generating pack
18:56:25.361 [info] UploadPackV2: pack generated, 639 bytes
.
18:56:25.361 [info] UploadPackV2: fetch response 661 bytes
18:56:25.366 [info] UploadPackV2: processing fetch command
18:56:25.366 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.367 [info] UploadPackV2: collected 12 objects, generating pack
18:56:25.367 [info] UploadPackV2: pack generated, 854 bytes
18:56:25.368 [info] UploadPackV2: fetch response 876 bytes
18:56:25.372 [info] UploadPackV2: processing fetch command
18:56:25.373 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.374 [info] UploadPackV2: collected 12 objects, generating pack
18:56:25.374 [info] UploadPackV2: pack generated, 854 bytes
18:56:25.374 [info] UploadPackV2: fetch response 876 bytes
18:56:25.378 [info] UploadPackV2: processing fetch command
18:56:25.379 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.379 [info] UploadPackV2: collected 11 objects, generating pack
18:56:25.379 [info] UploadPackV2: pack generated, 851 bytes
18:56:25.380 [info] UploadPackV2: fetch response 873 bytes
18:56:25.386 [info] UploadPackV2: processing fetch command
18:56:25.386 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.388 [info] UploadPackV2: collected 15 objects, generating pack
18:56:25.389 [info] UploadPackV2: pack generated, 1068 bytes
18:56:25.389 [info] UploadPackV2: fetch response 1090 bytes
18:56:25.396 [info] UploadPackV2: processing fetch command
18:56:25.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.397 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.398 [info] UploadPackV2: pack generated, 214 bytes
18:56:25.398 [info] UploadPackV2: fetch response 236 bytes
18:56:25.402 [info] UploadPackV2: processing fetch command
18:56:25.402 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.411 [info] UploadPackV2: collected 17 objects, generating pack
18:56:25.412 [info] UploadPackV2: pack generated, 1233 bytes
18:56:25.412 [info] UploadPackV2: fetch response 1255 bytes
18:56:25.422 [info] UploadPackV2: processing fetch command
18:56:25.423 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.424 [info] UploadPackV2: collected 14 objects, generating pack
18:56:25.424 [info] UploadPackV2: pack generated, 1062 bytes
18:56:25.425 [info] UploadPackV2: fetch response 1084 bytes
18:56:25.431 [info] UploadPackV2: processing fetch command
18:56:25.431 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.432 [info] UploadPackV2: collected 18 objects, generating pack
18:56:25.432 [info] UploadPackV2: pack generated, 1281 bytes
18:56:25.432 [info] UploadPackV2: fetch response 1303 bytes
18:56:25.445 [info] UploadPackV2: processing fetch command
18:56:25.445 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.447 [info] UploadPackV2: collected 28 objects, generating pack
18:56:25.448 [info] UploadPackV2: pack generated, 2085 bytes
18:56:25.448 [info] UploadPackV2: fetch response 2107 bytes
.
18:56:25.461 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
18:56:25.462 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
.
18:56:25.466 [info] UploadPackV2: processing fetch command
.
18:56:25.466 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.466 [info] UploadPackV2: processing fetch command
18:56:25.466 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.466 [info] UploadPackV2: collected 6 objects, generating pack
18:56:25.466 [info] UploadPackV2: pack generated, 414 bytes
18:56:25.467 [info] UploadPackV2: fetch response 436 bytes
18:56:25.467 [info] UploadPackV2: collected 18 objects, generating pack
18:56:25.467 [info] UploadPackV2: pack generated, 1281 bytes
18:56:25.467 [info] UploadPackV2: fetch response 1303 bytes
.
18:56:25.472 [info] UploadPackV2: processing fetch command
18:56:25.472 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.472 [info] UploadPackV2: collected 3 objects, streaming pack
18:56:25.478 [info] UploadPackV2: processing fetch command
18:56:25.478 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.479 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.480 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
18:56:25.480 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
18:56:25.480 [info] UploadPackV2: pack generated, 214 bytes
18:56:25.481 [info] UploadPackV2: fetch response 236 bytes
18:56:25.483 [info] UploadPackV2: processing fetch command
18:56:25.483 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.483 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.484 [info] UploadPackV2: pack generated, 191 bytes
18:56:25.484 [info] UploadPackV2: fetch response 213 bytes
.
18:56:25.498 [info] UploadPackV2: processing fetch command
18:56:25.498 [info] UploadPackV2: processing ls-refs command
18:56:25.498 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.499 [info] UploadPackV2: processing fetch command
18:56:25.499 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.499 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.500 [info] UploadPackV2: pack generated, 210 bytes
18:56:25.500 [info] UploadPackV2: fetch response 232 bytes
18:56:25.502 [info] UploadPackV2: collected 52 objects, generating pack
18:56:25.504 [info] UploadPackV2: pack generated, 3786 bytes
18:56:25.509 [info] UploadPackV2: fetch response 3808 bytes
18:56:25.527 [info] UploadPackV2: processing fetch command
18:56:25.527 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.527 [info] UploadPackV2: collected 9 objects, generating pack
18:56:25.528 [info] UploadPackV2: pack generated, 610 bytes
18:56:25.528 [info] UploadPackV2: fetch response 632 bytes
18:56:25.538 [info] UploadPackV2: processing fetch command
18:56:25.538 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.539 [info] UploadPackV2: collected 20 objects, generating pack
18:56:25.540 [info] UploadPackV2: pack generated, 1458 bytes
18:56:25.540 [info] UploadPackV2: fetch response 1480 bytes
18:56:25.558 [info] UploadPackV2: processing fetch command
18:56:25.558 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.561 [info] UploadPackV2: collected 27 objects, generating pack
18:56:25.562 [info] UploadPackV2: pack generated, 1889 bytes
18:56:25.562 [info] UploadPackV2: fetch response 1911 bytes
.
18:56:25.574 [info] UploadPackV2: processing fetch command
.
18:56:25.574 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.574 [info] UploadPackV2: processing fetch command
.
18:56:25.574 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
18:56:25.574 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.575 [info] UploadPackV2: pack generated, 194 bytes
.
18:56:25.575 [info] UploadPackV2: fetch response 216 bytes
18:56:25.575 [info] UploadPackV2: collected 18 objects, generating pack
18:56:25.576 [info] UploadPackV2: pack generated, 1249 bytes
18:56:25.576 [info] UploadPackV2: fetch response 1271 bytes
18:56:25.576 [info] UploadPackV2: processing ls-refs command
18:56:25.577 [info] UploadPackV2: processing fetch command
18:56:25.577 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.578 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.578 [info] UploadPackV2: pack generated, 195 bytes
18:56:25.578 [info] UploadPackV2: fetch response 217 bytes
18:56:25.580 [info] UploadPackV2: processing fetch command
18:56:25.580 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.580 [info] UploadPackV2: collected 3 objects, generating pack
18:56:25.580 [info] UploadPackV2: pack generated, 223 bytes
18:56:25.580 [info] UploadPackV2: fetch response 245 bytes
18:56:25.594 [info] UploadPackV2: processing fetch command
18:56:25.594 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.595 [info] UploadPackV2: collected 18 objects, generating pack
18:56:25.597 [info] UploadPackV2: pack generated, 1281 bytes
18:56:25.597 [info] UploadPackV2: fetch response 1303 bytes
18:56:25.606 [info] UploadPackV2: processing fetch command
18:56:25.606 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:56:25.607 [info] UploadPackV2: collected 17 objects, generating pack
18:56:25.607 [info] UploadPackV2: pack generated, 1236 bytes
18:56:25.607 [info] UploadPackV2: fetch response 1258 bytes
.
18:56:25.615 [info] UploadPackV2: processing fetch command
18:56:25.615 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.618 [info] UploadPackV2: collected 19 objects, generating pack
18:56:25.618 [info] UploadPackV2: pack generated, 1194 bytes
18:56:25.619 [info] UploadPackV2: fetch response 1216 bytes
.
18:56:25.628 [info] UploadPackV2: processing fetch command
.
18:56:25.629 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.630 [info] UploadPackV2: collected 15 objects, generating pack
18:56:25.631 [info] UploadPackV2: pack generated, 956 bytes
18:56:25.631 [info] UploadPackV2: fetch response 978 bytes
18:56:25.639 [info] UploadPackV2: processing fetch command
18:56:25.639 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.641 [info] UploadPackV2: collected 27 objects, generating pack
18:56:25.642 [info] UploadPackV2: pack generated, 1676 bytes
18:56:25.642 [info] UploadPackV2: fetch response 1698 bytes
18:56:25.651 [info] UploadPackV2: processing fetch command
18:56:25.651 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.653 [info] UploadPackV2: collected 35 objects, generating pack
18:56:25.655 [info] UploadPackV2: pack generated, 2107 bytes
18:56:25.655 [info] UploadPackV2: fetch response 2129 bytes
18:56:25.672 [info] UploadPackV2: processing fetch command
18:56:25.672 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.678 [info] UploadPackV2: collected 24 objects, generating pack
18:56:25.679 [info] UploadPackV2: pack generated, 1443 bytes
18:56:25.680 [info] UploadPackV2: fetch response 1465 bytes
18:56:25.687 [info] UploadPackV2: processing fetch command
18:56:25.687 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.689 [info] UploadPackV2: collected 35 objects, generating pack
18:56:25.691 [info] UploadPackV2: pack generated, 2126 bytes
18:56:25.691 [info] UploadPackV2: fetch response 2148 bytes
18:56:25.700 [info] UploadPackV2: processing fetch command
18:56:25.700 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.702 [info] UploadPackV2: collected 19 objects, generating pack
18:56:25.703 [info] UploadPackV2: pack generated, 1194 bytes
18:56:25.703 [info] UploadPackV2: fetch response 1216 bytes
18:56:25.708 [info] UploadPackV2: processing fetch command
18:56:25.708 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.709 [info] UploadPackV2: collected 16 objects, generating pack
18:56:25.710 [info] UploadPackV2: pack generated, 962 bytes
18:56:25.710 [info] UploadPackV2: fetch response 984 bytes
18:56:25.715 [info] UploadPackV2: processing fetch command
.
18:56:25.715 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.716 [info] UploadPackV2: collected 12 objects, generating pack
18:56:25.717 [info] UploadPackV2: pack generated, 723 bytes
18:56:25.717 [info] UploadPackV2: fetch response 745 bytes
18:56:25.723 [info] UploadPackV2: processing fetch command
18:56:25.723 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.724 [info] UploadPackV2: collected 27 objects, generating pack
18:56:25.726 [info] UploadPackV2: pack generated, 1678 bytes
18:56:25.726 [info] UploadPackV2: fetch response 1700 bytes
.
18:56:25.739 [info] UploadPackV2: processing fetch command
18:56:25.740 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.747 [info] UploadPackV2: collected 59 objects, generating pack
18:56:25.751 [info] UploadPackV2: pack generated, 3536 bytes
18:56:25.751 [info] UploadPackV2: fetch response 3558 bytes
.
18:56:25.762 [info] UploadPackV2: processing fetch command
.
18:56:25.762 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.763 [info] UploadPackV2: collected 4 objects, generating pack
18:56:25.763 [info] UploadPackV2: pack generated, 241 bytes
18:56:25.763 [info] UploadPackV2: fetch response 263 bytes
18:56:25.773 [info] UploadPackV2: processing fetch command
18:56:25.773 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.776 [info] UploadPackV2: collected 55 objects, generating pack
18:56:25.778 [info] UploadPackV2: pack generated, 3296 bytes
18:56:25.778 [info] UploadPackV2: fetch response 3318 bytes
.
18:56:25.793 [info] UploadPackV2: processing fetch command
18:56:25.793 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.795 [info] UploadPackV2: collected 31 objects, generating pack
18:56:25.796 [info] UploadPackV2: pack generated, 1886 bytes
18:56:25.797 [info] UploadPackV2: fetch response 1908 bytes
18:56:25.804 [info] UploadPackV2: processing fetch command
18:56:25.804 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.804 [info] UploadPackV2: collected 4 objects, generating pack
18:56:25.805 [info] UploadPackV2: pack generated, 241 bytes
18:56:25.805 [info] UploadPackV2: fetch response 263 bytes
18:56:25.810 [info] UploadPackV2: processing fetch command
18:56:25.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.811 [info] UploadPackV2: collected 7 objects, generating pack
18:56:25.812 [info] UploadPackV2: pack generated, 475 bytes
18:56:25.812 [info] UploadPackV2: fetch response 497 bytes
18:56:25.820 [info] UploadPackV2: processing fetch command
18:56:25.820 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.823 [info] UploadPackV2: collected 52 objects, generating pack
18:56:25.825 [info] UploadPackV2: pack generated, 3064 bytes
18:56:25.825 [info] UploadPackV2: fetch response 3086 bytes
18:56:25.837 [info] UploadPackV2: processing fetch command
18:56:25.837 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.839 [info] UploadPackV2: collected 40 objects, generating pack
18:56:25.841 [info] UploadPackV2: pack generated, 2345 bytes
18:56:25.841 [info] UploadPackV2: fetch response 2367 bytes
18:56:25.851 [info] UploadPackV2: processing fetch command
18:56:25.851 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.853 [info] UploadPackV2: collected 27 objects, generating pack
18:56:25.855 [info] UploadPackV2: pack generated, 1678 bytes
18:56:25.855 [info] UploadPackV2: fetch response 1700 bytes
18:56:25.862 [info] UploadPackV2: processing fetch command
18:56:25.863 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.864 [info] UploadPackV2: collected 24 objects, generating pack
18:56:25.864 [info] UploadPackV2: pack generated, 1443 bytes
18:56:25.864 [info] UploadPackV2: fetch response 1465 bytes
18:56:25.871 [info] UploadPackV2: processing fetch command
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
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()-
18:56:25.871 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.872 [info] UploadPackV2: collected 16 objects, generating pack
18:56:25.873 [info] UploadPackV2: pack generated, 962 bytes
18:56:25.873 [info] UploadPackV2: fetch response 984 bytes
18:56:25.878 [info] UploadPackV2: processing fetch command
18:56:25.878 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.879 [info] UploadPackV2: collected 11 objects, generating pack
18:56:25.880 [info] UploadPackV2: pack generated, 717 bytes
18:56:25.880 [info] UploadPackV2: fetch response 739 bytes
18:56:25.886 [info] UploadPackV2: processing fetch command
18:56:25.886 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.887 [info] UploadPackV2: collected 16 objects, generating pack
18:56:25.888 [info] UploadPackV2: pack generated, 962 bytes
18:56:25.888 [info] UploadPackV2: fetch response 984 bytes
18:56:25.892 [info] UploadPackV2: processing fetch command
18:56:25.892 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.893 [info] UploadPackV2: collected 16 objects, generating pack
18:56:25.894 [info] UploadPackV2: pack generated, 962 bytes
18:56:25.894 [info] UploadPackV2: fetch response 984 bytes
18:56:25.898 [info] UploadPackV2: processing fetch command
18:56:25.899 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.900 [info] UploadPackV2: collected 15 objects, generating pack
18:56:25.900 [info] UploadPackV2: pack generated, 956 bytes
18:56:25.900 [info] UploadPackV2: fetch response 978 bytes
..
18:56:25.916 [info] UploadPackV2: processing fetch command
18:56:25.916 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.918 [info] UploadPackV2: collected 20 objects, generating pack
18:56:25.920 [info] UploadPackV2: pack generated, 1203 bytes
.
18:56:25.920 [info] UploadPackV2: fetch response 1225 bytes
.
18:56:25.923 [info] UploadPackV2: processing fetch command
18:56:25.923 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.924 [info] UploadPackV2: collected 4 objects, generating pack
18:56:25.924 [info] UploadPackV2: pack generated, 241 bytes
18:56:25.924 [info] UploadPackV2: fetch response 263 bytes
..
18:56:25.937 [info] UploadPackV2: processing fetch command
..
18:56:25.937 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.938 [info] UploadPackV2: collected 23 objects, generating pack
.
18:56:25.938 [info] UploadPackV2: pack generated, 1383 bytes
.
18:56:25.939 [info] UploadPackV2: fetch response 1405 bytes
.
18:56:25.948 [info] UploadPackV2: processing fetch command
.
18:56:25.948 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.955 [info] UploadPackV2: collected 19 objects, generating pack
.
18:56:25.956 [info] UploadPackV2: pack generated, 1194 bytes
.
18:56:25.956 [info] UploadPackV2: fetch response 1216 bytes
.
18:56:25.971 [info] UploadPackV2: processing fetch command
.
18:56:25.971 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:25.972 [info] UploadPackV2: collected 24 objects, generating pack
18:56:25.972 [info] UploadPackV2: pack generated, 1443 bytes
.
18:56:25.973 [info] UploadPackV2: fetch response 1465 bytes
.
18:56:25.987 [info] UploadPackV2: processing fetch command
..
18:56:25.988 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:25.993 [info] UploadPackV2: collected 38 objects, generating pack
.
18:56:25.994 [info] UploadPackV2: pack generated, 2340 bytes
.
18:56:25.994 [info] UploadPackV2: fetch response 2362 bytes
.
18:56:26.010 [info] UploadPackV2: processing fetch command
..
18:56:26.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:26.011 [info] UploadPackV2: collected 24 objects, generating pack
.
18:56:26.012 [info] UploadPackV2: pack generated, 1443 bytes
.
18:56:26.012 [info] UploadPackV2: fetch response 1465 bytes
.
18:56:26.023 [info] UploadPackV2: processing fetch command
.
18:56:26.024 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:26.029 [info] UploadPackV2: collected 4 objects, generating pack
.
18:56:26.031 [info] UploadPackV2: pack generated, 241 bytes
.
18:56:26.031 [info] UploadPackV2: fetch response 263 bytes
.
18:56:26.052 [info] UploadPackV2: processing fetch command
.
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
18:56:26.053 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
18:56:26.073 [info] UploadPackV2: collected 70 objects, generating pack
.
18:56:26.075 [info] UploadPackV2: pack generated, 4257 bytes
.
18:56:26.075 [info] UploadPackV2: fetch response 4279 bytes
.
18:56:26.113 [info] UploadPackV2: processing fetch command
.
18:56:26.113 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.........
18:56:26.115 [info] UploadPackV2: collected 12 objects, generating pack
18:56:26.115 [info] UploadPackV2: pack generated, 691 bytes
18:56:26.116 [info] UploadPackV2: fetch response 713 bytes
.
18:56:26.119 [info] UploadPackV2: processing fetch command
18:56:26.119 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.121 [info] UploadPackV2: collected 27 objects, generating pack
18:56:26.122 [info] UploadPackV2: pack generated, 1644 bytes
18:56:26.122 [info] UploadPackV2: fetch response 1666 bytes
18:56:26.129 [info] UploadPackV2: processing fetch command
18:56:26.130 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.131 [info] UploadPackV2: collected 36 objects, generating pack
18:56:26.132 [info] UploadPackV2: pack generated, 2132 bytes
18:56:26.132 [info] UploadPackV2: fetch response 2154 bytes
18:56:26.141 [info] UploadPackV2: processing fetch command
18:56:26.142 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.148 [info] UploadPackV2: collected 24 objects, generating pack
18:56:26.163 [info] UploadPackV2: pack generated, 1411 bytes
18:56:26.163 [info] UploadPackV2: fetch response 1433 bytes
18:56:26.175 [info] UploadPackV2: processing fetch command
18:56:26.175 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.176 [info] UploadPackV2: collected 24 objects, generating pack
18:56:26.181 [info] UploadPackV2: pack generated, 1443 bytes
18:56:26.182 [info] UploadPackV2: fetch response 1465 bytes
18:56:26.199 [info] UploadPackV2: processing fetch command
18:56:26.199 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.216 [info] UploadPackV2: collected 23 objects, generating pack
18:56:26.219 [info] UploadPackV2: pack generated, 1386 bytes
18:56:26.219 [info] UploadPackV2: fetch response 1408 bytes
18:56:26.238 [info] UploadPackV2: processing fetch command
18:56:26.238 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.251 [info] UploadPackV2: collected 34 objects, generating pack
18:56:26.253 [info] UploadPackV2: pack generated, 2099 bytes
18:56:26.253 [info] UploadPackV2: fetch response 2121 bytes
18:56:26.277 [info] UploadPackV2: processing fetch command
18:56:26.278 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.278 [info] UploadPackV2: collected 12 objects, generating pack
18:56:26.279 [info] UploadPackV2: pack generated, 723 bytes
18:56:26.279 [info] UploadPackV2: fetch response 745 bytes
18:56:26.284 [info] UploadPackV2: processing fetch command
18:56:26.284 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.286 [info] UploadPackV2: collected 32 objects, generating pack
18:56:26.286 [info] UploadPackV2: pack generated, 1861 bytes
18:56:26.287 [info] UploadPackV2: fetch response 1883 bytes
18:56:26.297 [info] UploadPackV2: processing fetch command
18:56:26.297 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.300 [info] UploadPackV2: collected 19 objects, generating pack
18:56:26.301 [info] UploadPackV2: pack generated, 1163 bytes
18:56:26.301 [info] UploadPackV2: fetch response 1185 bytes
18:56:26.332 [info] UploadPackV2: processing fetch command
18:56:26.332 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.333 [info] UploadPackV2: collected 20 objects, generating pack
18:56:26.334 [info] UploadPackV2: pack generated, 1203 bytes
18:56:26.334 [info] UploadPackV2: fetch response 1225 bytes
18:56:26.340 [info] UploadPackV2: processing fetch command
18:56:26.340 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.340 [info] UploadPackV2: collected 4 objects, generating pack
18:56:26.340 [info] UploadPackV2: pack generated, 241 bytes
18:56:26.340 [info] UploadPackV2: fetch response 263 bytes
18:56:26.345 [info] UploadPackV2: processing fetch command
18:56:26.345 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.348 [info] UploadPackV2: collected 54 objects, generating pack
18:56:26.349 [info] UploadPackV2: pack generated, 3297 bytes
18:56:26.349 [info] UploadPackV2: fetch response 3319 bytes
18:56:26.357 [info] UploadPackV2: processing fetch command
18:56:26.357 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.357 [info] UploadPackV2: collected 7 objects, generating pack
18:56:26.358 [info] UploadPackV2: pack generated, 475 bytes
18:56:26.358 [info] UploadPackV2: fetch response 497 bytes
18:56:26.365 [info] UploadPackV2: processing fetch command
18:56:26.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.367 [info] UploadPackV2: collected 23 objects, generating pack
18:56:26.367 [info] UploadPackV2: pack generated, 1435 bytes
18:56:26.368 [info] UploadPackV2: fetch response 1457 bytes
18:56:26.391 [info] UploadPackV2: processing fetch command
18:56:26.392 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.397 [info] UploadPackV2: collected 27 objects, generating pack
18:56:26.400 [info] UploadPackV2: pack generated, 1678 bytes
18:56:26.401 [info] UploadPackV2: fetch response 1700 bytes
18:56:26.416 [info] UploadPackV2: processing fetch command
18:56:26.416 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.422 [info] UploadPackV2: collected 11 objects, generating pack
18:56:26.422 [info] UploadPackV2: pack generated, 714 bytes
18:56:26.423 [info] UploadPackV2: fetch response 736 bytes
18:56:26.433 [info] UploadPackV2: processing fetch command
18:56:26.433 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.434 [info] UploadPackV2: collected 4 objects, generating pack
18:56:26.434 [info] UploadPackV2: pack generated, 241 bytes
18:56:26.434 [info] UploadPackV2: fetch response 263 bytes
18:56:26.439 [info] UploadPackV2: processing fetch command
18:56:26.439 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.452 [info] UploadPackV2: collected 46 objects, generating pack
18:56:26.453 [info] UploadPackV2: pack generated, 2823 bytes
18:56:26.453 [info] UploadPackV2: fetch response 2845 bytes
18:56:26.477 [info] UploadPackV2: processing fetch command
18:56:26.477 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.478 [info] UploadPackV2: collected 8 objects, generating pack
18:56:26.478 [info] UploadPackV2: pack generated, 450 bytes
18:56:26.478 [info] UploadPackV2: fetch response 472 bytes
18:56:26.480 [info] UploadPackV2: processing fetch command
18:56:26.480 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.483 [info] UploadPackV2: collected 11 objects, generating pack
18:56:26.488 [info] UploadPackV2: pack generated, 717 bytes
18:56:26.490 [info] UploadPackV2: fetch response 739 bytes
18:56:26.498 [info] UploadPackV2: processing fetch command
18:56:26.499 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.501 [info] UploadPackV2: collected 38 objects, generating pack
18:56:26.503 [info] UploadPackV2: pack generated, 2336 bytes
18:56:26.503 [info] UploadPackV2: fetch response 2358 bytes
18:56:26.512 [info] UploadPackV2: processing fetch command
18:56:26.512 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.515 [info] UploadPackV2: collected 31 objects, generating pack
18:56:26.516 [info] UploadPackV2: pack generated, 1859 bytes
18:56:26.516 [info] UploadPackV2: fetch response 1881 bytes
18:56:26.522 [info] UploadPackV2: processing fetch command
18:56:26.522 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.523 [info] UploadPackV2: collected 8 objects, generating pack
18:56:26.524 [info] UploadPackV2: pack generated, 482 bytes
18:56:26.524 [info] UploadPackV2: fetch response 504 bytes
18:56:26.528 [info] UploadPackV2: processing fetch command
18:56:26.529 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.529 [info] UploadPackV2: collected 7 objects, generating pack
18:56:26.530 [info] UploadPackV2: pack generated, 475 bytes
18:56:26.530 [info] UploadPackV2: fetch response 497 bytes
18:56:26.533 [info] UploadPackV2: processing fetch command
18:56:26.533 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.535 [info] UploadPackV2: collected 23 objects, generating pack
18:56:26.536 [info] UploadPackV2: pack generated, 1407 bytes
18:56:26.536 [info] UploadPackV2: fetch response 1429 bytes
18:56:26.540 [info] UploadPackV2: processing fetch command
18:56:26.540 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.541 [info] UploadPackV2: collected 8 objects, generating pack
18:56:26.541 [info] UploadPackV2: pack generated, 450 bytes
18:56:26.541 [info] UploadPackV2: fetch response 472 bytes
18:56:26.544 [info] UploadPackV2: processing fetch command
18:56:26.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.545 [info] UploadPackV2: collected 7 objects, generating pack
18:56:26.546 [info] UploadPackV2: pack generated, 475 bytes
18:56:26.546 [info] UploadPackV2: fetch response 497 bytes
18:56:26.548 [info] UploadPackV2: processing fetch command
18:56:26.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.549 [info] UploadPackV2: collected 8 objects, generating pack
18:56:26.549 [info] UploadPackV2: pack generated, 482 bytes
18:56:26.549 [info] UploadPackV2: fetch response 504 bytes
18:56:26.554 [info] UploadPackV2: processing fetch command
18:56:26.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.554 [info] UploadPackV2: collected 8 objects, generating pack
18:56:26.555 [info] UploadPackV2: pack generated, 482 bytes
18:56:26.555 [info] UploadPackV2: fetch response 504 bytes
18:56:26.557 [info] UploadPackV2: processing fetch command
18:56:26.557 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.558 [info] UploadPackV2: collected 8 objects, generating pack
18:56:26.558 [info] UploadPackV2: pack generated, 482 bytes
18:56:26.558 [info] UploadPackV2: fetch response 504 bytes
18:56:26.562 [info] UploadPackV2: processing fetch command
18:56:26.562 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.563 [info] UploadPackV2: collected 16 objects, generating pack
18:56:26.564 [info] UploadPackV2: pack generated, 962 bytes
18:56:26.564 [info] UploadPackV2: fetch response 984 bytes
18:56:26.570 [info] UploadPackV2: processing fetch command
18:56:26.570 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.570 [info] UploadPackV2: collected 12 objects, generating pack
18:56:26.571 [info] UploadPackV2: pack generated, 723 bytes
18:56:26.571 [info] UploadPackV2: fetch response 745 bytes
18:56:26.576 [info] UploadPackV2: processing fetch command
18:56:26.576 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.577 [info] UploadPackV2: collected 23 objects, generating pack
18:56:26.578 [info] UploadPackV2: pack generated, 1383 bytes
18:56:26.579 [info] UploadPackV2: fetch response 1405 bytes
18:56:26.583 [info] UploadPackV2: processing fetch command
18:56:26.583 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.585 [info] UploadPackV2: collected 27 objects, generating pack
18:56:26.586 [info] UploadPackV2: pack generated, 1676 bytes
18:56:26.586 [info] UploadPackV2: fetch response 1698 bytes
18:56:26.592 [info] UploadPackV2: processing fetch command
18:56:26.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.594 [info] UploadPackV2: collected 24 objects, generating pack
18:56:26.594 [info] UploadPackV2: pack generated, 1443 bytes
18:56:26.595 [info] UploadPackV2: fetch response 1465 bytes
18:56:26.601 [info] UploadPackV2: processing fetch command
18:56:26.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.602 [info] UploadPackV2: collected 4 objects, generating pack
18:56:26.603 [info] UploadPackV2: pack generated, 241 bytes
18:56:26.603 [info] UploadPackV2: fetch response 263 bytes
18:56:26.607 [info] UploadPackV2: processing fetch command
18:56:26.607 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.609 [info] UploadPackV2: collected 39 objects, generating pack
18:56:26.610 [info] UploadPackV2: pack generated, 2336 bytes
18:56:26.610 [info] UploadPackV2: fetch response 2358 bytes
18:56:26.619 [info] UploadPackV2: processing fetch command
18:56:26.619 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.620 [info] UploadPackV2: collected 32 objects, generating pack
18:56:26.621 [info] UploadPackV2: pack generated, 1893 bytes
18:56:26.621 [info] UploadPackV2: fetch response 1915 bytes
18:56:26.629 [info] UploadPackV2: processing fetch command
18:56:26.629 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.630 [info] UploadPackV2: collected 4 objects, generating pack
18:56:26.630 [info] UploadPackV2: pack generated, 241 bytes
18:56:26.630 [info] UploadPackV2: fetch response 263 bytes
18:56:26.634 [info] UploadPackV2: processing fetch command
18:56:26.634 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.636 [info] UploadPackV2: collected 12 objects, generating pack
18:56:26.637 [info] UploadPackV2: pack generated, 723 bytes
18:56:26.637 [info] UploadPackV2: fetch response 745 bytes
18:56:26.641 [info] UploadPackV2: processing fetch command
18:56:26.641 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.646 [info] UploadPackV2: collected 43 objects, generating pack
18:56:26.647 [info] UploadPackV2: pack generated, 2575 bytes
18:56:26.647 [info] UploadPackV2: fetch response 2597 bytes
18:56:26.655 [info] UploadPackV2: processing fetch command
18:56:26.655 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.656 [info] UploadPackV2: collected 16 objects, generating pack
18:56:26.657 [info] UploadPackV2: pack generated, 962 bytes
18:56:26.657 [info] UploadPackV2: fetch response 984 bytes
18:56:26.662 [info] UploadPackV2: processing fetch command
18:56:26.662 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.664 [info] UploadPackV2: collected 27 objects, generating pack
18:56:26.665 [info] UploadPackV2: pack generated, 1676 bytes
18:56:26.665 [info] UploadPackV2: fetch response 1698 bytes
18:56:26.671 [info] UploadPackV2: processing fetch command
18:56:26.671 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.673 [info] UploadPackV2: collected 16 objects, generating pack
18:56:26.674 [info] UploadPackV2: pack generated, 931 bytes
18:56:26.674 [info] UploadPackV2: fetch response 953 bytes
18:56:26.681 [info] UploadPackV2: processing fetch command
18:56:26.681 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:26.683 [info] UploadPackV2: collected 43 objects, generating pack
18:56:26.684 [info] UploadPackV2: pack generated, 2589 bytes
18:56:26.684 [info] UploadPackV2: fetch response 2611 bytes
............................
18:56:31.099 [info] The function passed as a handler with ID "graph-query-test-10659" 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
.
18:56:31.102 [info] The function passed as a handler with ID "graph-query-test-10723" 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
........
18:56:31.116 [info] The function passed as a handler with ID "graph-query-test-10819" 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
.
18:56:31.161 [info] UploadPackV2: processing ls-refs command
.
18:56:31.257 [info] UploadPackV2: processing ls-refs command
18:56:31.259 [info] UploadPackV2: processing fetch command
18:56:31.259 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.283 [info] UploadPackV2: collected 600 objects, generating pack
18:56:31.301 [info] UploadPackV2: pack generated, 45197 bytes
18:56:31.302 [info] UploadPackV2: fetch response 45219 bytes
.
18:56:31.345 [info] UploadPackV2: processing fetch command
18:56:31.345 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.345 [info] UploadPackV2: collected 0 objects, generating pack
18:56:31.345 [info] UploadPackV2: pack generated, 32 bytes
18:56:31.345 [info] UploadPackV2: fetch response 54 bytes
.
18:56:31.546 [info] UploadPackV2: processing fetch command
18:56:31.546 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.546 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.546 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.546 [info] UploadPackV2: fetch response 205 bytes
18:56:31.547 [info] UploadPackV2: processing fetch command
18:56:31.547 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.547 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.547 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.547 [info] UploadPackV2: fetch response 205 bytes
18:56:31.547 [info] UploadPackV2: processing fetch command
18:56:31.547 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.547 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.547 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.547 [info] UploadPackV2: fetch response 205 bytes
18:56:31.548 [info] UploadPackV2: processing fetch command
18:56:31.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.548 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.548 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.548 [info] UploadPackV2: fetch response 205 bytes
18:56:31.548 [info] UploadPackV2: processing fetch command
18:56:31.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.548 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.549 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.549 [info] UploadPackV2: fetch response 205 bytes
18:56:31.549 [info] UploadPackV2: processing fetch command
18:56:31.549 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.549 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.549 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.549 [info] UploadPackV2: fetch response 205 bytes
18:56:31.549 [info] UploadPackV2: processing fetch command
18:56:31.549 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.549 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.549 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.549 [info] UploadPackV2: fetch response 205 bytes
18:56:31.550 [info] UploadPackV2: processing fetch command
18:56:31.550 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.550 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.550 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.550 [info] UploadPackV2: fetch response 205 bytes
18:56:31.550 [info] UploadPackV2: processing fetch command
18:56:31.550 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.550 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.550 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.551 [info] UploadPackV2: fetch response 205 bytes
18:56:31.551 [info] UploadPackV2: processing fetch command
18:56:31.551 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.551 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.551 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.551 [info] UploadPackV2: fetch response 205 bytes
18:56:31.551 [info] UploadPackV2: processing fetch command
18:56:31.551 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.551 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.551 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.551 [info] UploadPackV2: fetch response 205 bytes
18:56:31.551 [info] UploadPackV2: processing fetch command
18:56:31.551 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.552 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.552 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.552 [info] UploadPackV2: fetch response 205 bytes
18:56:31.552 [info] UploadPackV2: processing fetch command
18:56:31.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.552 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.552 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.552 [info] UploadPackV2: fetch response 205 bytes
18:56:31.552 [info] UploadPackV2: processing fetch command
18:56:31.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.552 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.552 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.552 [info] UploadPackV2: fetch response 205 bytes
18:56:31.552 [info] UploadPackV2: processing fetch command
18:56:31.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.553 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.553 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.553 [info] UploadPackV2: fetch response 205 bytes
18:56:31.553 [info] UploadPackV2: processing fetch command
18:56:31.553 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.554 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.554 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.558 [info] UploadPackV2: fetch response 205 bytes
18:56:31.558 [info] UploadPackV2: processing fetch command
18:56:31.558 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.559 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.559 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.559 [info] UploadPackV2: fetch response 205 bytes
18:56:31.559 [info] UploadPackV2: processing fetch command
18:56:31.559 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.560 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.560 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.560 [info] UploadPackV2: fetch response 205 bytes
18:56:31.560 [info] UploadPackV2: processing fetch command
18:56:31.560 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.560 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.561 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.561 [info] UploadPackV2: fetch response 205 bytes
18:56:31.561 [info] UploadPackV2: processing fetch command
18:56:31.561 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.561 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.561 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.561 [info] UploadPackV2: fetch response 205 bytes
18:56:31.561 [info] UploadPackV2: processing fetch command
18:56:31.562 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.562 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.562 [info] UploadPackV2: pack generated, 183 bytes
18:56:31.562 [info] UploadPackV2: fetch response 205 bytes
.
18:56:31.633 [info] UploadPackV2: processing ls-refs command
18:56:31.635 [info] UploadPackV2: processing fetch command
18:56:31.635 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.642 [info] UploadPackV2: collected 240 objects, generating pack
18:56:31.646 [info] UploadPackV2: pack generated, 16258 bytes
18:56:31.646 [info] UploadPackV2: fetch response 16280 bytes
.
18:56:31.721 [info] UploadPackV2: processing ls-refs command
.
18:56:31.901 [info] UploadPackV2: processing ls-refs command
18:56:31.903 [info] UploadPackV2: processing fetch command
18:56:31.903 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:56:31.903 [info] UploadPackV2: collected 3 objects, generating pack
18:56:31.903 [info] UploadPackV2: pack generated, 231 bytes
18:56:31.903 [info] UploadPackV2: fetch response 327 bytes
.***********
18:56:31.981 [info] UploadPackV2: processing ls-refs command
18:56:31.983 [info] UploadPackV2: processing fetch command
18:56:31.984 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:31.984 [info] UploadPackV2: collected 6 objects, generating pack
18:56:31.984 [info] UploadPackV2: pack generated, 365 bytes
18:56:31.984 [info] UploadPackV2: fetch response 387 bytes
18:56:32.005 [info] UploadPackV2: processing fetch command
18:56:32.005 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
18:56:32.005 [info] UploadPackV2: fetch response 122 bytes
.
18:56:32.077 [info] UploadPackV2: processing ls-refs command
18:56:32.078 [info] UploadPackV2: processing fetch command
18:56:32.078 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:56:32.078 [info] UploadPackV2: collected 3 objects, generating pack
18:56:32.079 [info] UploadPackV2: pack generated, 216 bytes
18:56:32.079 [info] UploadPackV2: fetch response 346 bytes
.
18:56:32.086 [info] UploadPackV2: processing fetch command
18:56:32.086 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:32.086 [info] UploadPackV2: collected 3 objects, generating pack
18:56:32.087 [info] UploadPackV2: pack generated, 183 bytes
18:56:32.087 [info] UploadPackV2: fetch response 205 bytes
.
18:56:32.161 [info] UploadPackV2: processing ls-refs command
18:56:32.163 [info] UploadPackV2: processing fetch command
18:56:32.163 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:32.164 [info] UploadPackV2: collected 6 objects, generating pack
18:56:32.164 [info] UploadPackV2: pack generated, 365 bytes
18:56:32.164 [info] UploadPackV2: fetch response 387 bytes
.
18:56:47.309 [info] UploadPackV2: processing ls-refs command
18:56:47.311 [info] UploadPackV2: processing fetch command
18:56:47.311 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:47.312 [info] UploadPackV2: collected 6 objects, generating pack
18:56:47.312 [info] UploadPackV2: pack generated, 365 bytes
18:56:47.312 [info] UploadPackV2: fetch response 387 bytes
18:56:49.737 [info] UploadPackV2: processing ls-refs command
.
18:56:49.797 [info] UploadPackV2: processing ls-refs command
18:56:49.799 [info] UploadPackV2: processing fetch command
18:56:49.799 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:49.799 [info] UploadPackV2: collected 6 objects, generating pack
18:56:49.799 [info] UploadPackV2: pack generated, 366 bytes
18:56:49.799 [info] UploadPackV2: fetch response 388 bytes
18:56:49.893 [info] UploadPackV2: processing ls-refs command
18:56:49.894 [info] UploadPackV2: processing fetch command
18:56:49.894 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
18:56:49.894 [info] UploadPackV2: fetch response 32 bytes
18:56:49.895 [info] UploadPackV2: processing fetch command
18:56:49.895 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:49.895 [info] UploadPackV2: collected 3 objects, generating pack
18:56:49.895 [info] UploadPackV2: pack generated, 183 bytes
18:56:49.895 [info] UploadPackV2: fetch response 205 bytes
.
18:56:49.973 [info] UploadPackV2: processing ls-refs command
18:56:49.975 [info] UploadPackV2: processing fetch command
18:56:49.975 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:49.978 [info] UploadPackV2: collected 90 objects, generating pack
18:56:49.979 [info] UploadPackV2: pack generated, 5649 bytes
18:56:49.979 [info] UploadPackV2: fetch response 5671 bytes
18:56:50.281 [info] UploadPackV2: processing ls-refs command
.
18:56:50.341 [info] UploadPackV2: processing ls-refs command
18:56:50.343 [info] UploadPackV2: processing fetch command
18:56:50.343 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:50.344 [info] UploadPackV2: collected 9 objects, generating pack
18:56:50.344 [info] UploadPackV2: pack generated, 547 bytes
18:56:50.344 [info] UploadPackV2: fetch response 569 bytes
18:56:50.417 [info] UploadPackV2: processing ls-refs command
.
18:56:50.481 [info] UploadPackV2: processing ls-refs command
18:56:50.481 [info] UploadPackV2: processing ls-refs command
18:56:50.483 [info] UploadPackV2: processing fetch command
18:56:50.483 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:50.483 [info] UploadPackV2: processing fetch command
18:56:50.483 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:56:50.484 [info] UploadPackV2: collected 6 objects, generating pack
18:56:50.484 [info] UploadPackV2: pack generated, 365 bytes
18:56:50.484 [info] UploadPackV2: fetch response 387 bytes
18:56:50.484 [info] UploadPackV2: collected 6 objects, generating pack
18:56:50.485 [info] UploadPackV2: pack generated, 365 bytes
18:56:50.485 [info] UploadPackV2: fetch response 387 bytes
............
18:57:05.665 [info] UploadPackV2: processing ls-refs command
18:57:05.667 [info] UploadPackV2: processing fetch command
18:57:05.667 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:05.667 [info] UploadPackV2: collected 3 objects, generating pack
18:57:05.668 [info] UploadPackV2: pack generated, 196 bytes
18:57:05.668 [info] UploadPackV2: fetch response 218 bytes
.
18:57:05.745 [info] UploadPackV2: processing ls-refs command
18:57:05.747 [info] UploadPackV2: processing fetch command
18:57:05.747 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:05.748 [info] UploadPackV2: collected 3 objects, generating pack
18:57:05.748 [info] UploadPackV2: pack generated, 185 bytes
18:57:05.748 [info] UploadPackV2: fetch response 207 bytes
.
18:57:05.769 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303412510" 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
18:57:05.769 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303412478" 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
.
18:57:05.770 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303408959" 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
.
18:57:05.770 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303412446" 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
18:57:05.771 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303410429" 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
18:57:05.771 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303410397" 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
.
18:57:05.772 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303410365" 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
18:57:05.772 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303410333" 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
.
18:57:05.773 [info] The function passed as a handler with ID "telemetry-test-14562" 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
.
18:57:05.773 [info] UploadPackV2: processing fetch command
.
18:57:05.773 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:05.774 [info] UploadPackV2: collected 3 objects, generating pack
18:57:05.774 [info] UploadPackV2: pack generated, 183 bytes
18:57:05.774 [info] UploadPackV2: fetch response 205 bytes
18:57:05.774 [info] The function passed as a handler with ID "telemetry-test-14594" 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
18:57:05.774 [info] UploadPackV2: processing fetch command
18:57:05.774 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:05.775 [info] UploadPackV2: collected 3 objects, generating pack
18:57:05.775 [info] UploadPackV2: pack generated, 186 bytes
18:57:05.775 [info] UploadPackV2: fetch response 208 bytes
18:57:05.778 [info] The function passed as a handler with ID "telemetry-test-13188" 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
.
18:57:20.847 [info] The function passed as a handler with ID "telemetry-test-13220" 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
18:57:20.848 [info] UploadPackV2: processing fetch command
18:57:20.848 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:57:20.848 [info] UploadPackV2: collected 2 objects, generating pack
.
18:57:20.849 [info] UploadPackV2: pack generated, 169 bytes
18:57:20.849 [info] UploadPackV2: fetch response 191 bytes
18:57:20.901 [info] UploadPackV2: processing ls-refs command
18:57:20.903 [info] UploadPackV2: processing fetch command
18:57:20.903 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:20.903 [info] UploadPackV2: collected 3 objects, generating pack
18:57:20.903 [info] UploadPackV2: pack generated, 216 bytes
18:57:20.903 [info] UploadPackV2: fetch response 312 bytes
.
18:57:20.981 [info] UploadPackV2: processing ls-refs command
.
18:57:21.037 [info] UploadPackV2: processing ls-refs command
18:57:21.039 [info] UploadPackV2: processing fetch command
18:57:21.039 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:21.040 [info] UploadPackV2: collected 9 objects, generating pack
18:57:21.040 [info] UploadPackV2: pack generated, 549 bytes
18:57:21.040 [info] UploadPackV2: fetch response 571 bytes
18:57:21.060 [info] UploadPackV2: processing fetch command
18:57:21.060 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
18:57:21.061 [info] UploadPackV2: fetch response 171 bytes
.
18:57:21.121 [info] UploadPackV2: processing ls-refs command
18:57:21.123 [info] UploadPackV2: processing fetch command
18:57:21.123 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:21.123 [info] UploadPackV2: collected 3 objects, generating pack
18:57:21.123 [info] UploadPackV2: pack generated, 216 bytes
18:57:21.123 [info] UploadPackV2: fetch response 312 bytes
18:57:21.189 [info] UploadPackV2: processing ls-refs command
18:57:21.190 [info] UploadPackV2: processing fetch command
18:57:21.190 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:21.191 [info] UploadPackV2: collected 12 objects, generating pack
18:57:21.191 [info] UploadPackV2: pack generated, 768 bytes
18:57:21.191 [info] UploadPackV2: fetch response 1002 bytes
.
18:57:21.253 [info] UploadPackV2: processing ls-refs command
18:57:21.257 [info] UploadPackV2: processing fetch command
18:57:21.257 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
18:57:21.258 [info] UploadPackV2: collected 6 objects, generating pack
18:57:21.258 [info] UploadPackV2: pack generated, 513 bytes
18:57:21.258 [info] UploadPackV2: fetch response 535 bytes
.
18:57:21.341 [info] UploadPackV2: processing ls-refs command
18:57:21.343 [info] UploadPackV2: processing fetch command
18:57:21.343 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:21.344 [info] UploadPackV2: collected 3 objects, generating pack
18:57:21.344 [info] UploadPackV2: pack generated, 218 bytes
18:57:21.344 [info] UploadPackV2: fetch response 314 bytes
..
18:57:21.421 [info] UploadPackV2: processing ls-refs command
.
18:57:21.477 [info] UploadPackV2: processing ls-refs command
18:57:21.480 [info] UploadPackV2: processing fetch command
18:57:21.480 [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
18:57:21.481 [info] UploadPackV2: collected 6 objects, generating pack
18:57:21.481 [info] UploadPackV2: pack generated, 513 bytes
18:57:21.481 [info] UploadPackV2: fetch response 535 bytes
..
18:57:21.561 [info] UploadPackV2: processing ls-refs command
18:57:21.565 [info] UploadPackV2: processing fetch command
18:57:21.565 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
18:57:21.566 [info] UploadPackV2: collected 3 objects, generating pack
18:57:21.566 [info] UploadPackV2: pack generated, 381 bytes
18:57:21.566 [info] UploadPackV2: fetch response 403 bytes
.
18:57:21.641 [info] UploadPackV2: processing ls-refs command
18:57:21.644 [info] UploadPackV2: processing fetch command
18:57:21.644 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
18:57:21.645 [info] UploadPackV2: collected 5 objects, generating pack
18:57:21.645 [info] UploadPackV2: pack generated, 319 bytes
18:57:21.645 [info] UploadPackV2: fetch response 341 bytes
.
18:57:21.717 [info] UploadPackV2: processing ls-refs command
18:57:21.721 [info] UploadPackV2: processing fetch command
18:57:21.721 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
18:57:21.722 [info] UploadPackV2: collected 3 objects, generating pack
18:57:21.722 [info] UploadPackV2: pack generated, 381 bytes
18:57:21.722 [info] UploadPackV2: fetch response 403 bytes
.
18:57:21.801 [info] UploadPackV2: processing ls-refs command
.
18:57:21.857 [info] UploadPackV2: processing ls-refs command
.
18:57:21.913 [info] UploadPackV2: processing ls-refs command
18:57:21.915 [info] UploadPackV2: processing fetch command
18:57:21.915 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:21.917 [info] UploadPackV2: collected 9 objects, generating pack
18:57:21.917 [info] UploadPackV2: pack generated, 585 bytes
18:57:21.917 [info] UploadPackV2: fetch response 681 bytes
.
18:57:21.997 [info] UploadPackV2: processing ls-refs command
18:57:21.999 [info] UploadPackV2: processing fetch command
18:57:21.999 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.001 [info] UploadPackV2: collected 15 objects, generating pack
18:57:22.001 [info] UploadPackV2: pack generated, 952 bytes
18:57:22.001 [info] UploadPackV2: fetch response 974 bytes
.
18:57:22.081 [info] UploadPackV2: processing ls-refs command
18:57:22.083 [info] UploadPackV2: processing fetch command
18:57:22.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.083 [info] UploadPackV2: collected 3 objects, generating pack
18:57:22.083 [info] UploadPackV2: pack generated, 196 bytes
18:57:22.083 [info] UploadPackV2: fetch response 218 bytes
.
18:57:22.161 [info] UploadPackV2: processing ls-refs command
18:57:22.163 [info] UploadPackV2: processing fetch command
18:57:22.163 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.163 [info] UploadPackV2: collected 3 objects, generating pack
18:57:22.163 [info] UploadPackV2: pack generated, 185 bytes
18:57:22.163 [info] UploadPackV2: fetch response 207 bytes
18:57:22.225 [info] UploadPackV2: processing ls-refs command
.
18:57:22.297 [info] UploadPackV2: processing ls-refs command
18:57:22.298 [info] UploadPackV2: processing fetch command
18:57:22.298 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
18:57:22.298 [info] UploadPackV2: collected 3 objects, generating pack
18:57:22.298 [info] UploadPackV2: pack generated, 200 bytes
18:57:22.299 [info] UploadPackV2: fetch response 256 bytes
..
18:57:22.539 [info] UploadPackV2: processing ls-refs command
18:57:22.542 [info] UploadPackV2: processing fetch command
18:57:22.542 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.544 [info] UploadPackV2: collected 15 objects, generating pack
18:57:22.544 [info] UploadPackV2: pack generated, 919 bytes
18:57:22.544 [info] UploadPackV2: fetch response 941 bytes
.
18:57:22.652 [info] UploadPackV2: processing fetch command
18:57:22.652 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.652 [info] UploadPackV2: collected 3 objects, generating pack
18:57:22.652 [info] UploadPackV2: pack generated, 183 bytes
18:57:22.653 [info] UploadPackV2: fetch response 205 bytes
.
18:57:22.685 [info] UploadPackV2: processing ls-refs command
18:57:22.688 [info] UploadPackV2: processing fetch command
18:57:22.688 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.693 [info] UploadPackV2: collected 180 objects, generating pack
18:57:22.696 [info] UploadPackV2: pack generated, 11106 bytes
18:57:22.696 [info] UploadPackV2: fetch response 11128 bytes
.
18:57:22.740 [info] UploadPackV2: processing ls-refs command
18:57:22.743 [info] UploadPackV2: processing fetch command
18:57:22.744 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.744 [info] UploadPackV2: collected 3 objects, generating pack
18:57:22.744 [info] UploadPackV2: pack generated, 183 bytes
18:57:22.745 [info] UploadPackV2: fetch response 205 bytes
.
18:57:22.785 [info] UploadPackV2: processing ls-refs command
18:57:22.788 [info] UploadPackV2: processing fetch command
18:57:22.788 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.790 [info] UploadPackV2: collected 9 objects, generating pack
18:57:22.790 [info] UploadPackV2: pack generated, 549 bytes
18:57:22.790 [info] UploadPackV2: fetch response 571 bytes
18:57:22.822 [info] UploadPackV2: processing ls-refs command
.
18:57:22.850 [info] UploadPackV2: processing ls-refs command
18:57:22.853 [info] UploadPackV2: processing fetch command
18:57:22.853 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:22.854 [info] UploadPackV2: collected 6 objects, generating pack
18:57:22.854 [info] UploadPackV2: pack generated, 366 bytes
18:57:22.854 [info] UploadPackV2: fetch response 388 bytes
18:57:22.886 [info] UploadPackV2: processing ls-refs command
...
18:57:38.041 [info] UploadPackV2: processing ls-refs command
18:57:38.043 [info] UploadPackV2: processing fetch command
18:57:38.043 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:38.044 [info] UploadPackV2: collected 3 objects, generating pack
18:57:38.044 [info] UploadPackV2: pack generated, 183 bytes
18:57:38.044 [info] UploadPackV2: fetch response 205 bytes
.
18:57:53.177 [info] UploadPackV2: processing ls-refs command
18:57:53.179 [info] UploadPackV2: processing fetch command
18:57:53.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:57:53.180 [info] UploadPackV2: collected 6 objects, generating pack
18:57:53.180 [info] UploadPackV2: pack generated, 365 bytes
18:57:53.180 [info] UploadPackV2: fetch response 387 bytes
....
18:58:38.497 [info] UploadPackV2: processing ls-refs command
18:58:38.499 [info] UploadPackV2: processing fetch command
18:58:38.499 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:58:38.499 [info] UploadPackV2: collected 3 objects, generating pack
18:58:38.500 [info] UploadPackV2: pack generated, 201 bytes
18:58:38.500 [info] UploadPackV2: fetch response 223 bytes
..
18:59:08.729 [info] UploadPackV2: processing ls-refs command
18:59:08.731 [info] UploadPackV2: processing fetch command
18:59:08.731 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:59:08.732 [info] UploadPackV2: collected 3 objects, generating pack
18:59:08.732 [info] UploadPackV2: pack generated, 183 bytes
18:59:08.732 [info] UploadPackV2: fetch response 205 bytes
.
18:59:08.853 [info] UploadPackV2: processing ls-refs command
18:59:08.855 [info] UploadPackV2: processing fetch command
18:59:08.855 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
18:59:08.855 [info] UploadPackV2: collected 6 objects, generating pack
18:59:08.855 [info] UploadPackV2: pack generated, 365 bytes
18:59:08.856 [info] UploadPackV2: fetch response 387 bytes
........................
Finished in 207.6 seconds (18.4s async, 189.2s sync)
Result: 962 passed (2 properties, 960 tests), 11 skipped, 51 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info