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: Jul 01, 2026 at 19:39 UTC
Completed: Jul 01, 2026 at 19:43 UTC
Duration: 3m 34s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 5 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 723445, max_cases: 8
Excluding tags: [:s3]
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "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
...................................................................................................................................................................
19:39:40.224 [info] The function passed as a handler with ID #Reference<0.3794010069.2458124289.22678> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
............................
19:39:40.805 [info] The function passed as a handler with ID #Reference<0.3794010069.2458124291.24513> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: 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)
.............................................................................................
19:39:42.672 [info] UploadPackV2: processing fetch command
19:39:42.672 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.........
19:39:42.687 [info] UploadPackV2: reused pack 12234 bytes, 160 objects
19:39:42.687 [info] UploadPackV2: fetch response 12256 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
.............................
19:39:43.535 [info] UploadPackV2: processing fetch command
19:39:43.535 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.539 [info] UploadPackV2: collected 8 objects, generating pack
19:39:43.539 [info] UploadPackV2: pack generated, 482 bytes
19:39:43.539 [info] UploadPackV2: fetch response 504 bytes
.
19:39:43.603 [info] UploadPackV2: processing fetch command
19:39:43.603 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.604 [info] UploadPackV2: collected 27 objects, generating pack
19:39:43.605 [info] UploadPackV2: pack generated, 1676 bytes
19:39:43.605 [info] UploadPackV2: fetch response 1698 bytes
19:39:43.643 [info] UploadPackV2: processing fetch command
19:39:43.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.650 [info] UploadPackV2: collected 4 objects, generating pack
19:39:43.651 [info] UploadPackV2: pack generated, 241 bytes
19:39:43.651 [info] UploadPackV2: fetch response 263 bytes
19:39:43.663 [info] UploadPackV2: processing fetch command
19:39:43.663 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.671 [info] UploadPackV2: collected 24 objects, generating pack
19:39:43.672 [info] UploadPackV2: pack generated, 1443 bytes
19:39:43.673 [info] UploadPackV2: fetch response 1465 bytes
19:39:43.692 [info] UploadPackV2: processing fetch command
19:39:43.692 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.698 [info] UploadPackV2: collected 23 objects, generating pack
19:39:43.699 [info] UploadPackV2: pack generated, 1437 bytes
19:39:43.699 [info] UploadPackV2: fetch response 1459 bytes
19:39:43.707 [info] UploadPackV2: processing fetch command
19:39:43.707 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.720 [info] UploadPackV2: collected 24 objects, generating pack
19:39:43.724 [info] UploadPackV2: pack generated, 1443 bytes
19:39:43.724 [info] UploadPackV2: fetch response 1465 bytes
19:39:43.728 [info] UploadPackV2: processing fetch command
19:39:43.729 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.732 [info] UploadPackV2: collected 24 objects, generating pack
19:39:43.732 [info] UploadPackV2: pack generated, 1443 bytes
19:39:43.733 [info] UploadPackV2: fetch response 1465 bytes
19:39:43.748 [info] UploadPackV2: processing fetch command
19:39:43.748 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.749 [info] UploadPackV2: collected 20 objects, generating pack
19:39:43.750 [info] UploadPackV2: pack generated, 1203 bytes
19:39:43.750 [info] UploadPackV2: fetch response 1225 bytes
19:39:43.755 [info] UploadPackV2: processing fetch command
19:39:43.756 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.757 [info] UploadPackV2: collected 35 objects, generating pack
19:39:43.758 [info] UploadPackV2: pack generated, 2105 bytes
19:39:43.758 [info] UploadPackV2: fetch response 2127 bytes
19:39:43.765 [info] UploadPackV2: processing fetch command
19:39:43.765 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.766 [info] UploadPackV2: collected 23 objects, generating pack
19:39:43.767 [info] UploadPackV2: pack generated, 1437 bytes
19:39:43.767 [info] UploadPackV2: fetch response 1459 bytes
19:39:43.771 [info] UploadPackV2: processing fetch command
19:39:43.771 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.771 [info] UploadPackV2: collected 12 objects, generating pack
19:39:43.772 [info] UploadPackV2: pack generated, 723 bytes
19:39:43.772 [info] UploadPackV2: fetch response 745 bytes
19:39:43.774 [info] UploadPackV2: processing fetch command
19:39:43.774 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.775 [info] UploadPackV2: collected 11 objects, generating pack
19:39:43.776 [info] UploadPackV2: pack generated, 717 bytes
19:39:43.776 [info] UploadPackV2: fetch response 739 bytes
19:39:43.798 [info] UploadPackV2: processing fetch command
19:39:43.798 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.799 [info] UploadPackV2: collected 32 objects, generating pack
19:39:43.801 [info] UploadPackV2: pack generated, 1893 bytes
19:39:43.805 [info] UploadPackV2: fetch response 1915 bytes
19:39:43.816 [info] UploadPackV2: processing fetch command
19:39:43.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.819 [info] UploadPackV2: collected 19 objects, generating pack
19:39:43.904 [info] UploadPackV2: pack generated, 1194 bytes
19:39:43.905 [info] UploadPackV2: fetch response 1216 bytes
19:39:43.913 [info] UploadPackV2: processing fetch command
19:39:43.917 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.919 [info] UploadPackV2: collected 19 objects, generating pack
19:39:43.921 [info] UploadPackV2: pack generated, 1165 bytes
19:39:43.921 [info] UploadPackV2: fetch response 1187 bytes
19:39:43.934 [info] UploadPackV2: processing fetch command
19:39:43.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.935 [info] UploadPackV2: collected 12 objects, generating pack
19:39:43.936 [info] UploadPackV2: pack generated, 723 bytes
19:39:43.936 [info] UploadPackV2: fetch response 745 bytes
19:39:43.939 [info] UploadPackV2: processing fetch command
19:39:43.939 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.940 [info] UploadPackV2: collected 19 objects, generating pack
19:39:43.940 [info] UploadPackV2: pack generated, 1196 bytes
19:39:43.941 [info] UploadPackV2: fetch response 1218 bytes
19:39:43.962 [info] UploadPackV2: processing fetch command
19:39:43.963 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.963 [info] UploadPackV2: collected 7 objects, generating pack
19:39:43.963 [info] UploadPackV2: pack generated, 475 bytes
19:39:43.964 [info] UploadPackV2: fetch response 497 bytes
19:39:43.967 [info] UploadPackV2: processing fetch command
19:39:43.967 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.968 [info] UploadPackV2: collected 7 objects, generating pack
19:39:43.968 [info] UploadPackV2: pack generated, 475 bytes
19:39:43.968 [info] UploadPackV2: fetch response 497 bytes
19:39:43.976 [info] UploadPackV2: processing fetch command
19:39:43.976 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:43.981 [info] UploadPackV2: collected 58 objects, generating pack
19:39:43.983 [info] UploadPackV2: pack generated, 3538 bytes
19:39:43.983 [info] UploadPackV2: fetch response 3560 bytes
19:39:44.015 [info] UploadPackV2: processing fetch command
19:39:44.015 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.031 [info] UploadPackV2: collected 42 objects, generating pack
19:39:44.032 [info] UploadPackV2: pack generated, 2582 bytes
19:39:44.032 [info] UploadPackV2: fetch response 2604 bytes
19:39:44.044 [info] UploadPackV2: processing fetch command
19:39:44.044 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.046 [info] UploadPackV2: collected 28 objects, generating pack
19:39:44.047 [info] UploadPackV2: pack generated, 1651 bytes
19:39:44.047 [info] UploadPackV2: fetch response 1673 bytes
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
19:39:44.052 [info] UploadPackV2: processing fetch command
19:39:44.052 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.053 [info] UploadPackV2: collected 19 objects, generating pack
19:39:44.054 [info] UploadPackV2: pack generated, 1196 bytes
19:39:44.054 [info] UploadPackV2: fetch response 1218 bytes
19:39:44.059 [info] UploadPackV2: processing fetch command
19:39:44.059 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.061 [info] UploadPackV2: collected 23 objects, generating pack
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
19:39:44.061 [info] UploadPackV2: pack generated, 1435 bytes
19:39:44.062 [info] UploadPackV2: fetch response 1457 bytes
19:39:44.069 [info] UploadPackV2: processing fetch command
19:39:44.069 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.078 [info] UploadPackV2: collected 47 objects, generating pack
19:39:44.080 [info] UploadPackV2: pack generated, 2816 bytes
19:39:44.080 [info] UploadPackV2: fetch response 2838 bytes
19:39:44.102 [info] UploadPackV2: processing fetch command
19:39:44.102 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.109 [info] UploadPackV2: collected 27 objects, generating pack
19:39:44.110 [info] UploadPackV2: pack generated, 1615 bytes
19:39:44.110 [info] UploadPackV2: fetch response 1637 bytes
.
19:39:44.133 [info] UploadPackV2: processing fetch command
19:39:44.134 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.144 [info] UploadPackV2: collected 23 objects, generating pack
19:39:44.144 [info] UploadPackV2: pack generated, 1381 bytes
19:39:44.145 [info] UploadPackV2: fetch response 1403 bytes
19:39:44.177 [info] UploadPackV2: processing fetch command
19:39:44.177 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.260 [info] UploadPackV2: collected 19 objects, generating pack
19:39:44.268 [info] UploadPackV2: pack generated, 1196 bytes
19:39:44.269 [info] UploadPackV2: fetch response 1218 bytes
19:39:44.340 [info] UploadPackV2: processing fetch command
19:39:44.340 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.361 [info] UploadPackV2: collected 4 objects, generating pack
19:39:44.362 [info] UploadPackV2: pack generated, 241 bytes
19:39:44.364 [info] UploadPackV2: fetch response 263 bytes
19:39:44.470 [info] UploadPackV2: processing fetch command
19:39:44.470 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.502 [info] UploadPackV2: collected 24 objects, generating pack
19:39:44.506 [info] UploadPackV2: pack generated, 1412 bytes
19:39:44.507 [info] UploadPackV2: fetch response 1434 bytes
19:39:44.548 [info] UploadPackV2: processing fetch command
19:39:44.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.563 [info] UploadPackV2: collected 20 objects, generating pack
19:39:44.565 [info] UploadPackV2: pack generated, 1203 bytes
19:39:44.565 [info] UploadPackV2: fetch response 1225 bytes
19:39:44.586 [info] UploadPackV2: processing fetch command
19:39:44.586 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.596 [info] UploadPackV2: collected 7 objects, generating pack
19:39:44.596 [info] UploadPackV2: pack generated, 475 bytes
19:39:44.597 [info] UploadPackV2: fetch response 497 bytes
.....
19:39:44.672 [info] UploadPackV2: processing fetch command
19:39:44.673 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.702 [info] UploadPackV2: collected 19 objects, generating pack
19:39:44.704 [info] UploadPackV2: pack generated, 1166 bytes
19:39:44.705 [info] UploadPackV2: fetch response 1188 bytes
19:39:44.726 [info] UploadPackV2: processing fetch command
19:39:44.726 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.735 [info] UploadPackV2: collected 31 objects, generating pack
19:39:44.736 [info] UploadPackV2: pack generated, 1866 bytes
19:39:44.736 [info] UploadPackV2: fetch response 1888 bytes
19:39:44.743 [info] UploadPackV2: processing fetch command
19:39:44.743 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.743 [info] UploadPackV2: collected 11 objects, generating pack
19:39:44.744 [info] UploadPackV2: pack generated, 714 bytes
19:39:44.744 [info] UploadPackV2: fetch response 736 bytes
19:39:44.751 [info] UploadPackV2: processing fetch command
19:39:44.751 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.754 [info] UploadPackV2: collected 43 objects, generating pack
19:39:44.756 [info] UploadPackV2: pack generated, 2607 bytes
19:39:44.756 [info] UploadPackV2: fetch response 2629 bytes
19:39:44.769 [info] UploadPackV2: processing fetch command
19:39:44.769 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.778 [info] UploadPackV2: collected 35 objects, generating pack
..........................................................................
19:39:44.779 [info] UploadPackV2: pack generated, 2105 bytes
19:39:46.297 [notice] Handler :default switched from :sync to :drop mode
19:39:44.779 [info] UploadPackV2: fetch response 2127 bytes
19:39:44.792 [info] UploadPackV2: processing fetch command
19:39:44.793 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.797 [info] UploadPackV2: collected 19 objects, generating pack
19:39:44.798 [info] UploadPackV2: pack generated, 1167 bytes
19:39:44.798 [info] UploadPackV2: fetch response 1189 bytes
19:39:44.808 [info] UploadPackV2: processing fetch command
19:39:44.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:44.811 [info] UploadPackV2: collected 19 objects, generating pack
.
19:39:44.812 [info] UploadPackV2: pack generated, 1194 bytes
.
19:39:44.813 [info] UploadPackV2: fetch response 1216 bytes
.
19:39:44.826 [info] UploadPackV2: processing fetch command
.
19:39:44.826 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.832 [info] UploadPackV2: collected 39 objects, generating pack
.
19:39:44.833 [info] UploadPackV2: pack generated, 2365 bytes
.
19:39:44.833 [info] UploadPackV2: fetch response 2387 bytes
.
19:39:44.860 [info] UploadPackV2: processing fetch command
.
19:39:44.861 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.868 [info] UploadPackV2: collected 27 objects, generating pack
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ 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
.
19:39:44.869 [info] UploadPackV2: pack generated, 1676 bytes
.
19:39:44.870 [info] UploadPackV2: fetch response 1698 bytes
.
19:39:44.887 [info] UploadPackV2: processing fetch command
.
19:39:44.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.893 [info] UploadPackV2: collected 20 objects, generating pack
.
19:39:44.894 [info] UploadPackV2: pack generated, 1203 bytes
.
19:39:44.894 [info] UploadPackV2: fetch response 1225 bytes
.
19:39:44.912 [info] UploadPackV2: processing fetch command
.
19:39:44.912 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.917 [info] UploadPackV2: collected 12 objects, generating pack
.
19:39:44.918 [info] UploadPackV2: pack generated, 723 bytes
.
19:39:44.918 [info] UploadPackV2: fetch response 745 bytes
.
19:39:44.933 [info] UploadPackV2: processing fetch command
.
19:39:44.933 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.936 [info] UploadPackV2: collected 8 objects, generating pack
.
19:39:44.937 [info] UploadPackV2: pack generated, 482 bytes
.
19:39:44.937 [info] UploadPackV2: fetch response 504 bytes
.
19:39:44.964 [info] UploadPackV2: processing fetch command
.
19:39:44.965 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.970 [info] UploadPackV2: collected 27 objects, generating pack
.
19:39:44.972 [info] UploadPackV2: pack generated, 1676 bytes
.
19:39:44.972 [info] UploadPackV2: fetch response 1698 bytes
.
19:39:44.980 [info] UploadPackV2: processing fetch command
.
19:39:44.980 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.980 [info] UploadPackV2: collected 12 objects, generating pack
.
19:39:44.981 [info] UploadPackV2: pack generated, 723 bytes
.
19:39:44.981 [info] UploadPackV2: fetch response 745 bytes
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
.
19:39:44.987 [info] UploadPackV2: processing fetch command
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
.
19:39:44.987 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:44.988 [info] UploadPackV2: collected 39 objects, generating pack
.
19:39:44.990 [info] UploadPackV2: pack generated, 2347 bytes
.
19:39:44.990 [info] UploadPackV2: fetch response 2369 bytes
.
19:39:44.999 [info] UploadPackV2: processing fetch command
.
19:39:44.999 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.002 [info] UploadPackV2: collected 43 objects, generating pack
.
19:39:45.004 [info] UploadPackV2: pack generated, 2577 bytes
.
19:39:45.004 [info] UploadPackV2: fetch response 2599 bytes
.
19:39:45.015 [info] UploadPackV2: processing fetch command
.
19:39:45.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.016 [info] UploadPackV2: collected 15 objects, generating pack
.
19:39:45.017 [info] UploadPackV2: pack generated, 958 bytes
.
19:39:45.017 [info] UploadPackV2: fetch response 980 bytes
.
19:39:45.023 [info] UploadPackV2: processing fetch command
..
19:39:45.023 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.024 [info] UploadPackV2: collected 24 objects, generating pack
19:39:45.025 [info] UploadPackV2: pack generated, 1443 bytes
19:39:45.026 [info] UploadPackV2: fetch response 1465 bytes
19:39:45.031 [info] UploadPackV2: processing fetch command
19:39:45.031 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.032 [info] UploadPackV2: collected 19 objects, generating pack
19:39:45.033 [info] UploadPackV2: pack generated, 1194 bytes
19:39:45.033 [info] UploadPackV2: fetch response 1216 bytes
19:39:45.040 [info] UploadPackV2: processing fetch command
19:39:45.040 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.043 [info] UploadPackV2: collected 27 objects, generating pack
19:39:45.043 [info] UploadPackV2: pack generated, 1676 bytes
19:39:45.043 [info] UploadPackV2: fetch response 1698 bytes
19:39:45.051 [info] UploadPackV2: processing fetch command
19:39:45.051 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.053 [info] UploadPackV2: collected 39 objects, generating pack
19:39:45.054 [info] UploadPackV2: pack generated, 2339 bytes
19:39:45.054 [info] UploadPackV2: fetch response 2361 bytes
19:39:45.059 [info] UploadPackV2: processing fetch command
19:39:45.059 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.060 [info] UploadPackV2: collected 11 objects, generating pack
19:39:45.060 [info] UploadPackV2: pack generated, 717 bytes
19:39:45.060 [info] UploadPackV2: fetch response 739 bytes
19:39:45.063 [info] UploadPackV2: processing fetch command
19:39:45.063 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.064 [info] UploadPackV2: collected 15 objects, generating pack
19:39:45.064 [info] UploadPackV2: pack generated, 956 bytes
19:39:45.064 [info] UploadPackV2: fetch response 978 bytes
19:39:45.070 [info] UploadPackV2: processing fetch command
19:39:45.070 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.071 [info] UploadPackV2: collected 23 objects, generating pack
19:39:45.072 [info] UploadPackV2: pack generated, 1435 bytes
.
19:39:45.072 [info] UploadPackV2: fetch response 1457 bytes
19:39:45.078 [info] UploadPackV2: processing fetch command
19:39:45.078 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.080 [info] UploadPackV2: collected 38 objects, generating pack
19:39:45.081 [info] UploadPackV2: pack generated, 2340 bytes
19:39:45.081 [info] UploadPackV2: fetch response 2362 bytes
19:39:45.087 [info] UploadPackV2: processing fetch command
19:39:45.088 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.089 [info] UploadPackV2: collected 27 objects, generating pack
.
19:39:45.090 [info] UploadPackV2: pack generated, 1678 bytes
.
19:39:45.090 [info] UploadPackV2: fetch response 1700 bytes
.
19:39:45.094 [info] UploadPackV2: processing fetch command
.
19:39:45.094 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.095 [info] UploadPackV2: collected 12 objects, generating pack
.
19:39:45.096 [info] UploadPackV2: pack generated, 723 bytes
.
19:39:45.096 [info] UploadPackV2: fetch response 745 bytes
.
19:39:45.099 [info] UploadPackV2: processing fetch command
.
19:39:45.099 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.100 [info] UploadPackV2: collected 15 objects, generating pack
..
19:39:45.101 [info] UploadPackV2: pack generated, 956 bytes
.
19:39:45.101 [info] UploadPackV2: fetch response 978 bytes
.
19:39:45.104 [info] UploadPackV2: processing fetch command
.
19:39:45.105 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.106 [info] UploadPackV2: collected 19 objects, generating pack
.
19:39:45.106 [info] UploadPackV2: pack generated, 1194 bytes
.
19:39:45.106 [info] UploadPackV2: fetch response 1216 bytes
.
19:39:45.112 [info] UploadPackV2: processing fetch command
.
19:39:45.112 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.114 [info] UploadPackV2: collected 46 objects, generating pack
.
19:39:45.115 [info] UploadPackV2: pack generated, 2820 bytes
.
19:39:45.115 [info] UploadPackV2: fetch response 2842 bytes
.
19:39:45.122 [info] UploadPackV2: processing fetch command
.
19:39:45.123 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.123 [info] UploadPackV2: collected 4 objects, generating pack
.
19:39:45.123 [info] UploadPackV2: pack generated, 241 bytes
.
19:39:45.123 [info] UploadPackV2: fetch response 263 bytes
.
19:39:45.125 [info] UploadPackV2: processing fetch command
.
19:39:45.125 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.126 [info] UploadPackV2: collected 15 objects, generating pack
.
19:39:45.127 [info] UploadPackV2: pack generated, 956 bytes
.
19:39:45.127 [info] UploadPackV2: fetch response 978 bytes
.
19:39:45.136 [info] UploadPackV2: processing fetch command
.
19:39:45.136 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.138 [info] UploadPackV2: collected 31 objects, generating pack
.
19:39:45.139 [info] UploadPackV2: pack generated, 1861 bytes
.
19:39:45.139 [info] UploadPackV2: fetch response 1883 bytes
.
19:39:45.146 [info] UploadPackV2: processing fetch command
.
19:39:45.147 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.147 [info] UploadPackV2: collected 12 objects, generating pack
.
19:39:45.148 [info] UploadPackV2: pack generated, 723 bytes
.
19:39:45.148 [info] UploadPackV2: fetch response 745 bytes
.
19:39:45.151 [info] UploadPackV2: processing fetch command
.
19:39:45.151 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.153 [info] UploadPackV2: collected 28 objects, generating pack
19:39:45.154 [info] UploadPackV2: pack generated, 1651 bytes
.
19:39:45.154 [info] UploadPackV2: fetch response 1673 bytes
.
19:39:45.165 [info] UploadPackV2: processing fetch command
.
19:39:45.165 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.169 [info] UploadPackV2: collected 19 objects, generating pack
.
19:39:45.169 [info] UploadPackV2: pack generated, 1194 bytes
.
19:39:45.169 [info] UploadPackV2: fetch response 1216 bytes
.
19:39:45.174 [info] UploadPackV2: processing fetch command
.
19:39:45.174 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:45.175 [info] UploadPackV2: collected 7 objects, generating pack
19:39:45.175 [info] UploadPackV2: pack generated, 475 bytes
19:39:45.175 [info] UploadPackV2: fetch response 497 bytes
19:39:45.181 [info] UploadPackV2: processing fetch command
19:39:45.181 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.183 [info] UploadPackV2: collected 43 objects, generating pack
19:39:45.184 [info] UploadPackV2: pack generated, 2586 bytes
19:39:45.184 [info] UploadPackV2: fetch response 2608 bytes
19:39:45.193 [info] UploadPackV2: processing fetch command
19:39:45.193 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.194 [info] UploadPackV2: collected 15 objects, generating pack
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
19:39:45.194 [info] UploadPackV2: pack generated, 958 bytes
19:39:45.194 [info] UploadPackV2: fetch response 980 bytes
19:39:45.196 [info] UploadPackV2: processing fetch command
19:39:45.197 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.197 [info] UploadPackV2: collected 4 objects, generating pack
19:39:45.197 [info] UploadPackV2: pack generated, 241 bytes
19:39:45.197 [info] UploadPackV2: fetch response 263 bytes
19:39:45.199 [info] UploadPackV2: processing fetch command
.
19:39:45.199 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.200 [info] UploadPackV2: collected 15 objects, generating pack
19:39:45.201 [info] UploadPackV2: pack generated, 958 bytes
19:39:45.201 [info] UploadPackV2: fetch response 980 bytes
19:39:45.203 [info] UploadPackV2: processing fetch command
19:39:45.204 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.204 [info] UploadPackV2: collected 4 objects, generating pack
19:39:45.204 [info] UploadPackV2: pack generated, 241 bytes
19:39:45.204 [info] UploadPackV2: fetch response 263 bytes
19:39:45.211 [info] UploadPackV2: processing fetch command
19:39:45.212 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.213 [info] UploadPackV2: collected 46 objects, generating pack
19:39:45.214 [info] UploadPackV2: pack generated, 2823 bytes
19:39:45.215 [info] UploadPackV2: fetch response 2845 bytes
19:39:45.221 [info] UploadPackV2: processing fetch command
19:39:45.222 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.223 [info] UploadPackV2: collected 36 objects, generating pack
19:39:45.224 [info] UploadPackV2: pack generated, 2104 bytes
19:39:45.224 [info] UploadPackV2: fetch response 2126 bytes
19:39:45.229 [info] UploadPackV2: processing fetch command
19:39:45.229 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.229 [info] UploadPackV2: collected 11 objects, generating pack
19:39:45.230 [info] UploadPackV2: pack generated, 714 bytes
19:39:45.230 [info] UploadPackV2: fetch response 736 bytes
19:39:45.233 [info] UploadPackV2: processing fetch command
19:39:45.233 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.237 [info] UploadPackV2: collected 43 objects, generating pack
19:39:45.238 [info] UploadPackV2: pack generated, 2578 bytes
19:39:45.239 [info] UploadPackV2: fetch response 2600 bytes
19:39:45.245 [info] UploadPackV2: processing fetch command
19:39:45.245 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.246 [info] UploadPackV2: collected 8 objects, generating pack
19:39:45.246 [info] UploadPackV2: pack generated, 482 bytes
19:39:45.246 [info] UploadPackV2: fetch response 504 bytes
19:39:45.248 [info] UploadPackV2: processing fetch command
19:39:45.248 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:45.249 [info] UploadPackV2: collected 8 objects, generating pack
19:39:45.249 [info] UploadPackV2: pack generated, 482 bytes
19:39:45.249 [info] UploadPackV2: fetch response 504 bytes
19:39:47.662 [notice] Handler :default switched from :drop to :sync mode
19:39:45.252 [info] UploadPackV2: processing fetch command
19:39:45.252 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.252 [info] UploadPackV2: collected 6 objects, generating pack
19:39:45.252 [info] UploadPackV2: pack generated, 428 bytes
.
19:39:45.253 [info] UploadPackV2: fetch response 450 bytes
.
19:39:45.258 [info] UploadPackV2: processing fetch command
.
19:39:45.258 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.259 [info] UploadPackV2: collected 20 objects, generating pack
.
19:39:45.260 [info] UploadPackV2: pack generated, 1490 bytes
.
19:39:45.260 [info] UploadPackV2: fetch response 1512 bytes
.
19:39:45.265 [info] UploadPackV2: processing fetch command
.
19:39:45.265 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.266 [info] UploadPackV2: collected 3 objects, generating pack
19:39:45.266 [info] UploadPackV2: pack generated, 214 bytes
19:39:45.266 [info] UploadPackV2: fetch response 236 bytes
.
19:39:45.268 [info] UploadPackV2: processing fetch command
.
19:39:45.268 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.270 [info] UploadPackV2: collected 18 objects, generating pack
.
19:39:45.271 [info] UploadPackV2: pack generated, 1281 bytes
.
19:39:45.271 [info] UploadPackV2: fetch response 1303 bytes
.
19:39:45.278 [info] UploadPackV2: processing fetch command
.
19:39:45.278 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.279 [info] UploadPackV2: collected 17 objects, generating pack
.
19:39:45.279 [info] UploadPackV2: pack generated, 1278 bytes
19:39:45.279 [info] UploadPackV2: fetch response 1300 bytes
19:39:45.286 [info] UploadPackV2: processing fetch command
19:39:45.287 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.287 [info] UploadPackV2: collected 18 objects, generating pack
19:39:45.288 [info] UploadPackV2: pack generated, 1281 bytes
19:39:45.288 [info] UploadPackV2: fetch response 1303 bytes
19:39:45.293 [info] UploadPackV2: processing fetch command
19:39:45.293 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.294 [info] UploadPackV2: collected 18 objects, generating pack
.
19:39:45.295 [info] UploadPackV2: pack generated, 1281 bytes
19:39:45.295 [info] UploadPackV2: fetch response 1303 bytes
19:39:45.306 [info] UploadPackV2: processing fetch command
19:39:45.306 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.307 [info] UploadPackV2: collected 15 objects, generating pack
19:39:45.307 [info] UploadPackV2: pack generated, 1068 bytes
19:39:45.307 [info] UploadPackV2: fetch response 1090 bytes
19:39:45.312 [info] UploadPackV2: processing fetch command
19:39:45.312 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.314 [info] UploadPackV2: collected 26 objects, generating pack
19:39:45.315 [info] UploadPackV2: pack generated, 1874 bytes
19:39:45.315 [info] UploadPackV2: fetch response 1896 bytes
19:39:45.322 [info] UploadPackV2: processing fetch command
.
19:39:45.322 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.323 [info] UploadPackV2: collected 17 objects, generating pack
19:39:45.324 [info] UploadPackV2: pack generated, 1278 bytes
19:39:45.324 [info] UploadPackV2: fetch response 1300 bytes
19:39:45.328 [info] UploadPackV2: processing fetch command
19:39:45.328 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.329 [info] UploadPackV2: collected 9 objects, generating pack
19:39:45.329 [info] UploadPackV2: pack generated, 642 bytes
19:39:45.329 [info] UploadPackV2: fetch response 664 bytes
19:39:45.333 [info] UploadPackV2: processing fetch command
19:39:45.333 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.333 [info] UploadPackV2: collected 8 objects, generating pack
19:39:45.334 [info] UploadPackV2: pack generated, 639 bytes
19:39:45.334 [info] UploadPackV2: fetch response 661 bytes
19:39:45.339 [info] UploadPackV2: processing fetch command
19:39:45.339 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.340 [info] UploadPackV2: collected 24 objects, generating pack
19:39:45.341 [info] UploadPackV2: pack generated, 1677 bytes
19:39:45.341 [info] UploadPackV2: fetch response 1699 bytes
19:39:45.349 [info] UploadPackV2: processing fetch command
19:39:45.349 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.350 [info] UploadPackV2: collected 14 objects, generating pack
19:39:45.352 [info] UploadPackV2: pack generated, 1062 bytes
19:39:45.352 [info] UploadPackV2: fetch response 1084 bytes
19:39:45.357 [info] UploadPackV2: processing fetch command
19:39:45.358 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.359 [info] UploadPackV2: collected 14 objects, generating pack
19:39:45.360 [info] UploadPackV2: pack generated, 1033 bytes
19:39:45.360 [info] UploadPackV2: fetch response 1055 bytes
19:39:45.364 [info] UploadPackV2: processing fetch command
19:39:45.364 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.365 [info] UploadPackV2: collected 9 objects, generating pack
.
19:39:45.365 [info] UploadPackV2: pack generated, 642 bytes
.
19:39:45.365 [info] UploadPackV2: fetch response 664 bytes
19:39:45.369 [info] UploadPackV2: processing fetch command
19:39:45.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.369 [info] UploadPackV2: collected 14 objects, generating pack
.
19:39:45.370 [info] UploadPackV2: pack generated, 1064 bytes
19:39:45.370 [info] UploadPackV2: fetch response 1086 bytes
19:39:45.374 [info] UploadPackV2: processing fetch command
19:39:45.374 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.375 [info] UploadPackV2: collected 5 objects, generating pack
19:39:45.375 [info] UploadPackV2: pack generated, 424 bytes
19:39:45.375 [info] UploadPackV2: fetch response 446 bytes
19:39:45.377 [info] UploadPackV2: processing fetch command
19:39:45.377 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.378 [info] UploadPackV2: collected 5 objects, generating pack
19:39:45.378 [info] UploadPackV2: pack generated, 424 bytes
19:39:45.378 [info] UploadPackV2: fetch response 446 bytes
19:39:45.384 [info] UploadPackV2: processing fetch command
19:39:45.384 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.386 [info] UploadPackV2: collected 43 objects, generating pack
19:39:45.387 [info] UploadPackV2: pack generated, 3148 bytes
19:39:45.388 [info] UploadPackV2: fetch response 3170 bytes
19:39:45.399 [info] UploadPackV2: processing fetch command
19:39:45.399 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
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
19:39:45.401 [info] UploadPackV2: collected 31 objects, generating pack
19:39:45.402 [info] UploadPackV2: pack generated, 2300 bytes
19:39:45.402 [info] UploadPackV2: fetch response 2322 bytes
19:39:45.425 [info] UploadPackV2: processing fetch command
19:39:45.426 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.428 [info] UploadPackV2: collected 21 objects, generating pack
19:39:45.429 [info] UploadPackV2: pack generated, 1462 bytes
19:39:45.429 [info] UploadPackV2: fetch response 1484 bytes
19:39:45.435 [info] UploadPackV2: processing fetch command
19:39:45.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.435 [info] UploadPackV2: collected 14 objects, generating pack
19:39:45.436 [info] UploadPackV2: pack generated, 1064 bytes
19:39:45.436 [info] UploadPackV2: fetch response 1086 bytes
19:39:45.441 [info] UploadPackV2: processing fetch command
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
19:39:45.441 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.442 [info] UploadPackV2: collected 17 objects, generating pack
..
19:39:45.442 [info] UploadPackV2: pack generated, 1276 bytes
..
19:39:45.442 [info] UploadPackV2: fetch response 1298 bytes
.
19:39:45.450 [info] UploadPackV2: processing fetch command
19:39:45.451 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.452 [info] UploadPackV2: collected 35 objects, generating pack
19:39:45.453 [info] UploadPackV2: pack generated, 2495 bytes
19:39:45.453 [info] UploadPackV2: fetch response 2517 bytes
19:39:45.462 [info] UploadPackV2: processing fetch command
19:39:45.462 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.463 [info] UploadPackV2: collected 20 objects, generating pack
19:39:45.464 [info] UploadPackV2: pack generated, 1429 bytes
19:39:45.464 [info] UploadPackV2: fetch response 1451 bytes
19:39:45.469 [info] UploadPackV2: processing fetch command
19:39:45.469 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.470 [info] UploadPackV2: collected 17 objects, generating pack
19:39:45.471 [info] UploadPackV2: pack generated, 1231 bytes
19:39:45.471 [info] UploadPackV2: fetch response 1253 bytes
19:39:45.478 [info] UploadPackV2: processing fetch command
19:39:45.478 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.479 [info] UploadPackV2: collected 14 objects, generating pack
.
19:39:45.480 [info] UploadPackV2: pack generated, 1064 bytes
19:39:45.480 [info] UploadPackV2: fetch response 1086 bytes
19:39:45.483 [info] UploadPackV2: processing fetch command
19:39:45.483 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.483 [info] UploadPackV2: collected 3 objects, generating pack
19:39:45.483 [info] UploadPackV2: pack generated, 214 bytes
19:39:45.483 [info] UploadPackV2: fetch response 236 bytes
19:39:45.486 [info] UploadPackV2: processing fetch command
19:39:45.486 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.487 [info] UploadPackV2: collected 18 objects, generating pack
19:39:45.488 [info] UploadPackV2: pack generated, 1250 bytes
19:39:45.488 [info] UploadPackV2: fetch response 1272 bytes
19:39:45.492 [info] UploadPackV2: processing fetch command
19:39:45.492 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.493 [info] UploadPackV2: collected 15 objects, generating pack
19:39:45.494 [info] UploadPackV2: pack generated, 1068 bytes
19:39:45.494 [info] UploadPackV2: fetch response 1090 bytes
.
19:39:45.500 [info] UploadPackV2: processing fetch command
19:39:45.500 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.501 [info] UploadPackV2: collected 5 objects, generating pack
19:39:45.501 [info] UploadPackV2: pack generated, 424 bytes
19:39:45.501 [info] UploadPackV2: fetch response 446 bytes
19:39:45.508 [info] UploadPackV2: processing fetch command
19:39:45.508 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.508 [info] UploadPackV2: collected 14 objects, generating pack
19:39:45.509 [info] UploadPackV2: pack generated, 1034 bytes
19:39:45.509 [info] UploadPackV2: fetch response 1056 bytes
19:39:45.515 [info] UploadPackV2: processing fetch command
.
19:39:45.515 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.516 [info] UploadPackV2: collected 23 objects, generating pack
.
19:39:45.517 [info] UploadPackV2: pack generated, 1662 bytes
.
19:39:45.517 [info] UploadPackV2: fetch response 1684 bytes
19:39:45.522 [info] UploadPackV2: processing fetch command
19:39:45.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.523 [info] UploadPackV2: collected 8 objects, generating pack
19:39:45.523 [info] UploadPackV2: pack generated, 636 bytes
19:39:45.523 [info] UploadPackV2: fetch response 658 bytes
19:39:45.528 [info] UploadPackV2: processing fetch command
19:39:45.528 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.530 [info] UploadPackV2: collected 32 objects, generating pack
19:39:45.531 [info] UploadPackV2: pack generated, 2313 bytes
19:39:45.531 [info] UploadPackV2: fetch response 2335 bytes
19:39:45.539 [info] UploadPackV2: processing fetch command
19:39:45.540 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.541 [info] UploadPackV2: collected 26 objects, generating pack
19:39:45.542 [info] UploadPackV2: pack generated, 1874 bytes
19:39:45.542 [info] UploadPackV2: fetch response 1896 bytes
.
19:39:45.549 [info] UploadPackV2: processing fetch command
.
19:39:45.549 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.555 [info] UploadPackV2: collected 14 objects, generating pack
.
19:39:45.556 [info] UploadPackV2: pack generated, 1035 bytes
19:39:45.556 [info] UploadPackV2: fetch response 1057 bytes
19:39:45.564 [info] UploadPackV2: processing fetch command
19:39:45.564 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:39:45.565 [info] UploadPackV2: collected 14 objects, generating pack
19:39:45.567 [info] UploadPackV2: pack generated, 1062 bytes
19:39:45.567 [info] UploadPackV2: fetch response 1084 bytes
19:39:45.575 [info] UploadPackV2: processing fetch command
19:39:45.575 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:45.577 [info] UploadPackV2: collected 29 objects, generating pack
19:39:45.578 [info] UploadPackV2: pack generated, 2098 bytes
19:39:45.578 [info] UploadPackV2: fetch response 2120 bytes
19:39:48.595 [info] UploadPackV2: processing fetch command
.
19:39:48.665 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:48.688 [info] UploadPackV2: reused pack 12027 bytes, 160 objects
..
19:39:48.688 [info] UploadPackV2: fetch response 12049 bytes
..................................................
19:39:48.930 [info] UploadPackV2: processing ls-refs command
19:39:48.935 [info] UploadPackV2: processing fetch command
19:39:48.935 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:48.940 [info] UploadPackV2: collected 3 objects, generating pack
19:39:48.940 [info] UploadPackV2: pack generated, 210 bytes
19:39:48.941 [info] UploadPackV2: fetch response 232 bytes
.......................
19:39:49.175 [info] UploadPackV2: processing fetch command
.
19:39:49.175 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:49.176 [info] UploadPackV2: collected 3 objects, generating pack
.
19:39:49.176 [info] UploadPackV2: pack generated, 191 bytes
.
19:39:49.176 [info] UploadPackV2: fetch response 213 bytes
.
19:39:49.179 [info] UploadPackV2: processing fetch command
.
19:39:49.179 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:49.180 [info] UploadPackV2: collected 3 objects, generating pack
.
19:39:49.180 [info] UploadPackV2: pack generated, 223 bytes
.
19:39:49.180 [info] UploadPackV2: fetch response 245 bytes
19:39:49.186 [info] UploadPackV2: processing fetch command
.
19:39:49.186 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.187 [info] UploadPackV2: collected 9 objects, streaming pack
19:39:49.189 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
...............................................
19:39:49.189 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
19:39:49.196 [info] UploadPackV2: processing fetch command
19:39:49.196 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.204 [info] UploadPackV2: collected 15 objects, generating pack
19:39:49.204 [info] UploadPackV2: pack generated, 984 bytes
19:39:49.204 [info] UploadPackV2: fetch response 1006 bytes
19:39:49.226 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
19:39:49.228 [info] UploadPackV2: processing fetch command
19:39:49.228 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.229 [info] UploadPackV2: collected 3 objects, generating pack
19:39:49.229 [info] UploadPackV2: pack generated, 191 bytes
19:39:49.229 [info] UploadPackV2: fetch response 213 bytes
19:39:49.230 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
19:39:49.234 [info] UploadPackV2: processing fetch command
19:39:49.235 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
19:39:49.235 [info] UploadPackV2: fetch response 73 bytes
19:39:49.237 [info] UploadPackV2: processing fetch command
19:39:49.237 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
19:39:49.239 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
19:39:49.247 [info] UploadPackV2: processing ls-refs command
19:39:49.272 [info] UploadPackV2: processing fetch command
19:39:49.272 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.278 [info] UploadPackV2: collected 6 objects, generating pack
19:39:49.280 [info] UploadPackV2: pack generated, 414 bytes
19:39:49.281 [info] UploadPackV2: fetch response 436 bytes
19:39:49.290 [info] UploadPackV2: processing fetch command
19:39:49.290 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.292 [info] UploadPackV2: collected 15 objects, generating pack
19:39:49.293 [info] UploadPackV2: pack generated, 984 bytes
19:39:49.293 [info] UploadPackV2: fetch response 1006 bytes
19:39:49.293 [info] UploadPackV2: processing fetch command
19:39:49.293 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.295 [info] UploadPackV2: collected 15 objects, streaming pack
19:39:49.298 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
19:39:49.299 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
19:39:49.410 [info] UploadPackV2: processing fetch command
19:39:49.410 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.417 [info] UploadPackV2: collected 32 objects, generating pack
19:39:49.508 [info] UploadPackV2: pack generated, 2459815 bytes
19:39:49.511 [info] UploadPackV2: fetch response 2460022 bytes
19:39:49.511 [info] UploadPackV2: processing fetch command
19:39:49.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.518 [info] UploadPackV2: collected 32 objects, streaming pack
19:39:49.616 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
.
19:39:49.616 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
.
19:39:49.619 [info] UploadPackV2: processing fetch command
.
19:39:49.619 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:49.619 [info] UploadPackV2: collected 3 objects, generating pack
.
19:39:49.619 [info] UploadPackV2: pack generated, 191 bytes
.
19:39:49.619 [info] UploadPackV2: fetch response 213 bytes
19:39:49.669 [info] UploadPackV2: processing fetch command
.
19:39:49.673 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:49.695 [info] UploadPackV2: collected 600 objects, generating pack
.
19:39:49.703 [info] UploadPackV2: pack generated, 39862 bytes
.
19:39:49.703 [info] UploadPackV2: fetch response 39884 bytes
.
19:39:49.744 [info] UploadPackV2: processing fetch command
.
19:39:49.744 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:39:49.747 [info] UploadPackV2: collected 90 objects, generating pack
.
19:39:49.749 [info] UploadPackV2: pack generated, 5946 bytes
.
19:39:49.749 [info] UploadPackV2: fetch response 5968 bytes
19:39:49.755 [info] UploadPackV2: processing ls-refs command
19:39:49.755 [info] UploadPackV2: processing ls-refs command
19:39:49.756 [info] UploadPackV2: processing ls-refs command
19:39:49.845 [info] UploadPackV2: processing fetch command
19:39:49.845 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:49.851 [info] UploadPackV2: collected 32 objects, streaming pack
19:39:49.951 [info] UploadPackV2: streamed pack 2459758 bytes, 32 objects
19:39:49.951 [info] UploadPackV2: fetch streamed 2459758 pack bytes, 32 objects
19:39:50.076 [info] UploadPackV2: processing fetch command
19:39:50.076 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.106 [info] UploadPackV2: collected 700 objects, generating pack
19:39:50.117 [info] UploadPackV2: pack generated, 48139 bytes
19:39:50.117 [info] UploadPackV2: fetch response 48161 bytes
19:39:50.162 [info] UploadPackV2: processing fetch command
19:39:50.162 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.162 [info] UploadPackV2: collected 3 objects, generating pack
19:39:50.162 [info] UploadPackV2: pack generated, 194 bytes
.
19:39:50.162 [info] UploadPackV2: fetch response 216 bytes
19:39:50.163 [info] UploadPackV2: processing fetch command
19:39:50.163 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.163 [info] UploadPackV2: collected 3 objects, generating pack
19:39:50.164 [info] UploadPackV2: pack generated, 195 bytes
19:39:50.164 [info] UploadPackV2: fetch response 217 bytes
19:39:50.167 [info] UploadPackV2: processing fetch command
19:39:50.167 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.168 [info] UploadPackV2: collected 3 objects, streaming pack
19:39:50.171 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
19:39:50.171 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
19:39:50.172 [info] UploadPackV2: processing fetch command
19:39:50.172 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.173 [info] UploadPackV2: collected 0 objects, generating pack
19:39:50.173 [info] UploadPackV2: pack generated, 32 bytes
19:39:50.173 [info] UploadPackV2: fetch response 54 bytes
19:39:50.173 [info] UploadPackV2: processing fetch command
19:39:50.173 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.173 [info] UploadPackV2: collected 3 objects, generating pack
19:39:50.174 [info] UploadPackV2: pack generated, 195 bytes
19:39:50.174 [info] UploadPackV2: fetch response 217 bytes
19:39:50.174 [info] UploadPackV2: processing fetch command
19:39:50.174 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.174 [info] UploadPackV2: collected 3 objects, streaming pack
19:39:50.175 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
19:39:50.175 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
19:39:50.176 [info] UploadPackV2: processing ls-refs command
19:39:50.176 [info] UploadPackV2: processing fetch command
19:39:50.176 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.176 [info] UploadPackV2: collected 3 objects, generating pack
19:39:50.176 [info] UploadPackV2: pack generated, 206 bytes
19:39:50.176 [info] UploadPackV2: fetch response 228 bytes
19:39:50.644 [info] UploadPackV2: processing fetch command
19:39:50.644 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:50.655 [info] UploadPackV2: collected 163 objects, generating pack
19:39:50.660 [info] UploadPackV2: pack generated, 15092 bytes
.
19:39:50.660 [info] UploadPackV2: fetch response 15114 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
...........................................................................................
19:39:52.870 [warning] post_receive hook failed: "webhook failed"
warning: module attribute @git_lfs_available was set but never used
│
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
│
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
................................................................
19:39:54.541 [info] UploadPackV2: processing ls-refs command
19:39:54.544 [info] UploadPackV2: processing fetch command
19:39:54.544 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:39:54.544 [info] UploadPackV2: collected 6 objects, generating pack
19:39:54.545 [info] UploadPackV2: pack generated, 513 bytes
19:39:54.545 [info] UploadPackV2: fetch response 535 bytes
.
19:39:54.613 [info] UploadPackV2: processing ls-refs command
19:39:54.615 [info] UploadPackV2: processing fetch command
19:39:54.615 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:39:54.616 [info] UploadPackV2: collected 9 objects, generating pack
19:39:54.616 [info] UploadPackV2: pack generated, 585 bytes
19:39:54.616 [info] UploadPackV2: fetch response 681 bytes
.
19:39:54.689 [info] UploadPackV2: processing ls-refs command
19:39:54.691 [info] UploadPackV2: processing fetch command
19:39:54.691 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:39:54.691 [info] UploadPackV2: collected 3 objects, generating pack
19:39:54.692 [info] UploadPackV2: pack generated, 216 bytes
19:39:54.692 [info] UploadPackV2: fetch response 312 bytes
.
19:39:54.753 [info] UploadPackV2: processing ls-refs command
.
19:39:54.805 [info] UploadPackV2: processing ls-refs command
19:39:54.806 [info] UploadPackV2: processing fetch command
19:39:54.807 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:54.807 [info] UploadPackV2: collected 9 objects, generating pack
19:39:54.808 [info] UploadPackV2: pack generated, 549 bytes
19:39:54.808 [info] UploadPackV2: fetch response 571 bytes
19:39:54.823 [info] UploadPackV2: processing fetch command
19:39:54.823 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
19:39:54.824 [info] UploadPackV2: fetch response 171 bytes
.
19:39:54.877 [info] UploadPackV2: processing ls-refs command
19:39:54.880 [info] UploadPackV2: processing fetch command
19:39:54.880 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
19:39:54.881 [info] UploadPackV2: collected 3 objects, generating pack
19:39:54.882 [info] UploadPackV2: pack generated, 381 bytes
19:39:54.882 [info] UploadPackV2: fetch response 403 bytes
..
19:39:54.945 [info] UploadPackV2: processing ls-refs command
.
19:39:54.997 [info] UploadPackV2: processing ls-refs command
19:39:55.000 [info] UploadPackV2: processing fetch command
19:39:55.000 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
19:39:55.001 [info] UploadPackV2: collected 5 objects, generating pack
19:39:55.001 [info] UploadPackV2: pack generated, 319 bytes
19:39:55.002 [info] UploadPackV2: fetch response 341 bytes
.
19:39:55.069 [info] UploadPackV2: processing ls-refs command
19:39:55.072 [info] UploadPackV2: processing fetch command
19:39:55.072 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
19:39:55.073 [info] UploadPackV2: collected 3 objects, generating pack
19:39:55.073 [info] UploadPackV2: pack generated, 381 bytes
19:39:55.073 [info] UploadPackV2: fetch response 403 bytes
.
19:39:55.141 [info] UploadPackV2: processing ls-refs command
19:39:55.143 [info] UploadPackV2: processing fetch command
19:39:55.143 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:39:55.143 [info] UploadPackV2: collected 3 objects, generating pack
19:39:55.143 [info] UploadPackV2: pack generated, 216 bytes
19:39:55.144 [info] UploadPackV2: fetch response 312 bytes
19:39:55.209 [info] UploadPackV2: processing ls-refs command
19:39:55.210 [info] UploadPackV2: processing fetch command
19:39:55.210 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:39:55.211 [info] UploadPackV2: collected 12 objects, generating pack
19:39:55.211 [info] UploadPackV2: pack generated, 768 bytes
19:39:55.211 [info] UploadPackV2: fetch response 1002 bytes
.
19:39:55.273 [info] UploadPackV2: processing ls-refs command
.
19:39:55.325 [info] UploadPackV2: processing ls-refs command
.
19:39:55.381 [info] UploadPackV2: processing ls-refs command
19:39:55.383 [info] UploadPackV2: processing fetch command
19:39:55.383 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:39:55.383 [info] UploadPackV2: collected 3 objects, generating pack
19:39:55.383 [info] UploadPackV2: pack generated, 218 bytes
19:39:55.383 [info] UploadPackV2: fetch response 314 bytes
..
19:39:55.453 [info] UploadPackV2: processing ls-refs command
19:39:55.456 [info] UploadPackV2: processing fetch command
19:39:55.456 [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
19:39:55.457 [info] UploadPackV2: collected 6 objects, generating pack
19:39:55.458 [info] UploadPackV2: pack generated, 513 bytes
19:39:55.458 [info] UploadPackV2: fetch response 535 bytes
.
19:39:55.475 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303402943" 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
19:39:55.475 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303402911" 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
.
19:39:55.476 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303402879" 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
19:39:55.476 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303402847" 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
.
19:39:55.477 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303407230" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
19:39:55.477 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303407198" 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
.
19:39:55.478 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303402815" 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
19:39:55.479 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303402783" 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
.................
19:39:56.870 [info] UploadPackV2: processing ls-refs command
19:39:56.873 [info] UploadPackV2: processing fetch command
19:39:56.873 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:56.873 [info] UploadPackV2: collected 3 objects, generating pack
19:39:56.873 [info] UploadPackV2: pack generated, 183 bytes
19:39:56.874 [info] UploadPackV2: fetch response 205 bytes
.
19:39:56.910 [info] UploadPackV2: processing ls-refs command
19:39:56.913 [info] UploadPackV2: processing fetch command
19:39:56.913 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:56.913 [info] UploadPackV2: collected 15 objects, generating pack
19:39:56.914 [info] UploadPackV2: pack generated, 919 bytes
19:39:56.914 [info] UploadPackV2: fetch response 941 bytes
.
19:39:57.009 [info] UploadPackV2: processing fetch command
19:39:57.009 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:57.010 [info] UploadPackV2: collected 3 objects, generating pack
19:39:57.010 [info] UploadPackV2: pack generated, 183 bytes
19:39:57.010 [info] UploadPackV2: fetch response 205 bytes
.
19:39:57.036 [info] UploadPackV2: processing ls-refs command
19:39:57.039 [info] UploadPackV2: processing fetch command
19:39:57.039 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:57.040 [info] UploadPackV2: collected 6 objects, generating pack
19:39:57.040 [info] UploadPackV2: pack generated, 366 bytes
19:39:57.040 [info] UploadPackV2: fetch response 388 bytes
19:39:57.068 [info] UploadPackV2: processing ls-refs command
.
19:39:57.095 [info] UploadPackV2: processing ls-refs command
19:39:57.098 [info] UploadPackV2: processing fetch command
19:39:57.098 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:57.099 [info] UploadPackV2: collected 9 objects, generating pack
19:39:57.099 [info] UploadPackV2: pack generated, 549 bytes
19:39:57.099 [info] UploadPackV2: fetch response 571 bytes
19:39:57.128 [info] UploadPackV2: processing ls-refs command
.
19:39:57.162 [info] UploadPackV2: processing ls-refs command
19:39:57.165 [info] UploadPackV2: processing fetch command
19:39:57.165 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:57.170 [info] UploadPackV2: collected 180 objects, generating pack
19:39:57.172 [info] UploadPackV2: pack generated, 11106 bytes
19:39:57.173 [info] UploadPackV2: fetch response 11128 bytes
.
19:39:57.195 [info] The function passed as a handler with ID "graph-query-test-21410" 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
.
19:39:57.196 [info] The function passed as a handler with ID "graph-query-test-21474" 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
..........
19:39:57.212 [info] The function passed as a handler with ID "graph-query-test-15172" 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
..
19:39:57.265 [info] UploadPackV2: processing ls-refs command
19:39:57.267 [info] UploadPackV2: processing fetch command
19:39:57.267 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:39:57.267 [info] UploadPackV2: collected 3 objects, generating pack
19:39:57.267 [info] UploadPackV2: pack generated, 196 bytes
19:39:57.268 [info] UploadPackV2: fetch response 218 bytes
..
19:40:12.405 [info] UploadPackV2: processing ls-refs command
19:40:12.407 [info] UploadPackV2: processing fetch command
19:40:12.407 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:12.407 [info] UploadPackV2: collected 3 objects, generating pack
19:40:12.407 [info] UploadPackV2: pack generated, 185 bytes
19:40:12.408 [info] UploadPackV2: fetch response 207 bytes
.***********
19:40:12.473 [info] UploadPackV2: processing ls-refs command
.
19:40:12.541 [info] UploadPackV2: processing ls-refs command
19:40:12.543 [info] UploadPackV2: processing fetch command
19:40:12.543 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:12.549 [info] UploadPackV2: collected 240 objects, generating pack
19:40:12.553 [info] UploadPackV2: pack generated, 16258 bytes
19:40:12.554 [info] UploadPackV2: fetch response 16280 bytes
.
19:40:12.669 [info] UploadPackV2: processing ls-refs command
19:40:12.671 [info] UploadPackV2: processing fetch command
19:40:12.671 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:12.693 [info] UploadPackV2: collected 600 objects, generating pack
19:40:12.712 [info] UploadPackV2: pack generated, 45197 bytes
19:40:12.712 [info] UploadPackV2: fetch response 45219 bytes
.
19:40:12.749 [info] UploadPackV2: processing fetch command
19:40:12.749 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:12.749 [info] UploadPackV2: collected 0 objects, generating pack
19:40:12.749 [info] UploadPackV2: pack generated, 32 bytes
19:40:12.749 [info] UploadPackV2: fetch response 54 bytes
.
19:40:13.089 [info] UploadPackV2: processing ls-refs command
19:40:13.091 [info] UploadPackV2: processing fetch command
19:40:13.091 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:40:13.091 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.091 [info] UploadPackV2: pack generated, 231 bytes
19:40:13.091 [info] UploadPackV2: fetch response 327 bytes
.
19:40:13.161 [info] UploadPackV2: processing ls-refs command
.
19:40:13.213 [info] UploadPackV2: processing fetch command
19:40:13.213 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.213 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.214 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.214 [info] UploadPackV2: fetch response 205 bytes
19:40:13.214 [info] UploadPackV2: processing fetch command
19:40:13.214 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.214 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.214 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.214 [info] UploadPackV2: fetch response 205 bytes
19:40:13.215 [info] UploadPackV2: processing fetch command
19:40:13.215 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.215 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.215 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.215 [info] UploadPackV2: fetch response 205 bytes
19:40:13.215 [info] UploadPackV2: processing fetch command
19:40:13.215 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.215 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.215 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.215 [info] UploadPackV2: fetch response 205 bytes
19:40:13.215 [info] UploadPackV2: processing fetch command
19:40:13.215 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.216 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.216 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.216 [info] UploadPackV2: fetch response 205 bytes
19:40:13.216 [info] UploadPackV2: processing fetch command
19:40:13.216 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.216 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.216 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.216 [info] UploadPackV2: fetch response 205 bytes
19:40:13.216 [info] UploadPackV2: processing fetch command
19:40:13.216 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.216 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.216 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.216 [info] UploadPackV2: fetch response 205 bytes
19:40:13.217 [info] UploadPackV2: processing fetch command
19:40:13.217 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.217 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.217 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.217 [info] UploadPackV2: fetch response 205 bytes
19:40:13.217 [info] UploadPackV2: processing fetch command
19:40:13.218 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.218 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.218 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.218 [info] UploadPackV2: fetch response 205 bytes
19:40:13.218 [info] UploadPackV2: processing fetch command
19:40:13.218 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.219 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.220 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.220 [info] UploadPackV2: fetch response 205 bytes
19:40:13.220 [info] UploadPackV2: processing fetch command
19:40:13.220 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.220 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.220 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.220 [info] UploadPackV2: fetch response 205 bytes
19:40:13.221 [info] UploadPackV2: processing fetch command
19:40:13.221 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.221 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.222 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.222 [info] UploadPackV2: fetch response 205 bytes
19:40:13.222 [info] UploadPackV2: processing fetch command
19:40:13.222 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.223 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.223 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.223 [info] UploadPackV2: fetch response 205 bytes
19:40:13.223 [info] UploadPackV2: processing fetch command
19:40:13.223 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.223 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.223 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.223 [info] UploadPackV2: fetch response 205 bytes
19:40:13.223 [info] UploadPackV2: processing fetch command
19:40:13.223 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.223 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.224 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.224 [info] UploadPackV2: fetch response 205 bytes
19:40:13.224 [info] UploadPackV2: processing fetch command
19:40:13.224 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.224 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.224 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.224 [info] UploadPackV2: fetch response 205 bytes
19:40:13.224 [info] UploadPackV2: processing fetch command
19:40:13.224 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.224 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.224 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.224 [info] UploadPackV2: fetch response 205 bytes
19:40:13.224 [info] UploadPackV2: processing fetch command
19:40:13.224 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.225 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.225 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.225 [info] UploadPackV2: fetch response 205 bytes
.
19:40:13.225 [info] UploadPackV2: processing fetch command
19:40:13.225 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.225 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.225 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.227 [info] UploadPackV2: fetch response 205 bytes
19:40:13.227 [info] UploadPackV2: processing fetch command
19:40:13.227 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.228 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.228 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.228 [info] UploadPackV2: fetch response 205 bytes
19:40:13.228 [info] UploadPackV2: processing fetch command
19:40:13.228 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.229 [info] UploadPackV2: collected 3 objects, generating pack
19:40:13.229 [info] UploadPackV2: pack generated, 183 bytes
19:40:13.229 [info] UploadPackV2: fetch response 205 bytes
19:40:13.309 [info] UploadPackV2: processing ls-refs command
19:40:13.311 [info] UploadPackV2: processing fetch command
19:40:13.311 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:13.312 [info] UploadPackV2: collected 6 objects, generating pack
19:40:13.312 [info] UploadPackV2: pack generated, 365 bytes
19:40:13.312 [info] UploadPackV2: fetch response 387 bytes
.
19:40:28.369 [info] UploadPackV2: processing ls-refs command
19:40:28.369 [info] UploadPackV2: processing ls-refs command
19:40:28.371 [info] UploadPackV2: processing fetch command
19:40:28.371 [info] UploadPackV2: processing fetch command
19:40:28.371 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.372 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.372 [info] UploadPackV2: collected 6 objects, generating pack
19:40:28.372 [info] UploadPackV2: collected 6 objects, generating pack
19:40:28.372 [info] UploadPackV2: pack generated, 365 bytes
19:40:28.373 [info] UploadPackV2: fetch response 387 bytes
19:40:28.373 [info] UploadPackV2: pack generated, 365 bytes
19:40:28.373 [info] UploadPackV2: fetch response 387 bytes
.
19:40:28.453 [info] UploadPackV2: processing ls-refs command
19:40:28.455 [info] UploadPackV2: processing fetch command
19:40:28.455 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.455 [info] UploadPackV2: collected 6 objects, generating pack
19:40:28.455 [info] UploadPackV2: pack generated, 365 bytes
19:40:28.455 [info] UploadPackV2: fetch response 387 bytes
19:40:28.472 [info] UploadPackV2: processing fetch command
19:40:28.472 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
19:40:28.473 [info] UploadPackV2: fetch response 122 bytes
.
19:40:28.525 [info] UploadPackV2: processing ls-refs command
19:40:28.527 [info] UploadPackV2: processing fetch command
19:40:28.527 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.527 [info] UploadPackV2: collected 6 objects, generating pack
19:40:28.528 [info] UploadPackV2: pack generated, 366 bytes
19:40:28.528 [info] UploadPackV2: fetch response 388 bytes
19:40:28.589 [info] UploadPackV2: processing ls-refs command
19:40:28.590 [info] UploadPackV2: processing fetch command
19:40:28.590 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
19:40:28.590 [info] UploadPackV2: fetch response 32 bytes
19:40:28.591 [info] UploadPackV2: processing fetch command
19:40:28.591 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.591 [info] UploadPackV2: collected 3 objects, generating pack
19:40:28.591 [info] UploadPackV2: pack generated, 183 bytes
19:40:28.591 [info] UploadPackV2: fetch response 205 bytes
.
19:40:28.669 [info] UploadPackV2: processing ls-refs command
19:40:28.670 [info] UploadPackV2: processing fetch command
19:40:28.670 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:40:28.670 [info] UploadPackV2: collected 3 objects, generating pack
19:40:28.670 [info] UploadPackV2: pack generated, 216 bytes
19:40:28.670 [info] UploadPackV2: fetch response 346 bytes
.
19:40:28.678 [info] UploadPackV2: processing fetch command
19:40:28.678 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.678 [info] UploadPackV2: collected 3 objects, generating pack
19:40:28.679 [info] UploadPackV2: pack generated, 183 bytes
19:40:28.679 [info] UploadPackV2: fetch response 205 bytes
.
19:40:28.729 [info] UploadPackV2: processing ls-refs command
19:40:28.731 [info] UploadPackV2: processing fetch command
19:40:28.731 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.732 [info] UploadPackV2: collected 9 objects, generating pack
19:40:28.732 [info] UploadPackV2: pack generated, 547 bytes
19:40:28.732 [info] UploadPackV2: fetch response 569 bytes
19:40:28.805 [info] UploadPackV2: processing ls-refs command
.
19:40:28.881 [info] UploadPackV2: processing ls-refs command
19:40:28.883 [info] UploadPackV2: processing fetch command
19:40:28.883 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:28.885 [info] UploadPackV2: collected 90 objects, generating pack
19:40:28.887 [info] UploadPackV2: pack generated, 5649 bytes
19:40:28.887 [info] UploadPackV2: fetch response 5671 bytes
19:40:29.185 [info] UploadPackV2: processing ls-refs command
.
19:40:29.297 [info] UploadPackV2: processing ls-refs command
19:40:29.299 [info] UploadPackV2: processing fetch command
19:40:29.299 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:29.300 [info] UploadPackV2: collected 6 objects, generating pack
19:40:29.300 [info] UploadPackV2: pack generated, 365 bytes
19:40:29.300 [info] UploadPackV2: fetch response 387 bytes
19:40:31.681 [info] UploadPackV2: processing ls-refs command
.
19:40:31.687 [info] The function passed as a handler with ID "telemetry-test-21538" 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
19:40:31.688 [info] UploadPackV2: processing fetch command
19:40:31.688 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:40:31.688 [info] UploadPackV2: collected 3 objects, generating pack
19:40:31.688 [info] UploadPackV2: pack generated, 186 bytes
19:40:31.688 [info] UploadPackV2: fetch response 208 bytes
.
19:40:31.689 [info] The function passed as a handler with ID "telemetry-test-21795" 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
.
19:40:31.689 [info] UploadPackV2: processing fetch command
.
19:40:31.689 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:40:31.690 [info] UploadPackV2: collected 3 objects, generating pack
19:40:31.690 [info] UploadPackV2: pack generated, 183 bytes
19:40:31.690 [info] UploadPackV2: fetch response 205 bytes
19:40:31.690 [info] The function passed as a handler with ID "telemetry-test-21827" 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
19:40:31.690 [info] UploadPackV2: processing fetch command
19:40:31.691 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:40:31.691 [info] UploadPackV2: collected 2 objects, generating pack
19:40:31.691 [info] UploadPackV2: pack generated, 169 bytes
19:40:31.691 [info] UploadPackV2: fetch response 191 bytes
19:40:31.696 [info] The function passed as a handler with ID "telemetry-test-21859" 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
......
19:42:02.209 [info] UploadPackV2: processing ls-refs command
19:42:02.211 [info] UploadPackV2: processing fetch command
19:42:02.211 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:42:02.211 [info] UploadPackV2: collected 3 objects, generating pack
19:42:02.211 [info] UploadPackV2: pack generated, 183 bytes
19:42:02.211 [info] UploadPackV2: fetch response 205 bytes
.
19:42:17.341 [info] UploadPackV2: processing ls-refs command
19:42:17.343 [info] UploadPackV2: processing fetch command
19:42:17.343 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:42:17.343 [info] UploadPackV2: collected 3 objects, generating pack
19:42:17.343 [info] UploadPackV2: pack generated, 201 bytes
19:42:17.344 [info] UploadPackV2: fetch response 223 bytes
.
19:42:32.473 [info] UploadPackV2: processing ls-refs command
19:42:32.475 [info] UploadPackV2: processing fetch command
19:42:32.475 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:42:32.475 [info] UploadPackV2: collected 6 objects, generating pack
19:42:32.475 [info] UploadPackV2: pack generated, 365 bytes
19:42:32.476 [info] UploadPackV2: fetch response 387 bytes
.
19:42:32.553 [info] UploadPackV2: processing ls-refs command
19:42:32.555 [info] UploadPackV2: processing fetch command
19:42:32.555 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:42:32.555 [info] UploadPackV2: collected 6 objects, generating pack
19:42:32.556 [info] UploadPackV2: pack generated, 365 bytes
19:42:32.556 [info] UploadPackV2: fetch response 387 bytes
.
19:42:47.689 [info] UploadPackV2: processing ls-refs command
19:42:47.691 [info] UploadPackV2: processing fetch command
19:42:47.691 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:42:47.692 [info] UploadPackV2: collected 3 objects, generating pack
19:42:47.692 [info] UploadPackV2: pack generated, 183 bytes
19:42:47.692 [info] UploadPackV2: fetch response 205 bytes
..
19:43:02.873 [info] UploadPackV2: processing ls-refs command
19:43:02.875 [info] UploadPackV2: processing fetch command
19:43:02.875 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:43:02.875 [info] UploadPackV2: collected 3 objects, generating pack
19:43:02.875 [info] UploadPackV2: pack generated, 196 bytes
19:43:02.875 [info] UploadPackV2: fetch response 218 bytes
.
19:43:02.945 [info] UploadPackV2: processing ls-refs command
19:43:02.947 [info] UploadPackV2: processing fetch command
19:43:02.947 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:43:02.948 [info] UploadPackV2: collected 15 objects, generating pack
19:43:02.949 [info] UploadPackV2: pack generated, 952 bytes
19:43:02.949 [info] UploadPackV2: fetch response 974 bytes
.
19:43:03.033 [info] UploadPackV2: processing ls-refs command
19:43:03.034 [info] UploadPackV2: processing fetch command
19:43:03.034 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:43:03.034 [info] UploadPackV2: collected 3 objects, generating pack
19:43:03.035 [info] UploadPackV2: pack generated, 200 bytes
19:43:03.035 [info] UploadPackV2: fetch response 256 bytes
.
19:43:03.097 [info] UploadPackV2: processing ls-refs command
19:43:03.098 [info] UploadPackV2: processing fetch command
19:43:03.099 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:43:03.099 [info] UploadPackV2: collected 3 objects, generating pack
19:43:03.099 [info] UploadPackV2: pack generated, 185 bytes
19:43:03.099 [info] UploadPackV2: fetch response 207 bytes
19:43:03.165 [info] UploadPackV2: processing ls-refs command
...................
Finished in 204.3 seconds (15.6s async, 188.7s sync)
Result: 971 passed (2 properties, 969 tests), 11 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info