fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Started: Jul 10, 2026 at 16:26 UTC
Completed: Jul 10, 2026 at 16:30 UTC
Duration: 3m 28s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Cover compiling modules ...
Running ExUnit with seed: 184576, max_cases: 8
Excluding tags: [:s3]
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
..............................
16:27:03.464 [info] The function passed as a handler with ID "test-fail-#Reference<0.3327248799.3900178433.29432>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:27:03.512 [info] The function passed as a handler with ID "test-#Reference<0.3327248799.3900178433.29470>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
...........
16:27:03.662 [info] UploadPackV2: processing fetch command
16:27:03.662 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.665 [info] UploadPackV2: collected 3 objects, generating pack
16:27:03.665 [info] UploadPackV2: pack generated, 214 bytes
16:27:03.665 [info] UploadPackV2: fetch response 236 bytes
16:27:03.698 [info] UploadPackV2: processing fetch command
16:27:03.698 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.701 [info] UploadPackV2: collected 32 objects, generating pack
16:27:03.701 [info] UploadPackV2: pack generated, 2301 bytes
.
16:27:03.702 [info] UploadPackV2: fetch response 2323 bytes
16:27:03.718 [info] UploadPackV2: processing fetch command
.
16:27:03.718 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.719 [info] UploadPackV2: collected 17 objects, generating pack
16:27:03.720 [info] UploadPackV2: pack generated, 1278 bytes
16:27:03.720 [info] UploadPackV2: fetch response 1300 bytes
16:27:03.729 [info] UploadPackV2: processing fetch command
16:27:03.729 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.730 [info] UploadPackV2: collected 23 objects, generating pack
16:27:03.731 [info] UploadPackV2: pack generated, 1661 bytes
16:27:03.731 [info] UploadPackV2: fetch response 1683 bytes
16:27:03.739 [info] UploadPackV2: processing fetch command
16:27:03.739 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.740 [info] UploadPackV2: collected 22 objects, generating pack
16:27:03.741 [info] UploadPackV2: pack generated, 1658 bytes
16:27:03.741 [info] UploadPackV2: fetch response 1680 bytes
16:27:03.757 [info] UploadPackV2: processing fetch command
16:27:03.757 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.760 [info] UploadPackV2: collected 14 objects, generating pack
16:27:03.760 [info] UploadPackV2: pack generated, 1064 bytes
16:27:03.760 [info] UploadPackV2: fetch response 1086 bytes
16:27:03.765 [info] UploadPackV2: processing fetch command
16:27:03.765 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.767 [info] UploadPackV2: collected 12 objects, generating pack
16:27:03.768 [info] UploadPackV2: pack generated, 854 bytes
16:27:03.768 [info] UploadPackV2: fetch response 876 bytes
16:27:03.793 [info] UploadPackV2: processing fetch command
16:27:03.793 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.798 [info] UploadPackV2: collected 18 objects, generating pack
16:27:03.799 [info] UploadPackV2: pack generated, 1281 bytes
16:27:03.799 [info] UploadPackV2: fetch response 1303 bytes
16:27:03.812 [info] UploadPackV2: processing fetch command
16:27:03.812 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.812 [info] UploadPackV2: collected 15 objects, generating pack
16:27:03.813 [info] UploadPackV2: pack generated, 1036 bytes
16:27:03.813 [info] UploadPackV2: fetch response 1058 bytes
16:27:03.837 [info] UploadPackV2: processing fetch command
16:27:03.837 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.839 [info] UploadPackV2: collected 14 objects, generating pack
16:27:03.839 [info] UploadPackV2: pack generated, 1062 bytes
16:27:03.839 [info] UploadPackV2: fetch response 1084 bytes
16:27:03.847 [info] UploadPackV2: processing fetch command
16:27:03.847 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.848 [info] UploadPackV2: collected 20 objects, generating pack
16:27:03.849 [info] UploadPackV2: pack generated, 1450 bytes
16:27:03.849 [info] UploadPackV2: fetch response 1472 bytes
16:27:03.855 [info] UploadPackV2: processing fetch command
16:27:03.855 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.858 [info] UploadPackV2: collected 8 objects, generating pack
16:27:03.858 [info] UploadPackV2: pack generated, 639 bytes
16:27:03.858 [info] UploadPackV2: fetch response 661 bytes
.
16:27:03.863 [info] UploadPackV2: processing fetch command
.
16:27:03.863 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.864 [info] UploadPackV2: collected 17 objects, generating pack
16:27:03.865 [info] UploadPackV2: pack generated, 1276 bytes
16:27:03.865 [info] UploadPackV2: fetch response 1298 bytes
16:27:03.872 [info] UploadPackV2: processing fetch command
16:27:03.872 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.875 [info] UploadPackV2: collected 15 objects, generating pack
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
16:27:03.876 [info] UploadPackV2: pack generated, 1068 bytes
16:27:03.877 [info] UploadPackV2: fetch response 1090 bytes
16:27:03.885 [info] UploadPackV2: processing fetch command
16:27:03.885 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.886 [info] UploadPackV2: collected 9 objects, generating pack
16:27:03.887 [info] UploadPackV2: pack generated, 642 bytes
16:27:03.887 [info] UploadPackV2: fetch response 664 bytes
16:27:03.898 [info] UploadPackV2: processing fetch command
16:27:03.899 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.901 [info] UploadPackV2: collected 17 objects, generating pack
16:27:03.902 [info] UploadPackV2: pack generated, 1276 bytes
16:27:03.902 [info] UploadPackV2: fetch response 1298 bytes
16:27:03.909 [info] UploadPackV2: processing fetch command
16:27:03.910 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.911 [info] UploadPackV2: collected 20 objects, generating pack
16:27:03.912 [info] UploadPackV2: pack generated, 1492 bytes
16:27:03.912 [info] UploadPackV2: fetch response 1514 bytes
16:27:03.921 [info] UploadPackV2: processing fetch command
16:27:03.921 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.924 [info] UploadPackV2: collected 35 objects, generating pack
16:27:03.926 [info] UploadPackV2: pack generated, 2517 bytes
16:27:03.926 [info] UploadPackV2: fetch response 2539 bytes
16:27:03.948 [info] UploadPackV2: processing fetch command
16:27:03.948 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.949 [info] UploadPackV2: collected 3 objects, generating pack
16:27:03.949 [info] UploadPackV2: pack generated, 214 bytes
16:27:03.949 [info] UploadPackV2: fetch response 236 bytes
16:27:03.956 [info] UploadPackV2: processing fetch command
16:27:03.956 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.957 [info] UploadPackV2: collected 21 objects, generating pack
16:27:03.958 [info] UploadPackV2: pack generated, 1463 bytes
16:27:03.959 [info] UploadPackV2: fetch response 1485 bytes
16:27:03.972 [info] UploadPackV2: processing fetch command
16:27:03.972 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.973 [info] UploadPackV2: collected 3 objects, generating pack
16:27:03.973 [info] UploadPackV2: pack generated, 214 bytes
16:27:03.973 [info] UploadPackV2: fetch response 236 bytes
16:27:03.980 [info] UploadPackV2: processing fetch command
16:27:03.980 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.981 [info] UploadPackV2: collected 11 objects, generating pack
16:27:03.981 [info] UploadPackV2: pack generated, 851 bytes
16:27:03.982 [info] UploadPackV2: fetch response 873 bytes
16:27:03.995 [info] UploadPackV2: processing fetch command
16:27:03.996 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:03.999 [info] UploadPackV2: collected 29 objects, generating pack
16:27:04.000 [info] UploadPackV2: pack generated, 2099 bytes
16:27:04.001 [info] UploadPackV2: fetch response 2121 bytes
16:27:04.025 [info] UploadPackV2: processing fetch command
16:27:04.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.027 [info] UploadPackV2: collected 8 objects, generating pack
16:27:04.027 [info] UploadPackV2: pack generated, 636 bytes
16:27:04.027 [info] UploadPackV2: fetch response 658 bytes
16:27:04.036 [info] UploadPackV2: processing fetch command
16:27:04.036 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.039 [info] UploadPackV2: collected 44 objects, generating pack
16:27:04.040 [info] UploadPackV2: pack generated, 3150 bytes
16:27:04.040 [info] UploadPackV2: fetch response 3172 bytes
16:27:04.051 [info] UploadPackV2: processing fetch command
16:27:04.052 [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 "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
16:27:04.053 [info] UploadPackV2: collected 17 objects, generating pack
16:27:04.053 [info] UploadPackV2: pack generated, 1247 bytes
16:27:04.053 [info] UploadPackV2: fetch response 1269 bytes
16:27:04.063 [info] UploadPackV2: processing fetch command
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
16:27:04.063 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.066 [info] UploadPackV2: collected 47 objects, generating pack
16:27:04.067 [info] UploadPackV2: pack generated, 3345 bytes
16:27:04.067 [info] UploadPackV2: fetch response 3367 bytes
16:27:04.083 [info] UploadPackV2: processing fetch command
16:27:04.083 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.084 [info] UploadPackV2: collected 12 objects, generating pack
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
16:27:04.084 [info] UploadPackV2: pack generated, 854 bytes
16:27:04.084 [info] UploadPackV2: fetch response 876 bytes
16:27:04.088 [info] UploadPackV2: processing fetch command
16:27:04.088 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.089 [info] UploadPackV2: collected 11 objects, generating pack
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
16:27:04.090 [info] UploadPackV2: pack generated, 853 bytes
16:27:04.090 [info] UploadPackV2: fetch response 875 bytes
16:27:04.094 [info] UploadPackV2: processing fetch command
16:27:04.094 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.095 [info] UploadPackV2: collected 12 objects, generating pack
16:27:04.096 [info] UploadPackV2: pack generated, 854 bytes
16:27:04.096 [info] UploadPackV2: fetch response 876 bytes
16:27:04.101 [info] UploadPackV2: processing fetch command
16:27:04.101 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.101 [info] UploadPackV2: collected 3 objects, generating pack
16:27:04.101 [info] UploadPackV2: pack generated, 214 bytes
16:27:04.101 [info] UploadPackV2: fetch response 236 bytes
16:27:04.105 [info] UploadPackV2: processing fetch command
16:27:04.105 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.107 [info] UploadPackV2: collected 25 objects, generating pack
16:27:04.107 [info] UploadPackV2: pack generated, 1870 bytes
.
16:27:04.108 [info] UploadPackV2: fetch response 1892 bytes
.
16:27:04.117 [info] UploadPackV2: processing fetch command
.
16:27:04.154 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.155 [info] UploadPackV2: collected 20 objects, generating pack
.
16:27:04.155 [info] UploadPackV2: pack generated, 1490 bytes
.
16:27:04.156 [info] UploadPackV2: fetch response 1512 bytes
.
16:27:04.161 [info] UploadPackV2: processing fetch command
.
16:27:04.161 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.161 [info] UploadPackV2: collected 8 objects, generating pack
.
16:27:04.162 [info] UploadPackV2: pack generated, 636 bytes
.
16:27:04.162 [info] UploadPackV2: fetch response 658 bytes
.
16:27:04.165 [info] UploadPackV2: processing fetch command
.
16:27:04.165 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.167 [info] UploadPackV2: collected 17 objects, generating pack
.
16:27:04.167 [info] UploadPackV2: pack generated, 1233 bytes
.
16:27:04.167 [info] UploadPackV2: fetch response 1255 bytes
.
16:27:04.172 [info] UploadPackV2: processing fetch command
.
16:27:04.172 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.172 [info] UploadPackV2: collected 8 objects, generating pack
.
16:27:04.173 [info] UploadPackV2: pack generated, 639 bytes
.
16:27:04.173 [info] UploadPackV2: fetch response 661 bytes
.
16:27:04.178 [info] UploadPackV2: processing fetch command
.
16:27:04.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.180 [info] UploadPackV2: collected 28 objects, generating pack
.
16:27:04.180 [info] UploadPackV2: pack generated, 2085 bytes
.
16:27:04.181 [info] UploadPackV2: fetch response 2107 bytes
.
16:27:04.187 [info] UploadPackV2: processing fetch command
.
16:27:04.188 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.188 [info] UploadPackV2: collected 11 objects, generating pack
.
16:27:04.189 [info] UploadPackV2: pack generated, 851 bytes
.
16:27:04.189 [info] UploadPackV2: fetch response 873 bytes
.
16:27:04.194 [info] UploadPackV2: processing fetch command
.
16:27:04.194 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:27:04.196 [info] UploadPackV2: collected 16 objects, generating pack
.
16:27:04.196 [info] UploadPackV2: pack generated, 1231 bytes
.
16:27:04.197 [info] UploadPackV2: fetch response 1253 bytes
.
16:27:04.201 [info] UploadPackV2: processing fetch command
.
16:27:04.201 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:27:04.201 [info] UploadPackV2: collected 9 objects, generating pack
16:27:04.202 [info] UploadPackV2: pack generated, 642 bytes
16:27:04.202 [info] UploadPackV2: fetch response 664 bytes
16:27:04.206 [info] UploadPackV2: processing fetch command
16:27:04.206 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.207 [info] UploadPackV2: collected 4 objects, generating pack
16:27:04.207 [info] UploadPackV2: pack generated, 241 bytes
16:27:04.207 [info] UploadPackV2: fetch response 263 bytes
.
16:27:04.212 [info] UploadPackV2: processing fetch command
.
16:27:04.212 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.214 [info] UploadPackV2: collected 43 objects, generating pack
.
16:27:04.215 [info] UploadPackV2: pack generated, 2586 bytes
.
16:27:04.215 [info] UploadPackV2: fetch response 2608 bytes
.
16:27:04.223 [info] UploadPackV2: processing fetch command
.
16:27:04.223 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.224 [info] UploadPackV2: collected 23 objects, generating pack
.
16:27:04.225 [info] UploadPackV2: pack generated, 1437 bytes
.
16:27:04.226 [info] UploadPackV2: fetch response 1459 bytes
.
16:27:04.232 [info] UploadPackV2: processing fetch command
.
16:27:04.232 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.233 [info] UploadPackV2: collected 31 objects, generating pack
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
.
16:27:04.234 [info] UploadPackV2: pack generated, 1865 bytes
.
16:27:04.234 [info] UploadPackV2: fetch response 1887 bytes
.
16:27:04.241 [info] UploadPackV2: processing fetch command
.
16:27:04.241 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.243 [info] UploadPackV2: collected 30 objects, generating pack
.
16:27:04.244 [info] UploadPackV2: pack generated, 1859 bytes
.
16:27:04.244 [info] UploadPackV2: fetch response 1881 bytes
.
16:27:04.249 [info] UploadPackV2: processing fetch command
.
16:27:04.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.251 [info] UploadPackV2: collected 19 objects, generating pack
16:27:04.251 [info] UploadPackV2: pack generated, 1196 bytes
16:27:04.251 [info] UploadPackV2: fetch response 1218 bytes
16:27:04.255 [info] UploadPackV2: processing fetch command
16:27:04.495 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.498 [info] UploadPackV2: collected 16 objects, generating pack
16:27:04.499 [info] UploadPackV2: pack generated, 962 bytes
16:27:04.500 [info] UploadPackV2: fetch response 984 bytes
16:27:04.520 [info] UploadPackV2: processing fetch command
16:27:04.520 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.524 [info] UploadPackV2: collected 24 objects, generating pack
16:27:04.525 [info] UploadPackV2: pack generated, 1443 bytes
16:27:04.525 [info] UploadPackV2: fetch response 1465 bytes
16:27:04.532 [info] UploadPackV2: processing fetch command
16:27:04.532 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.534 [info] UploadPackV2: collected 20 objects, generating pack
16:27:04.534 [info] UploadPackV2: pack generated, 1171 bytes
16:27:04.534 [info] UploadPackV2: fetch response 1193 bytes
16:27:04.540 [info] UploadPackV2: processing fetch command
16:27:04.540 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.540 [info] UploadPackV2: collected 19 objects, generating pack
16:27:04.541 [info] UploadPackV2: pack generated, 1194 bytes
16:27:04.541 [info] UploadPackV2: fetch response 1216 bytes
16:27:04.553 [info] UploadPackV2: processing fetch command
16:27:04.553 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.559 [info] UploadPackV2: collected 27 objects, generating pack
16:27:04.561 [info] UploadPackV2: pack generated, 1627 bytes
16:27:04.562 [info] UploadPackV2: fetch response 1649 bytes
16:27:04.568 [info] UploadPackV2: processing fetch command
16:27:04.569 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.571 [info] UploadPackV2: collected 11 objects, generating pack
16:27:04.571 [info] UploadPackV2: pack generated, 717 bytes
16:27:04.571 [info] UploadPackV2: fetch response 739 bytes
16:27:04.575 [info] UploadPackV2: processing fetch command
16:27:04.575 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.576 [info] UploadPackV2: collected 23 objects, generating pack
16:27:04.577 [info] UploadPackV2: pack generated, 1435 bytes
16:27:04.577 [info] UploadPackV2: fetch response 1457 bytes
16:27:04.586 [info] UploadPackV2: processing fetch command
16:27:04.586 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.587 [info] UploadPackV2: collected 20 objects, generating pack
16:27:04.588 [info] UploadPackV2: pack generated, 1203 bytes
16:27:04.588 [info] UploadPackV2: fetch response 1225 bytes
16:27:04.592 [info] UploadPackV2: processing fetch command
16:27:04.593 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.593 [info] UploadPackV2: collected 12 objects, generating pack
16:27:04.594 [info] UploadPackV2: pack generated, 723 bytes
16:27:04.594 [info] UploadPackV2: fetch response 745 bytes
16:27:04.599 [info] UploadPackV2: processing fetch command
16:27:04.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.600 [info] UploadPackV2: collected 23 objects, generating pack
16:27:04.601 [info] UploadPackV2: pack generated, 1435 bytes
16:27:04.601 [info] UploadPackV2: fetch response 1457 bytes
16:27:04.608 [info] UploadPackV2: processing fetch command
16:27:04.608 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.609 [info] UploadPackV2: collected 27 objects, generating pack
16:27:04.610 [info] UploadPackV2: pack generated, 1678 bytes
16:27:04.610 [info] UploadPackV2: fetch response 1700 bytes
16:27:04.620 [info] UploadPackV2: processing fetch command
16:27:04.620 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.622 [info] UploadPackV2: collected 47 objects, generating pack
16:27:04.623 [info] UploadPackV2: pack generated, 2829 bytes
16:27:04.623 [info] UploadPackV2: fetch response 2851 bytes
16:27:04.634 [info] UploadPackV2: processing fetch command
16:27:04.634 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.634 [info] UploadPackV2: collected 4 objects, generating pack
16:27:04.634 [info] UploadPackV2: pack generated, 241 bytes
16:27:04.634 [info] UploadPackV2: fetch response 263 bytes
16:27:04.638 [info] UploadPackV2: processing fetch command
16:27:04.638 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.639 [info] UploadPackV2: collected 28 objects, generating pack
16:27:04.640 [info] UploadPackV2: pack generated, 1652 bytes
16:27:04.640 [info] UploadPackV2: fetch response 1674 bytes
16:27:04.644 [info] UploadPackV2: processing fetch command
16:27:04.644 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.645 [info] UploadPackV2: collected 4 objects, generating pack
.
16:27:04.645 [info] UploadPackV2: pack generated, 241 bytes
.
16:27:04.645 [info] UploadPackV2: fetch response 263 bytes
.
16:27:04.649 [info] UploadPackV2: processing fetch command
.
16:27:04.720 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
16:27:04.725 [info] UploadPackV2: collected 15 objects, generating pack
.
16:27:04.726 [info] UploadPackV2: pack generated, 956 bytes
.
16:27:04.727 [info] UploadPackV2: fetch response 978 bytes
.
16:27:04.751 [info] UploadPackV2: processing fetch command
.
16:27:04.751 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.769 [info] UploadPackV2: collected 39 objects, generating pack
16:27:04.770 [info] UploadPackV2: pack generated, 2366 bytes
16:27:04.774 [info] UploadPackV2: fetch response 2388 bytes
16:27:04.784 [info] UploadPackV2: processing fetch command
16:27:04.784 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.784 [info] UploadPackV2: collected 11 objects, generating pack
16:27:04.785 [info] UploadPackV2: pack generated, 714 bytes
16:27:04.785 [info] UploadPackV2: fetch response 736 bytes
16:27:04.790 [info] UploadPackV2: processing fetch command
16:27:04.790 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.799 [info] UploadPackV2: collected 59 objects, generating pack
16:27:04.801 [info] UploadPackV2: pack generated, 3543 bytes
16:27:04.801 [info] UploadPackV2: fetch response 3565 bytes
16:27:04.816 [info] UploadPackV2: processing fetch command
16:27:04.816 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.817 [info] UploadPackV2: collected 23 objects, generating pack
16:27:04.818 [info] UploadPackV2: pack generated, 1406 bytes
16:27:04.818 [info] UploadPackV2: fetch response 1428 bytes
16:27:04.836 [info] UploadPackV2: processing fetch command
16:27:04.836 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.844 [info] UploadPackV2: collected 63 objects, generating pack
16:27:04.846 [info] UploadPackV2: pack generated, 3774 bytes
16:27:04.846 [info] UploadPackV2: fetch response 3796 bytes
16:27:04.869 [info] UploadPackV2: processing fetch command
16:27:04.869 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.877 [info] UploadPackV2: collected 16 objects, generating pack
16:27:04.878 [info] UploadPackV2: pack generated, 962 bytes
16:27:04.878 [info] UploadPackV2: fetch response 984 bytes
16:27:04.892 [info] UploadPackV2: processing fetch command
16:27:04.892 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.904 [info] UploadPackV2: collected 15 objects, generating pack
16:27:04.905 [info] UploadPackV2: pack generated, 958 bytes
16:27:04.905 [info] UploadPackV2: fetch response 980 bytes
16:27:04.931 [info] UploadPackV2: processing fetch command
16:27:04.931 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.945 [info] UploadPackV2: collected 16 objects, generating pack
16:27:04.946 [info] UploadPackV2: pack generated, 962 bytes
16:27:04.947 [info] UploadPackV2: fetch response 984 bytes
16:27:04.953 [info] UploadPackV2: processing fetch command
16:27:04.953 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:04.954 [info] UploadPackV2: collected 4 objects, generating pack
16:27:04.954 [info] UploadPackV2: pack generated, 241 bytes
.
16:27:04.955 [info] UploadPackV2: fetch response 263 bytes
.
16:27:04.958 [info] UploadPackV2: processing fetch command
.
16:27:04.958 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.960 [info] UploadPackV2: collected 34 objects, generating pack
.
16:27:04.960 [info] UploadPackV2: pack generated, 2098 bytes
...
16:27:04.961 [info] UploadPackV2: fetch response 2120 bytes
.
16:27:04.980 [info] UploadPackV2: processing fetch command
.
16:27:04.980 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.983 [info] UploadPackV2: collected 27 objects, generating pack
.
16:27:04.984 [info] UploadPackV2: pack generated, 1676 bytes
.
16:27:04.984 [info] UploadPackV2: fetch response 1698 bytes
.
16:27:04.990 [info] UploadPackV2: processing fetch command
.
16:27:04.990 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:04.992 [info] UploadPackV2: collected 11 objects, generating pack
.
16:27:04.992 [info] UploadPackV2: pack generated, 714 bytes
.
16:27:04.992 [info] UploadPackV2: fetch response 736 bytes
.
16:27:05.005 [info] UploadPackV2: processing fetch command
.
16:27:05.005 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.007 [info] UploadPackV2: collected 23 objects, generating pack
16:27:05.007 [info] UploadPackV2: pack generated, 1383 bytes
16:27:05.008 [info] UploadPackV2: fetch response 1405 bytes
16:27:05.016 [info] UploadPackV2: processing fetch command
16:27:05.016 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.021 [info] UploadPackV2: collected 11 objects, generating pack
16:27:05.021 [info] UploadPackV2: pack generated, 717 bytes
16:27:05.022 [info] UploadPackV2: fetch response 739 bytes
16:27:05.033 [info] UploadPackV2: processing fetch command
16:27:05.034 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.035 [info] UploadPackV2: collected 38 objects, generating pack
16:27:05.036 [info] UploadPackV2: pack generated, 2340 bytes
16:27:05.036 [info] UploadPackV2: fetch response 2362 bytes
16:27:05.043 [info] UploadPackV2: processing fetch command
16:27:05.043 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.044 [info] UploadPackV2: collected 15 objects, generating pack
16:27:05.044 [info] UploadPackV2: pack generated, 956 bytes
16:27:05.044 [info] UploadPackV2: fetch response 978 bytes
16:27:05.052 [info] UploadPackV2: processing fetch command
16:27:05.052 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.059 [info] UploadPackV2: collected 22 objects, generating pack
16:27:05.059 [info] UploadPackV2: pack generated, 1378 bytes
16:27:05.061 [info] UploadPackV2: fetch response 1400 bytes
16:27:05.072 [info] UploadPackV2: processing fetch command
16:27:05.072 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.073 [info] UploadPackV2: collected 12 objects, generating pack
16:27:05.073 [info] UploadPackV2: pack generated, 723 bytes
.
16:27:05.073 [info] UploadPackV2: fetch response 745 bytes
.
16:27:05.077 [info] UploadPackV2: processing fetch command
.
16:27:05.077 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.078 [info] UploadPackV2: collected 27 objects, generating pack
.
16:27:05.079 [info] UploadPackV2: pack generated, 1624 bytes
.
16:27:05.079 [info] UploadPackV2: fetch response 1646 bytes
.
16:27:05.104 [info] UploadPackV2: processing fetch command
.
16:27:05.105 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.120 [info] UploadPackV2: collected 66 objects, generating pack
.
16:27:05.122 [info] UploadPackV2: pack generated, 4016 bytes
.
16:27:05.122 [info] UploadPackV2: fetch response 4038 bytes
.
16:27:05.135 [info] UploadPackV2: processing fetch command
.
16:27:05.196 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.202 [info] UploadPackV2: collected 16 objects, generating pack
.
16:27:05.203 [info] UploadPackV2: pack generated, 962 bytes
.
16:27:05.203 [info] UploadPackV2: fetch response 984 bytes
.
16:27:05.220 [info] UploadPackV2: processing fetch command
.
16:27:05.220 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.228 [info] UploadPackV2: collected 42 objects, generating pack
..................................
16:27:05.229 [info] UploadPackV2: pack generated, 2580 bytes
16:27:05.229 [info] UploadPackV2: fetch response 2602 bytes
16:27:05.243 [info] UploadPackV2: processing fetch command
.
16:27:05.244 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.249 [info] UploadPackV2: collected 47 objects, generating pack
.
16:27:05.251 [info] UploadPackV2: pack generated, 2828 bytes
.
16:27:05.251 [info] UploadPackV2: fetch response 2850 bytes
.
16:27:05.266 [info] UploadPackV2: processing fetch command
.
16:27:05.266 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.273 [info] UploadPackV2: collected 46 objects, generating pack
.
16:27:05.275 [info] UploadPackV2: pack generated, 2818 bytes
.
16:27:05.275 [info] UploadPackV2: fetch response 2840 bytes
.
16:27:05.287 [info] UploadPackV2: processing fetch command
.
16:27:05.287 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.289 [info] UploadPackV2: collected 15 objects, generating pack
.
16:27:05.289 [info] UploadPackV2: pack generated, 958 bytes
.
16:27:05.289 [info] UploadPackV2: fetch response 980 bytes
.
16:27:05.305 [info] UploadPackV2: processing fetch command
.
16:27:05.305 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.306 [info] UploadPackV2: collected 4 objects, generating pack
.
16:27:05.306 [info] UploadPackV2: pack generated, 241 bytes
.
16:27:05.306 [info] UploadPackV2: fetch response 263 bytes
.
16:27:05.340 [info] UploadPackV2: processing fetch command
.
16:27:05.340 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.340 [info] UploadPackV2: collected 4 objects, generating pack
.
16:27:05.340 [info] UploadPackV2: pack generated, 241 bytes
.
16:27:05.340 [info] UploadPackV2: fetch response 263 bytes
.
16:27:05.342 [info] UploadPackV2: processing fetch command
.
16:27:05.342 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.344 [info] UploadPackV2: collected 11 objects, generating pack
.
16:27:05.344 [info] UploadPackV2: pack generated, 717 bytes
.
16:27:05.345 [info] UploadPackV2: fetch response 739 bytes
.
16:27:05.349 [info] UploadPackV2: processing fetch command
.
16:27:05.349 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.350 [info] UploadPackV2: collected 30 objects, generating pack
.
16:27:05.351 [info] UploadPackV2: pack generated, 1860 bytes
.
16:27:05.351 [info] UploadPackV2: fetch response 1882 bytes
.
16:27:05.360 [info] UploadPackV2: processing fetch command
.
16:27:05.360 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.361 [info] UploadPackV2: collected 16 objects, generating pack
.
16:27:05.361 [info] UploadPackV2: pack generated, 962 bytes
.
16:27:05.361 [info] UploadPackV2: fetch response 984 bytes
.
16:27:05.364 [info] UploadPackV2: processing fetch command
.
16:27:05.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.365 [info] UploadPackV2: collected 20 objects, generating pack
.
16:27:05.366 [info] UploadPackV2: pack generated, 1203 bytes
.
16:27:05.366 [info] UploadPackV2: fetch response 1225 bytes
.
16:27:05.369 [info] UploadPackV2: processing fetch command
.
16:27:05.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.370 [info] UploadPackV2: collected 23 objects, generating pack
.
16:27:05.371 [info] UploadPackV2: pack generated, 1437 bytes
.
16:27:05.371 [info] UploadPackV2: fetch response 1459 bytes
.
16:27:05.375 [info] UploadPackV2: processing fetch command
.
16:27:05.375 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.377 [info] UploadPackV2: collected 47 objects, generating pack
.
16:27:05.378 [info] UploadPackV2: pack generated, 2848 bytes
.
16:27:05.378 [info] UploadPackV2: fetch response 2870 bytes
.
16:27:05.384 [info] UploadPackV2: processing fetch command
.
16:27:05.384 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.385 [info] UploadPackV2: collected 39 objects, generating pack
.
16:27:05.386 [info] UploadPackV2: pack generated, 2334 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
.
16:27:05.386 [info] UploadPackV2: fetch response 2356 bytes
.
16:27:05.391 [info] UploadPackV2: processing fetch command
.
16:27:05.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.392 [info] UploadPackV2: collected 35 objects, generating pack
.
16:27:05.393 [info] UploadPackV2: pack generated, 2126 bytes
.
16:27:05.393 [info] UploadPackV2: fetch response 2148 bytes
.
16:27:05.397 [info] UploadPackV2: processing fetch command
.
16:27:05.397 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.398 [info] UploadPackV2: collected 19 objects, generating pack
.
16:27:05.398 [info] UploadPackV2: pack generated, 1196 bytes
.
16:27:05.398 [info] UploadPackV2: fetch response 1218 bytes
.
16:27:05.403 [info] UploadPackV2: processing fetch command
.
16:27:05.403 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.405 [info] UploadPackV2: collected 59 objects, generating pack
.
16:27:05.406 [info] UploadPackV2: pack generated, 3545 bytes
.
16:27:05.406 [info] UploadPackV2: fetch response 3567 bytes
.
16:27:05.412 [info] UploadPackV2: processing fetch command
.
16:27:05.412 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.413 [info] UploadPackV2: collected 20 objects, generating pack
.
16:27:05.413 [info] UploadPackV2: pack generated, 1142 bytes
.
16:27:05.413 [info] UploadPackV2: fetch response 1164 bytes
.
16:27:05.417 [info] UploadPackV2: processing fetch command
.
16:27:05.417 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
.
16:27:05.418 [info] UploadPackV2: collected 30 objects, generating pack
.
16:27:05.419 [info] UploadPackV2: pack generated, 1859 bytes
.
16:27:05.419 [info] UploadPackV2: fetch response 1881 bytes
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
.
16:27:05.424 [info] UploadPackV2: processing fetch command
.
16:27:05.424 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.424 [info] UploadPackV2: collected 27 objects, generating pack
.
16:27:05.425 [info] UploadPackV2: pack generated, 1676 bytes
.
16:27:05.425 [info] UploadPackV2: fetch response 1698 bytes
.
16:27:05.429 [info] UploadPackV2: processing fetch command
.
16:27:05.429 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.429 [info] UploadPackV2: collected 20 objects, generating pack
.
16:27:05.430 [info] UploadPackV2: pack generated, 1203 bytes
.
16:27:05.430 [info] UploadPackV2: fetch response 1225 bytes
16:27:05.433 [info] UploadPackV2: processing fetch command
.
16:27:05.433 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.434 [info] UploadPackV2: collected 19 objects, generating pack
.
16:27:05.434 [info] UploadPackV2: pack generated, 1196 bytes
.
16:27:05.434 [info] UploadPackV2: fetch response 1218 bytes
.
16:27:05.438 [info] UploadPackV2: processing fetch command
.
16:27:05.438 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.439 [info] UploadPackV2: collected 34 objects, generating pack
.
16:27:05.440 [info] UploadPackV2: pack generated, 2099 bytes
.
16:27:05.440 [info] UploadPackV2: fetch response 2121 bytes
.
16:27:05.444 [info] UploadPackV2: processing fetch command
.
16:27:05.444 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:05.444 [info] UploadPackV2: collected 15 objects, generating pack
16:27:05.445 [info] UploadPackV2: pack generated, 958 bytes
.
16:27:05.445 [info] UploadPackV2: fetch response 980 bytes
.
16:27:05.447 [info] UploadPackV2: processing fetch command
.
16:27:05.447 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.447 [info] UploadPackV2: collected 8 objects, generating pack
.
16:27:05.447 [info] UploadPackV2: pack generated, 482 bytes
.
16:27:05.448 [info] UploadPackV2: fetch response 504 bytes
.
16:27:05.450 [info] UploadPackV2: processing fetch command
.
16:27:05.450 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.451 [info] UploadPackV2: collected 31 objects, generating pack
.
16:27:05.452 [info] UploadPackV2: pack generated, 1861 bytes
.
16:27:05.452 [info] UploadPackV2: fetch response 1883 bytes
.
16:27:05.455 [info] UploadPackV2: processing fetch command
.
16:27:05.456 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.456 [info] UploadPackV2: collected 24 objects, generating pack
.
16:27:05.457 [info] UploadPackV2: pack generated, 1443 bytes
.
16:27:05.457 [info] UploadPackV2: fetch response 1465 bytes
.
16:27:05.461 [info] UploadPackV2: processing fetch command
.
16:27:05.461 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.461 [info] UploadPackV2: collected 15 objects, generating pack
.
16:27:05.462 [info] UploadPackV2: pack generated, 956 bytes
.
16:27:05.462 [info] UploadPackV2: fetch response 978 bytes
.
16:27:05.466 [info] UploadPackV2: processing fetch command
.
16:27:05.466 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.467 [info] UploadPackV2: collected 24 objects, generating pack
.
16:27:05.467 [info] UploadPackV2: pack generated, 1443 bytes
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
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: 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)
.
16:27:05.467 [info] UploadPackV2: fetch response 1465 bytes
.
16:27:05.471 [info] UploadPackV2: processing fetch command
.
16:27:05.471 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.472 [info] UploadPackV2: collected 18 objects, generating pack
.
16:27:05.472 [info] UploadPackV2: pack generated, 1140 bytes
.
16:27:05.472 [info] UploadPackV2: fetch response 1162 bytes
.
16:27:05.477 [info] UploadPackV2: processing fetch command
.
16:27:05.477 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.478 [info] UploadPackV2: collected 32 objects, generating pack
.
16:27:05.478 [info] UploadPackV2: pack generated, 1893 bytes
.
16:27:05.478 [info] UploadPackV2: fetch response 1915 bytes
..
16:27:05.483 [info] UploadPackV2: processing fetch command
.
16:27:05.483 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.484 [info] UploadPackV2: collected 42 objects, generating pack
.
16:27:05.485 [info] UploadPackV2: pack generated, 2577 bytes
.
16:27:05.485 [info] UploadPackV2: fetch response 2599 bytes
.
16:27:05.490 [info] UploadPackV2: processing fetch command
.
16:27:05.490 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.491 [info] UploadPackV2: collected 27 objects, generating pack
.
16:27:05.492 [info] UploadPackV2: pack generated, 1646 bytes
.
16:27:05.492 [info] UploadPackV2: fetch response 1668 bytes
.
16:27:05.496 [info] UploadPackV2: processing fetch command
.
16:27:05.496 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.496 [info] UploadPackV2: collected 27 objects, generating pack
.
16:27:05.497 [info] UploadPackV2: pack generated, 1678 bytes
.
16:27:05.497 [info] UploadPackV2: fetch response 1700 bytes
.
16:27:05.502 [info] UploadPackV2: processing fetch command
.
16:27:05.502 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.503 [info] UploadPackV2: collected 31 objects, generating pack
.
16:27:05.503 [info] UploadPackV2: pack generated, 1866 bytes
.
16:27:05.504 [info] UploadPackV2: fetch response 1888 bytes
.
16:27:05.507 [info] UploadPackV2: processing fetch command
.
16:27:05.507 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.507 [info] UploadPackV2: collected 8 objects, generating pack
.
16:27:05.507 [info] UploadPackV2: pack generated, 482 bytes
.
16:27:05.507 [info] UploadPackV2: fetch response 504 bytes
.
16:27:05.510 [info] UploadPackV2: processing fetch command
.
16:27:05.510 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.510 [info] UploadPackV2: collected 11 objects, generating pack
.
16:27:05.511 [info] UploadPackV2: pack generated, 714 bytes
.
16:27:05.511 [info] UploadPackV2: fetch response 736 bytes
.
16:27:05.513 [info] UploadPackV2: processing fetch command
.
16:27:05.513 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:05.514 [info] UploadPackV2: collected 31 objects, generating pack
.
16:27:05.515 [info] UploadPackV2: pack generated, 1866 bytes
.
16:27:05.515 [info] UploadPackV2: fetch response 1888 bytes
.
16:27:07.194 [warning] post_receive hook failed: "webhook failed"
......................................................
16:27:08.929 [info] The function passed as a handler with ID #Reference<0.3327248799.3900178434.179097> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "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: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
.............................................................................................................................................................................................
16:27:11.033 [info] The function passed as a handler with ID #Reference<0.3327248799.3900178434.181979> 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 "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: the variable "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)
.............................................................................................................................
16:27:12.107 [info] UploadPackV2: processing fetch command
.
16:27:12.108 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:12.108 [info] UploadPackV2: collected 3 objects, generating pack
.
16:27:12.108 [info] UploadPackV2: pack generated, 191 bytes
16:27:12.108 [info] UploadPackV2: fetch response 213 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
16:27:12.109 [info] UploadPackV2: processing fetch command
16:27:12.109 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.109 [info] UploadPackV2: collected 3 objects, generating pack
16:27:12.109 [info] UploadPackV2: pack generated, 191 bytes
16:27:12.109 [info] UploadPackV2: fetch response 213 bytes
16:27:12.110 [info] UploadPackV2: processing ls-refs command
16:27:12.118 [info] UploadPackV2: processing fetch command
16:27:12.118 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.119 [info] UploadPackV2: collected 3 objects, streaming pack
16:27:12.124 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
16:27:12.124 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
.
16:27:12.139 [info] UploadPackV2: processing fetch command
16:27:12.139 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.142 [info] UploadPackV2: collected 90 objects, generating pack
16:27:12.147 [info] UploadPackV2: pack generated, 5946 bytes
16:27:12.147 [info] UploadPackV2: fetch response 5968 bytes
.
16:27:12.208 [info] UploadPackV2: processing fetch command
16:27:12.209 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.259 [info] UploadPackV2: collected 700 objects, generating pack
16:27:12.275 [info] UploadPackV2: pack generated, 48139 bytes
16:27:12.275 [info] UploadPackV2: fetch response 48161 bytes
..................
16:27:12.382 [info] UploadPackV2: processing ls-refs command
.
16:27:12.383 [info] UploadPackV2: processing fetch command
.
16:27:12.383 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:12.383 [info] UploadPackV2: collected 3 objects, generating pack
.
16:27:12.384 [info] UploadPackV2: pack generated, 210 bytes
.
16:27:12.385 [info] UploadPackV2: fetch response 232 bytes
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
..
16:27:12.438 [info] UploadPackV2: processing ls-refs command
16:27:12.439 [info] UploadPackV2: processing fetch command
16:27:12.439 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.439 [info] UploadPackV2: collected 3 objects, generating pack
16:27:12.440 [info] UploadPackV2: pack generated, 206 bytes
16:27:12.440 [info] UploadPackV2: fetch response 228 bytes
.
16:27:12.441 [info] UploadPackV2: processing fetch command
16:27:12.441 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.442 [info] UploadPackV2: collected 3 objects, generating pack
16:27:12.442 [info] UploadPackV2: pack generated, 223 bytes
16:27:12.442 [info] UploadPackV2: fetch response 245 bytes
.
16:27:12.443 [info] UploadPackV2: processing fetch command
16:27:12.443 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.444 [info] UploadPackV2: collected 3 objects, generating pack
.
16:27:12.444 [info] UploadPackV2: pack generated, 191 bytes
16:27:12.444 [info] UploadPackV2: fetch response 213 bytes
....
16:27:12.577 [info] UploadPackV2: processing fetch command
16:27:12.578 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.589 [info] UploadPackV2: collected 32 objects, streaming pack
.......
16:27:12.729 [info] UploadPackV2: streamed pack 2459749 bytes, 32 objects
16:27:12.729 [info] UploadPackV2: fetch streamed 2459749 pack bytes, 32 objects
........
16:27:12.782 [info] UploadPackV2: processing ls-refs command
.
16:27:12.785 [info] UploadPackV2: processing fetch command
16:27:12.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.786 [info] UploadPackV2: collected 15 objects, generating pack
16:27:12.787 [info] UploadPackV2: pack generated, 984 bytes
16:27:12.787 [info] UploadPackV2: fetch response 1006 bytes
16:27:12.787 [info] UploadPackV2: processing fetch command
16:27:12.787 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.788 [info] UploadPackV2: collected 15 objects, streaming pack
16:27:12.789 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
16:27:12.789 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
16:27:12.791 [info] UploadPackV2: processing fetch command
.
16:27:12.791 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.792 [info] UploadPackV2: collected 3 objects, generating pack
16:27:12.792 [info] UploadPackV2: pack generated, 195 bytes
16:27:12.792 [info] UploadPackV2: fetch response 217 bytes
16:27:12.794 [info] UploadPackV2: processing fetch command
16:27:12.795 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.796 [info] UploadPackV2: collected 15 objects, generating pack
16:27:12.796 [info] UploadPackV2: pack generated, 984 bytes
16:27:12.796 [info] UploadPackV2: fetch response 1006 bytes
.
16:27:12.799 [info] UploadPackV2: processing fetch command
16:27:12.799 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.799 [info] UploadPackV2: collected 3 objects, generating pack
16:27:12.799 [info] UploadPackV2: pack generated, 195 bytes
.
16:27:12.799 [info] UploadPackV2: fetch response 217 bytes
16:27:12.801 [info] UploadPackV2: processing fetch command
16:27:12.801 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.802 [info] UploadPackV2: collected 9 objects, streaming pack
16:27:12.803 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
16:27:12.803 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
..
16:27:12.851 [info] UploadPackV2: processing fetch command
16:27:12.851 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
16:27:12.874 [info] UploadPackV2: collected 600 objects, generating pack
.......................
16:27:12.890 [info] UploadPackV2: pack generated, 39862 bytes
.
16:27:12.891 [info] UploadPackV2: fetch response 39884 bytes
....
16:27:12.930 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
..
16:27:12.932 [info] UploadPackV2: processing fetch command
16:27:12.932 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.932 [info] UploadPackV2: collected 6 objects, generating pack
16:27:12.933 [info] UploadPackV2: pack generated, 414 bytes
16:27:12.933 [info] UploadPackV2: fetch response 436 bytes
.
16:27:12.934 [info] UploadPackV2: processing fetch command
16:27:12.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:12.935 [info] UploadPackV2: collected 3 objects, streaming pack
16:27:12.935 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
16:27:12.935 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
16:27:12.936 [info] UploadPackV2: processing fetch command
.
16:27:12.936 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:12.936 [info] UploadPackV2: collected 0 objects, generating pack
16:27:12.936 [info] UploadPackV2: pack generated, 32 bytes
16:27:12.936 [info] UploadPackV2: fetch response 54 bytes
16:27:12.936 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
...............
16:27:13.056 [info] UploadPackV2: processing fetch command
16:27:13.056 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:13.063 [info] UploadPackV2: collected 32 objects, generating pack
..
16:27:13.157 [info] UploadPackV2: pack generated, 2459816 bytes
.
16:27:13.160 [info] UploadPackV2: fetch response 2460023 bytes
16:27:13.160 [info] UploadPackV2: processing fetch command
16:27:13.160 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:27:13.165 [info] UploadPackV2: collected 32 objects, streaming pack
.
16:27:13.246 [info] UploadPackV2: streamed pack 2459816 bytes, 32 objects
16:27:13.246 [info] UploadPackV2: fetch streamed 2459816 pack bytes, 32 objects
16:27:13.248 [info] UploadPackV2: processing ls-refs command
16:27:13.248 [info] UploadPackV2: processing ls-refs command
16:27:13.251 [info] UploadPackV2: processing fetch command
16:27:13.251 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:27:13.252 [info] UploadPackV2: fetch response 73 bytes
.
16:27:13.252 [info] UploadPackV2: processing fetch command
16:27:13.252 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:27:13.252 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
16:27:13.253 [info] UploadPackV2: processing fetch command
16:27:13.253 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:13.253 [info] UploadPackV2: collected 3 objects, generating pack
16:27:13.254 [info] UploadPackV2: pack generated, 194 bytes
16:27:13.254 [info] UploadPackV2: fetch response 216 bytes
..
16:27:13.395 [info] UploadPackV2: processing fetch command
16:27:13.395 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:13.401 [info] UploadPackV2: reused pack 12018 bytes, 160 objects
16:27:13.401 [info] UploadPackV2: fetch response 12040 bytes
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")
│ ~
...................
16:27:14.387 [info] UploadPackV2: processing fetch command
16:27:14.387 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
│
└─ test/ex_git_objectstore/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
16:27:14.397 [info] UploadPackV2: collected 163 objects, generating pack
16:27:14.405 [info] UploadPackV2: pack generated, 15090 bytes
16:27:14.405 [info] UploadPackV2: fetch response 15112 bytes
........
16:27:14.997 [info] UploadPackV2: processing fetch command
16:27:14.997 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:15.001 [info] UploadPackV2: reused pack 12024 bytes, 160 objects
16:27:15.001 [info] UploadPackV2: fetch response 12046 bytes
..............
16:27:30.318 [info] UploadPackV2: processing ls-refs command
16:27:30.319 [info] UploadPackV2: processing fetch command
16:27:30.320 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:30.320 [info] UploadPackV2: collected 3 objects, generating pack
16:27:30.320 [info] UploadPackV2: pack generated, 201 bytes
16:27:30.320 [info] UploadPackV2: fetch response 223 bytes
.
16:27:45.446 [info] UploadPackV2: processing ls-refs command
16:27:45.447 [info] UploadPackV2: processing fetch command
16:27:45.447 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:27:45.448 [info] UploadPackV2: collected 3 objects, generating pack
16:27:45.448 [info] UploadPackV2: pack generated, 183 bytes
16:27:45.448 [info] UploadPackV2: fetch response 205 bytes
.
16:28:00.574 [info] UploadPackV2: processing ls-refs command
16:28:00.576 [info] UploadPackV2: processing fetch command
16:28:00.576 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:28:00.576 [info] UploadPackV2: collected 6 objects, generating pack
16:28:00.576 [info] UploadPackV2: pack generated, 365 bytes
16:28:00.577 [info] UploadPackV2: fetch response 387 bytes
...
16:28:30.826 [info] UploadPackV2: processing ls-refs command
16:28:30.827 [info] UploadPackV2: processing fetch command
16:28:30.828 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:28:30.828 [info] UploadPackV2: collected 6 objects, generating pack
16:28:30.829 [info] UploadPackV2: pack generated, 365 bytes
16:28:30.829 [info] UploadPackV2: fetch response 387 bytes
....
16:29:31.186 [info] UploadPackV2: processing ls-refs command
16:29:31.187 [info] UploadPackV2: processing fetch command
16:29:31.188 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.188 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.188 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.188 [info] UploadPackV2: fetch response 205 bytes
.***********
16:29:31.248 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303409821" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:31.248 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303409789" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:29:31.249 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303416863" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:31.249 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303416831" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:29:31.250 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303416799" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:31.250 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303416767" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:29:31.251 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303416735" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:31.251 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303416703" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.*****
16:29:31.358 [info] UploadPackV2: processing ls-refs command
16:29:31.359 [info] UploadPackV2: processing fetch command
16:29:31.359 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.381 [info] UploadPackV2: collected 600 objects, generating pack
16:29:31.400 [info] UploadPackV2: pack generated, 45197 bytes
16:29:31.400 [info] UploadPackV2: fetch response 45219 bytes
.
16:29:31.434 [info] UploadPackV2: processing fetch command
16:29:31.434 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.434 [info] UploadPackV2: collected 0 objects, generating pack
16:29:31.434 [info] UploadPackV2: pack generated, 32 bytes
16:29:31.434 [info] UploadPackV2: fetch response 54 bytes
.
16:29:31.746 [info] UploadPackV2: processing ls-refs command
16:29:31.747 [info] UploadPackV2: processing fetch command
16:29:31.747 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:31.748 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.748 [info] UploadPackV2: pack generated, 231 bytes
16:29:31.748 [info] UploadPackV2: fetch response 327 bytes
.
16:29:31.806 [info] UploadPackV2: processing ls-refs command
.
16:29:31.807 [info] UploadPackV2: processing fetch command
16:29:31.807 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.808 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.808 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.808 [info] UploadPackV2: fetch response 205 bytes
16:29:31.808 [info] UploadPackV2: processing fetch command
16:29:31.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.808 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.809 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.809 [info] UploadPackV2: fetch response 205 bytes
16:29:31.809 [info] UploadPackV2: processing fetch command
16:29:31.809 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.809 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.809 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.809 [info] UploadPackV2: fetch response 205 bytes
16:29:31.809 [info] UploadPackV2: processing fetch command
16:29:31.809 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.809 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.810 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.810 [info] UploadPackV2: fetch response 205 bytes
16:29:31.810 [info] UploadPackV2: processing fetch command
16:29:31.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.810 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.810 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.810 [info] UploadPackV2: fetch response 205 bytes
16:29:31.810 [info] UploadPackV2: processing fetch command
16:29:31.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.811 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.811 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.811 [info] UploadPackV2: fetch response 205 bytes
16:29:31.811 [info] UploadPackV2: processing fetch command
16:29:31.811 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.811 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.811 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.811 [info] UploadPackV2: fetch response 205 bytes
16:29:31.811 [info] UploadPackV2: processing fetch command
16:29:31.811 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.811 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.811 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.812 [info] UploadPackV2: fetch response 205 bytes
16:29:31.812 [info] UploadPackV2: processing fetch command
16:29:31.813 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.813 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.813 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.813 [info] UploadPackV2: fetch response 205 bytes
16:29:31.813 [info] UploadPackV2: processing fetch command
16:29:31.813 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.813 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.813 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.813 [info] UploadPackV2: fetch response 205 bytes
16:29:31.813 [info] UploadPackV2: processing fetch command
16:29:31.813 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.814 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.814 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.814 [info] UploadPackV2: fetch response 205 bytes
16:29:31.814 [info] UploadPackV2: processing fetch command
16:29:31.814 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.814 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.814 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.814 [info] UploadPackV2: fetch response 205 bytes
16:29:31.814 [info] UploadPackV2: processing fetch command
16:29:31.814 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.815 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.815 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.815 [info] UploadPackV2: fetch response 205 bytes
16:29:31.815 [info] UploadPackV2: processing fetch command
16:29:31.815 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.816 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.816 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.816 [info] UploadPackV2: fetch response 205 bytes
16:29:31.816 [info] UploadPackV2: processing fetch command
16:29:31.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.816 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.816 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.816 [info] UploadPackV2: fetch response 205 bytes
16:29:31.816 [info] UploadPackV2: processing fetch command
16:29:31.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.817 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.817 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.817 [info] UploadPackV2: fetch response 205 bytes
16:29:31.817 [info] UploadPackV2: processing fetch command
16:29:31.817 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.817 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.817 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.817 [info] UploadPackV2: fetch response 205 bytes
16:29:31.817 [info] UploadPackV2: processing fetch command
16:29:31.817 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.817 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.818 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.818 [info] UploadPackV2: fetch response 205 bytes
16:29:31.818 [info] UploadPackV2: processing fetch command
16:29:31.818 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.818 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.818 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.818 [info] UploadPackV2: fetch response 205 bytes
16:29:31.818 [info] UploadPackV2: processing fetch command
16:29:31.818 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:29:31.818 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.819 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.819 [info] UploadPackV2: fetch response 205 bytes
16:29:31.819 [info] UploadPackV2: processing fetch command
16:29:31.819 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.819 [info] UploadPackV2: collected 3 objects, generating pack
16:29:31.819 [info] UploadPackV2: pack generated, 183 bytes
16:29:31.819 [info] UploadPackV2: fetch response 205 bytes
16:29:31.878 [info] UploadPackV2: processing ls-refs command
16:29:31.879 [info] UploadPackV2: processing fetch command
16:29:31.879 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:31.885 [info] UploadPackV2: collected 240 objects, generating pack
16:29:31.889 [info] UploadPackV2: pack generated, 16258 bytes
16:29:31.889 [info] UploadPackV2: fetch response 16280 bytes
.
16:29:31.958 [info] UploadPackV2: processing ls-refs command
.....
16:29:33.187 [info] The function passed as a handler with ID "telemetry-test-17987" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:33.188 [info] UploadPackV2: processing fetch command
16:29:33.188 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:33.188 [info] UploadPackV2: collected 3 objects, generating pack
16:29:33.188 [info] UploadPackV2: pack generated, 183 bytes
16:29:33.188 [info] UploadPackV2: fetch response 205 bytes
.
16:29:33.188 [info] The function passed as a handler with ID "telemetry-test-9442" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:33.189 [info] UploadPackV2: processing fetch command
16:29:33.189 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:29:33.189 [info] UploadPackV2: collected 2 objects, generating pack
16:29:33.189 [info] UploadPackV2: pack generated, 169 bytes
.
16:29:33.189 [info] UploadPackV2: fetch response 191 bytes
16:29:33.190 [info] The function passed as a handler with ID "telemetry-test-9474" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
16:29:33.190 [info] UploadPackV2: processing fetch command
16:29:33.190 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:33.191 [info] UploadPackV2: collected 3 objects, generating pack
16:29:33.191 [info] UploadPackV2: pack generated, 186 bytes
.
16:29:33.191 [info] UploadPackV2: fetch response 208 bytes
16:29:33.194 [info] The function passed as a handler with ID "telemetry-test-13732" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:29:48.314 [info] UploadPackV2: processing ls-refs command
16:29:48.317 [info] UploadPackV2: processing fetch command
16:29:48.317 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:29:48.318 [info] UploadPackV2: collected 6 objects, generating pack
16:29:48.318 [info] UploadPackV2: pack generated, 513 bytes
16:29:48.318 [info] UploadPackV2: fetch response 535 bytes
.
16:29:48.390 [info] UploadPackV2: processing ls-refs command
16:29:48.393 [info] UploadPackV2: processing fetch command
16:29:48.393 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
16:29:48.394 [info] UploadPackV2: collected 3 objects, generating pack
16:29:48.394 [info] UploadPackV2: pack generated, 381 bytes
16:29:48.394 [info] UploadPackV2: fetch response 403 bytes
.
16:29:48.458 [info] UploadPackV2: processing ls-refs command
.
16:29:48.514 [info] UploadPackV2: processing ls-refs command
16:29:48.515 [info] UploadPackV2: processing fetch command
16:29:48.515 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:48.516 [info] UploadPackV2: collected 3 objects, generating pack
16:29:48.516 [info] UploadPackV2: pack generated, 216 bytes
16:29:48.516 [info] UploadPackV2: fetch response 312 bytes
16:29:48.574 [info] UploadPackV2: processing ls-refs command
16:29:48.575 [info] UploadPackV2: processing fetch command
16:29:48.575 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:48.575 [info] UploadPackV2: collected 12 objects, generating pack
16:29:48.576 [info] UploadPackV2: pack generated, 768 bytes
16:29:48.576 [info] UploadPackV2: fetch response 1002 bytes
.
16:29:48.638 [info] UploadPackV2: processing ls-refs command
16:29:48.641 [info] UploadPackV2: processing fetch command
16:29:48.641 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:combine, [:blob_none, {:tree_depth, 1}]}, send_packfile=true
16:29:48.642 [info] UploadPackV2: collected 6 objects, generating pack
16:29:48.643 [info] UploadPackV2: pack generated, 513 bytes
16:29:48.643 [info] UploadPackV2: fetch response 535 bytes
.
16:29:48.714 [info] UploadPackV2: processing ls-refs command
16:29:48.716 [info] UploadPackV2: processing fetch command
16:29:48.716 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:48.717 [info] UploadPackV2: collected 9 objects, generating pack
16:29:48.717 [info] UploadPackV2: pack generated, 585 bytes
16:29:48.717 [info] UploadPackV2: fetch response 681 bytes
.
16:29:48.790 [info] UploadPackV2: processing ls-refs command
16:29:48.793 [info] UploadPackV2: processing fetch command
16:29:48.793 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
16:29:48.794 [info] UploadPackV2: collected 3 objects, generating pack
16:29:48.794 [info] UploadPackV2: pack generated, 381 bytes
16:29:48.794 [info] UploadPackV2: fetch response 403 bytes
.
16:29:48.862 [info] UploadPackV2: processing ls-refs command
.
16:29:48.922 [info] UploadPackV2: processing ls-refs command
16:29:48.923 [info] UploadPackV2: processing fetch command
16:29:48.924 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:48.924 [info] UploadPackV2: collected 3 objects, generating pack
16:29:48.924 [info] UploadPackV2: pack generated, 216 bytes
16:29:48.924 [info] UploadPackV2: fetch response 312 bytes
.
16:29:48.994 [info] UploadPackV2: processing ls-refs command
16:29:48.995 [info] UploadPackV2: processing fetch command
16:29:48.996 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:29:48.996 [info] UploadPackV2: collected 3 objects, generating pack
16:29:48.996 [info] UploadPackV2: pack generated, 218 bytes
16:29:48.996 [info] UploadPackV2: fetch response 314 bytes
..
16:29:49.070 [info] UploadPackV2: processing ls-refs command
16:29:49.073 [info] UploadPackV2: processing fetch command
16:29:49.073 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
16:29:49.074 [info] UploadPackV2: collected 5 objects, generating pack
16:29:49.074 [info] UploadPackV2: pack generated, 319 bytes
16:29:49.074 [info] UploadPackV2: fetch response 341 bytes
..
16:29:49.150 [info] UploadPackV2: processing ls-refs command
16:29:49.151 [info] UploadPackV2: processing fetch command
16:29:49.151 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:49.152 [info] UploadPackV2: collected 9 objects, generating pack
16:29:49.152 [info] UploadPackV2: pack generated, 549 bytes
16:29:49.153 [info] UploadPackV2: fetch response 571 bytes
16:29:49.169 [info] UploadPackV2: processing fetch command
16:29:49.169 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
16:29:49.169 [info] UploadPackV2: fetch response 171 bytes
.
16:29:49.214 [info] UploadPackV2: processing ls-refs command
.
16:29:49.270 [info] UploadPackV2: processing ls-refs command
...................
16:29:49.370 [info] UploadPackV2: processing ls-refs command
16:29:49.372 [info] UploadPackV2: processing fetch command
16:29:49.372 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:29:49.372 [info] UploadPackV2: collected 6 objects, generating pack
16:29:49.373 [info] UploadPackV2: pack generated, 365 bytes
16:29:49.373 [info] UploadPackV2: fetch response 387 bytes
.
16:30:04.442 [info] UploadPackV2: processing ls-refs command
16:30:04.443 [info] UploadPackV2: processing fetch command
16:30:04.443 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:30:04.443 [info] UploadPackV2: collected 3 objects, generating pack
16:30:04.443 [info] UploadPackV2: pack generated, 216 bytes
16:30:04.443 [info] UploadPackV2: fetch response 346 bytes
.
16:30:04.451 [info] UploadPackV2: processing fetch command
16:30:04.451 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:04.451 [info] UploadPackV2: collected 3 objects, generating pack
16:30:04.452 [info] UploadPackV2: pack generated, 183 bytes
16:30:04.452 [info] UploadPackV2: fetch response 205 bytes
.
16:30:04.510 [info] UploadPackV2: processing ls-refs command
16:30:04.510 [info] UploadPackV2: processing ls-refs command
16:30:04.512 [info] UploadPackV2: processing fetch command
16:30:04.512 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:04.512 [info] UploadPackV2: processing fetch command
16:30:04.512 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:04.513 [info] UploadPackV2: collected 6 objects, generating pack
16:30:04.513 [info] UploadPackV2: collected 6 objects, generating pack
16:30:04.513 [info] UploadPackV2: pack generated, 365 bytes
16:30:04.513 [info] UploadPackV2: pack generated, 365 bytes
16:30:04.513 [info] UploadPackV2: fetch response 387 bytes
16:30:04.513 [info] UploadPackV2: fetch response 387 bytes
.
16:30:04.594 [info] UploadPackV2: processing ls-refs command
16:30:04.596 [info] UploadPackV2: processing fetch command
16:30:04.596 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:04.596 [info] UploadPackV2: collected 9 objects, generating pack
16:30:04.597 [info] UploadPackV2: pack generated, 547 bytes
16:30:04.597 [info] UploadPackV2: fetch response 569 bytes
16:30:04.666 [info] UploadPackV2: processing ls-refs command
.
16:30:04.726 [info] UploadPackV2: processing ls-refs command
16:30:04.727 [info] UploadPackV2: processing fetch command
16:30:04.727 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:04.728 [info] UploadPackV2: collected 6 objects, generating pack
16:30:04.728 [info] UploadPackV2: pack generated, 365 bytes
16:30:04.728 [info] UploadPackV2: fetch response 387 bytes
16:30:04.745 [info] UploadPackV2: processing fetch command
16:30:04.745 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
16:30:04.745 [info] UploadPackV2: fetch response 122 bytes
.
16:30:04.874 [info] UploadPackV2: processing ls-refs command
16:30:04.876 [info] UploadPackV2: processing fetch command
16:30:04.876 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:04.877 [info] UploadPackV2: collected 6 objects, generating pack
16:30:04.877 [info] UploadPackV2: pack generated, 365 bytes
16:30:04.877 [info] UploadPackV2: fetch response 387 bytes
16:30:06.834 [info] UploadPackV2: processing ls-refs command
.
16:30:06.890 [info] UploadPackV2: processing ls-refs command
16:30:06.891 [info] UploadPackV2: processing fetch command
16:30:06.891 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:06.892 [info] UploadPackV2: collected 6 objects, generating pack
16:30:06.892 [info] UploadPackV2: pack generated, 366 bytes
16:30:06.892 [info] UploadPackV2: fetch response 388 bytes
16:30:06.966 [info] UploadPackV2: processing ls-refs command
16:30:06.967 [info] UploadPackV2: processing fetch command
16:30:06.967 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:30:06.967 [info] UploadPackV2: fetch response 32 bytes
16:30:06.967 [info] UploadPackV2: processing fetch command
16:30:06.967 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:06.967 [info] UploadPackV2: collected 3 objects, generating pack
16:30:06.967 [info] UploadPackV2: pack generated, 183 bytes
16:30:06.967 [info] UploadPackV2: fetch response 205 bytes
.
16:30:07.034 [info] UploadPackV2: processing ls-refs command
16:30:07.035 [info] UploadPackV2: processing fetch command
16:30:07.035 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:07.038 [info] UploadPackV2: collected 90 objects, generating pack
16:30:07.039 [info] UploadPackV2: pack generated, 5649 bytes
16:30:07.040 [info] UploadPackV2: fetch response 5671 bytes
16:30:07.286 [info] UploadPackV2: processing ls-refs command
...........
16:30:07.296 [info] The function passed as a handler with ID "graph-query-test-18499" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
....
16:30:07.304 [info] The function passed as a handler with ID "graph-query-test-9666" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.....
16:30:07.308 [info] The function passed as a handler with ID "graph-query-test-12581" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:30:07.310 [info] The function passed as a handler with ID "rev-list-range-test-12645" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
16:30:07.313 [info] The function passed as a handler with ID "rev-list-range-test-9826" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..
16:30:07.316 [info] The function passed as a handler with ID "rev-list-range-test-12677" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
....
16:30:07.390 [info] UploadPackV2: processing ls-refs command
16:30:07.391 [info] UploadPackV2: processing fetch command
16:30:07.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:07.392 [info] UploadPackV2: collected 15 objects, generating pack
16:30:07.392 [info] UploadPackV2: pack generated, 952 bytes
16:30:07.392 [info] UploadPackV2: fetch response 974 bytes
.
16:30:07.470 [info] UploadPackV2: processing ls-refs command
16:30:07.471 [info] UploadPackV2: processing fetch command
16:30:07.471 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:30:07.471 [info] UploadPackV2: collected 3 objects, generating pack
16:30:07.471 [info] UploadPackV2: pack generated, 200 bytes
16:30:07.471 [info] UploadPackV2: fetch response 256 bytes
.
16:30:07.526 [info] UploadPackV2: processing ls-refs command
16:30:07.527 [info] UploadPackV2: processing fetch command
16:30:07.527 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:07.528 [info] UploadPackV2: collected 3 objects, generating pack
16:30:07.528 [info] UploadPackV2: pack generated, 196 bytes
16:30:07.528 [info] UploadPackV2: fetch response 218 bytes
.
16:30:07.594 [info] UploadPackV2: processing ls-refs command
16:30:07.595 [info] UploadPackV2: processing fetch command
16:30:07.595 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:07.596 [info] UploadPackV2: collected 3 objects, generating pack
16:30:07.596 [info] UploadPackV2: pack generated, 185 bytes
16:30:07.596 [info] UploadPackV2: fetch response 207 bytes
16:30:07.654 [info] UploadPackV2: processing ls-refs command
..
16:30:22.774 [info] UploadPackV2: processing ls-refs command
16:30:22.776 [info] UploadPackV2: processing fetch command
16:30:22.776 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:22.776 [info] UploadPackV2: collected 3 objects, generating pack
16:30:22.776 [info] UploadPackV2: pack generated, 185 bytes
16:30:22.776 [info] UploadPackV2: fetch response 207 bytes
.
16:30:22.846 [info] UploadPackV2: processing ls-refs command
16:30:22.847 [info] UploadPackV2: processing fetch command
16:30:22.847 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:22.848 [info] UploadPackV2: collected 3 objects, generating pack
16:30:22.848 [info] UploadPackV2: pack generated, 196 bytes
16:30:22.848 [info] UploadPackV2: fetch response 218 bytes
.
16:30:22.887 [info] UploadPackV2: processing ls-refs command
16:30:22.891 [info] UploadPackV2: processing fetch command
16:30:22.891 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:22.892 [info] UploadPackV2: collected 15 objects, generating pack
16:30:22.892 [info] UploadPackV2: pack generated, 919 bytes
16:30:22.892 [info] UploadPackV2: fetch response 941 bytes
.
16:30:22.999 [info] UploadPackV2: processing fetch command
16:30:22.999 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:23.000 [info] UploadPackV2: collected 3 objects, generating pack
16:30:23.000 [info] UploadPackV2: pack generated, 183 bytes
16:30:23.000 [info] UploadPackV2: fetch response 205 bytes
.
16:30:23.027 [info] UploadPackV2: processing ls-refs command
16:30:23.030 [info] UploadPackV2: processing fetch command
16:30:23.030 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:23.030 [info] UploadPackV2: collected 6 objects, generating pack
16:30:23.031 [info] UploadPackV2: pack generated, 366 bytes
16:30:23.031 [info] UploadPackV2: fetch response 388 bytes
16:30:23.058 [info] UploadPackV2: processing ls-refs command
..
16:30:23.122 [info] UploadPackV2: processing ls-refs command
16:30:23.124 [info] UploadPackV2: processing fetch command
16:30:23.124 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:23.129 [info] UploadPackV2: collected 180 objects, generating pack
16:30:23.131 [info] UploadPackV2: pack generated, 11106 bytes
16:30:23.131 [info] UploadPackV2: fetch response 11128 bytes
.
16:30:23.168 [info] UploadPackV2: processing ls-refs command
16:30:23.170 [info] UploadPackV2: processing fetch command
16:30:23.170 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:23.171 [info] UploadPackV2: collected 3 objects, generating pack
16:30:23.171 [info] UploadPackV2: pack generated, 183 bytes
16:30:23.171 [info] UploadPackV2: fetch response 205 bytes
.
16:30:23.202 [info] UploadPackV2: processing ls-refs command
16:30:23.204 [info] UploadPackV2: processing fetch command
16:30:23.204 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:30:23.205 [info] UploadPackV2: collected 9 objects, generating pack
16:30:23.205 [info] UploadPackV2: pack generated, 549 bytes
16:30:23.205 [info] UploadPackV2: fetch response 571 bytes
16:30:23.231 [info] UploadPackV2: processing ls-refs command
.
Finished in 199.9 seconds (11.9s async, 188.0s sync)
Result: 1009 passed (2 properties, 1007 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info