fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Runner:
carl
online
linux/arm64
Started: Jun 18, 2026 at 01:47 UTC
Completed: Jun 18, 2026 at 01:51 UTC
Duration: 3m 58s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Cover compiling modules ...
Running ExUnit with seed: 17540, max_cases: 8
Excluding tags: [:s3]
......................................
01:47:24.472 [info] The function passed as a handler with ID "test-#Reference<0.332983561.3954442244.230319>" 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
.
01:47:24.576 [info] The function passed as a handler with ID "test-fail-#Reference<0.332983561.3954442241.237692>" 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
....
01:47:24.599 [info] The function passed as a handler with ID #Reference<0.332983561.3954442244.230604> 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
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: 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 "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "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
............................................................................................................................................................
01:47:28.753 [info] UploadPackV2: processing fetch command
01:47:28.753 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.754 [info] UploadPackV2: collected 20 objects, generating pack
01:47:28.755 [info] UploadPackV2: pack generated, 1203 bytes
01:47:28.755 [info] UploadPackV2: fetch response 1225 bytes
01:47:28.800 [info] UploadPackV2: processing fetch command
01:47:28.800 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.822 [info] UploadPackV2: collected 63 objects, generating pack
01:47:28.824 [info] UploadPackV2: pack generated, 3785 bytes
01:47:28.824 [info] UploadPackV2: fetch response 3807 bytes
01:47:28.879 [info] UploadPackV2: processing fetch command
01:47:28.879 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.885 [info] UploadPackV2: collected 39 objects, generating pack
01:47:28.887 [info] UploadPackV2: pack generated, 2366 bytes
01:47:28.887 [info] UploadPackV2: fetch response 2388 bytes
01:47:28.934 [info] UploadPackV2: processing fetch command
01:47:28.934 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.943 [info] UploadPackV2: collected 8 objects, generating pack
01:47:28.944 [info] UploadPackV2: pack generated, 450 bytes
01:47:28.944 [info] UploadPackV2: fetch response 472 bytes
01:47:28.955 [info] UploadPackV2: processing fetch command
01:47:28.955 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.966 [info] UploadPackV2: collected 11 objects, generating pack
01:47:28.966 [info] UploadPackV2: pack generated, 714 bytes
01:47:28.967 [info] UploadPackV2: fetch response 736 bytes
01:47:28.985 [info] UploadPackV2: processing fetch command
01:47:28.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.986 [info] UploadPackV2: collected 16 objects, generating pack
01:47:28.987 [info] UploadPackV2: pack generated, 962 bytes
01:47:28.987 [info] UploadPackV2: fetch response 984 bytes
01:47:28.992 [info] UploadPackV2: processing fetch command
01:47:28.993 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:28.994 [info] UploadPackV2: collected 19 objects, generating pack
01:47:28.994 [info] UploadPackV2: pack generated, 1196 bytes
01:47:28.994 [info] UploadPackV2: fetch response 1218 bytes
01:47:29.000 [info] UploadPackV2: processing fetch command
01:47:29.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.001 [info] UploadPackV2: collected 27 objects, generating pack
01:47:29.002 [info] UploadPackV2: pack generated, 1678 bytes
01:47:29.002 [info] UploadPackV2: fetch response 1700 bytes
01:47:29.007 [info] UploadPackV2: processing fetch command
01:47:29.008 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.010 [info] UploadPackV2: collected 40 objects, generating pack
01:47:29.017 [info] UploadPackV2: pack generated, 2373 bytes
01:47:29.017 [info] UploadPackV2: fetch response 2395 bytes
01:47:29.026 [info] UploadPackV2: processing fetch command
01:47:29.026 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.028 [info] UploadPackV2: collected 44 objects, generating pack
01:47:29.030 [info] UploadPackV2: pack generated, 2583 bytes
01:47:29.030 [info] UploadPackV2: fetch response 2605 bytes
01:47:29.037 [info] UploadPackV2: processing fetch command
01:47:29.037 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.038 [info] UploadPackV2: collected 20 objects, generating pack
01:47:29.038 [info] UploadPackV2: pack generated, 1203 bytes
01:47:29.038 [info] UploadPackV2: fetch response 1225 bytes
01:47:29.042 [info] UploadPackV2: processing fetch command
01:47:29.042 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.043 [info] UploadPackV2: collected 8 objects, generating pack
01:47:29.043 [info] UploadPackV2: pack generated, 482 bytes
01:47:29.043 [info] UploadPackV2: fetch response 504 bytes
01:47:29.047 [info] UploadPackV2: processing fetch command
01:47:29.047 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.048 [info] UploadPackV2: collected 15 objects, generating pack
01:47:29.048 [info] UploadPackV2: pack generated, 956 bytes
01:47:29.048 [info] UploadPackV2: fetch response 978 bytes
01:47:29.054 [info] UploadPackV2: processing fetch command
01:47:29.054 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.056 [info] UploadPackV2: collected 35 objects, generating pack
01:47:29.057 [info] UploadPackV2: pack generated, 2126 bytes
01:47:29.057 [info] UploadPackV2: fetch response 2148 bytes
01:47:29.063 [info] UploadPackV2: processing fetch command
01:47:29.063 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.064 [info] UploadPackV2: collected 23 objects, generating pack
01:47:29.065 [info] UploadPackV2: pack generated, 1437 bytes
01:47:29.065 [info] UploadPackV2: fetch response 1459 bytes
01:47:29.068 [info] UploadPackV2: processing fetch command
01:47:29.068 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.069 [info] UploadPackV2: collected 7 objects, generating pack
01:47:29.069 [info] UploadPackV2: pack generated, 475 bytes
01:47:29.069 [info] UploadPackV2: fetch response 497 bytes
01:47:29.073 [info] UploadPackV2: processing fetch command
01:47:29.074 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.075 [info] UploadPackV2: collected 23 objects, generating pack
01:47:29.075 [info] UploadPackV2: pack generated, 1403 bytes
01:47:29.075 [info] UploadPackV2: fetch response 1425 bytes
01:47:29.083 [info] UploadPackV2: processing fetch command
01:47:29.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.084 [info] UploadPackV2: collected 15 objects, generating pack
01:47:29.084 [info] UploadPackV2: pack generated, 907 bytes
01:47:29.084 [info] UploadPackV2: fetch response 929 bytes
01:47:29.090 [info] UploadPackV2: processing fetch command
01:47:29.090 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.091 [info] UploadPackV2: collected 20 objects, generating pack
01:47:29.092 [info] UploadPackV2: pack generated, 1170 bytes
01:47:29.092 [info] UploadPackV2: fetch response 1192 bytes
01:47:29.098 [info] UploadPackV2: processing fetch command
01:47:29.098 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.100 [info] UploadPackV2: collected 40 objects, generating pack
01:47:29.101 [info] UploadPackV2: pack generated, 2342 bytes
01:47:29.101 [info] UploadPackV2: fetch response 2364 bytes
01:47:29.109 [info] UploadPackV2: processing fetch command
01:47:29.110 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.111 [info] UploadPackV2: collected 27 objects, generating pack
01:47:29.111 [info] UploadPackV2: pack generated, 1645 bytes
01:47:29.112 [info] UploadPackV2: fetch response 1667 bytes
01:47:29.116 [info] UploadPackV2: processing fetch command
01:47:29.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.117 [info] UploadPackV2: collected 12 objects, generating pack
01:47:29.118 [info] UploadPackV2: pack generated, 723 bytes
01:47:29.118 [info] UploadPackV2: fetch response 745 bytes
01:47:29.122 [info] UploadPackV2: processing fetch command
01:47:29.122 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.123 [info] UploadPackV2: collected 23 objects, generating pack
01:47:29.124 [info] UploadPackV2: pack generated, 1435 bytes
01:47:29.124 [info] UploadPackV2: fetch response 1457 bytes
01:47:29.130 [info] UploadPackV2: processing fetch command
01:47:29.131 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.132 [info] UploadPackV2: collected 36 objects, generating pack
01:47:29.133 [info] UploadPackV2: pack generated, 2132 bytes
01:47:29.133 [info] UploadPackV2: fetch response 2154 bytes
01:47:29.141 [info] UploadPackV2: processing fetch command
01:47:29.141 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.141 [info] UploadPackV2: collected 8 objects, generating pack
01:47:29.142 [info] UploadPackV2: pack generated, 482 bytes
01:47:29.142 [info] UploadPackV2: fetch response 504 bytes
01:47:29.147 [info] UploadPackV2: processing fetch command
01:47:29.147 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:29.148 [info] UploadPackV2: collected 34 objects, generating pack
01:47:29.149 [info] UploadPackV2: pack generated, 2101 bytes
01:47:29.149 [info] UploadPackV2: fetch response 2123 bytes
.
01:47:29.155 [info] UploadPackV2: processing fetch command
.
01:47:29.155 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.156 [info] UploadPackV2: collected 11 objects, generating pack
.
01:47:29.156 [info] UploadPackV2: pack generated, 684 bytes
.
01:47:29.156 [info] UploadPackV2: fetch response 706 bytes
.
01:47:29.162 [info] UploadPackV2: processing fetch command
.
01:47:29.605 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.620 [info] UploadPackV2: collected 39 objects, generating pack
.
01:47:29.624 [info] UploadPackV2: pack generated, 2347 bytes
.
01:47:29.624 [info] UploadPackV2: fetch response 2369 bytes
.
01:47:29.704 [info] UploadPackV2: processing fetch command
.
01:47:29.705 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.754 [info] UploadPackV2: collected 42 objects, generating pack
.
01:47:29.755 [info] UploadPackV2: pack generated, 2576 bytes
.
01:47:29.755 [info] UploadPackV2: fetch response 2598 bytes
.
01:47:29.774 [info] UploadPackV2: processing fetch command
.
01:47:29.774 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
.
01:47:29.777 [info] UploadPackV2: collected 47 objects, generating pack
.
01:47:29.783 [info] UploadPackV2: pack generated, 2814 bytes
.
01:47:29.783 [info] UploadPackV2: fetch response 2836 bytes
.
01:47:29.816 [info] UploadPackV2: processing fetch command
.
01:47:29.817 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.827 [info] UploadPackV2: collected 27 objects, generating pack
.
01:47:29.828 [info] UploadPackV2: pack generated, 1624 bytes
.
01:47:29.829 [info] UploadPackV2: fetch response 1646 bytes
.
01:47:29.838 [info] UploadPackV2: processing fetch command
.
01:47:29.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.840 [info] UploadPackV2: collected 8 objects, generating pack
.
01:47:29.840 [info] UploadPackV2: pack generated, 482 bytes
.
01:47:29.841 [info] UploadPackV2: fetch response 504 bytes
.
01:47:29.852 [info] UploadPackV2: processing fetch command
.
01:47:29.852 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.853 [info] UploadPackV2: collected 20 objects, generating pack
.
01:47:29.856 [info] UploadPackV2: pack generated, 1203 bytes
.
01:47:29.857 [info] UploadPackV2: fetch response 1225 bytes
..
01:47:29.877 [info] UploadPackV2: processing fetch command
.
01:47:29.877 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.887 [info] UploadPackV2: collected 28 objects, generating pack
.
01:47:29.889 [info] UploadPackV2: pack generated, 1652 bytes
.
01:47:29.890 [info] UploadPackV2: fetch response 1674 bytes
.
01:47:29.910 [info] UploadPackV2: processing fetch command
.
01:47:29.910 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.911 [info] UploadPackV2: collected 4 objects, generating pack
.
01:47:29.911 [info] UploadPackV2: pack generated, 241 bytes
.
01:47:29.911 [info] UploadPackV2: fetch response 263 bytes
.
01:47:29.923 [info] UploadPackV2: processing fetch command
.
01:47:29.923 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.929 [info] UploadPackV2: collected 43 objects, generating pack
.
01:47:29.930 [info] UploadPackV2: pack generated, 2607 bytes
.
01:47:29.930 [info] UploadPackV2: fetch response 2629 bytes
.
01:47:29.946 [info] UploadPackV2: processing fetch command
.
01:47:29.946 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:29.947 [info] UploadPackV2: collected 28 objects, generating pack
.
01:47:29.950 [info] UploadPackV2: pack generated, 1652 bytes
.
01:47:29.951 [info] UploadPackV2: fetch response 1674 bytes
.
01:47:29.985 [info] UploadPackV2: processing fetch command
.
01:47:29.985 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.000 [info] UploadPackV2: collected 43 objects, generating pack
.
01:47:30.006 [info] UploadPackV2: pack generated, 2607 bytes
.
01:47:30.122 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
01:47:30.124 [info] UploadPackV2: processing fetch command
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
.
01:47:30.124 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.133 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:30.133 [info] UploadPackV2: pack generated, 191 bytes
.
01:47:30.133 [info] UploadPackV2: fetch response 213 bytes
.
01:47:30.134 [info] UploadPackV2: processing fetch command
.
01:47:30.134 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.135 [info] UploadPackV2: collected 9 objects, streaming pack
01:47:30.136 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
01:47:30.136 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
01:47:30.151 [info] UploadPackV2: processing fetch command
.
01:47:30.151 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.152 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:30.152 [info] UploadPackV2: pack generated, 223 bytes
.
01:47:30.152 [info] UploadPackV2: fetch response 245 bytes
.
01:47:30.258 [info] UploadPackV2: fetch response 2629 bytes
.
01:47:30.258 [info] UploadPackV2: processing fetch command
......
01:47:30.316 [info] UploadPackV2: processing fetch command
.
01:47:30.317 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.318 [info] UploadPackV2: collected 36 objects, generating pack
.
01:47:30.319 [info] UploadPackV2: pack generated, 2132 bytes
.
01:47:30.319 [info] UploadPackV2: fetch response 2154 bytes
.
01:47:30.328 [info] UploadPackV2: processing fetch command
.
01:47:30.328 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.330 [info] UploadPackV2: collected 4 objects, generating pack
.
01:47:30.330 [info] UploadPackV2: pack generated, 241 bytes
.
01:47:30.330 [info] UploadPackV2: fetch response 263 bytes
.
01:47:30.331 [info] UploadPackV2: processing fetch command
.
01:47:30.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.332 [info] UploadPackV2: collected 4 objects, generating pack
.
01:47:30.332 [info] UploadPackV2: pack generated, 241 bytes
.
01:47:30.332 [info] UploadPackV2: fetch response 263 bytes
.
01:47:30.335 [info] UploadPackV2: processing fetch command
.
01:47:30.335 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.336 [info] UploadPackV2: collected 34 objects, generating pack
.
01:47:30.337 [info] UploadPackV2: pack generated, 2101 bytes
.
01:47:30.337 [info] UploadPackV2: fetch response 2123 bytes
.
01:47:30.342 [info] UploadPackV2: processing fetch command
.
01:47:30.342 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.343 [info] UploadPackV2: collected 12 objects, generating pack
.
01:47:30.343 [info] UploadPackV2: pack generated, 690 bytes
.
01:47:30.343 [info] UploadPackV2: fetch response 712 bytes
.
01:47:30.356 [info] UploadPackV2: processing fetch command
.
01:47:30.357 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.365 [info] UploadPackV2: collected 23 objects, generating pack
.
01:47:30.366 [info] UploadPackV2: pack generated, 1435 bytes
.
01:47:30.366 [info] UploadPackV2: fetch response 1457 bytes
.
01:47:30.379 [info] UploadPackV2: processing fetch command
.
01:47:30.379 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.381 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.383 [info] UploadPackV2: collected 36 objects, generating pack
.
01:47:30.387 [info] UploadPackV2: pack generated, 2134 bytes
01:47:30.387 [info] UploadPackV2: fetch response 2156 bytes
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
01:47:30.407 [info] UploadPackV2: processing fetch command
01:47:30.530 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.537 [info] UploadPackV2: collected 700 objects, generating pack
01:47:30.538 [info] UploadPackV2: collected 19 objects, generating pack
01:47:30.539 [info] UploadPackV2: pack generated, 1194 bytes
.
01:47:30.539 [info] UploadPackV2: fetch response 1216 bytes
.
01:47:30.556 [info] UploadPackV2: processing fetch command
.
01:47:30.556 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.563 [info] UploadPackV2: collected 27 objects, generating pack
.
01:47:30.564 [info] UploadPackV2: pack generated, 1678 bytes
.
01:47:30.564 [info] UploadPackV2: fetch response 1700 bytes
.
01:47:30.571 [info] UploadPackV2: processing fetch command
.
01:47:30.571 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.572 [info] UploadPackV2: collected 15 objects, generating pack
.
01:47:30.573 [info] UploadPackV2: pack generated, 958 bytes
.
01:47:30.573 [info] UploadPackV2: fetch response 980 bytes
.
01:47:30.578 [info] UploadPackV2: processing fetch command
.
01:47:30.579 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.580 [info] UploadPackV2: collected 23 objects, generating pack
.
01:47:30.581 [info] UploadPackV2: pack generated, 1435 bytes
.
01:47:30.581 [info] UploadPackV2: fetch response 1457 bytes
.
01:47:30.582 [info] UploadPackV2: pack generated, 48139 bytes
.
01:47:30.582 [info] UploadPackV2: fetch response 48161 bytes
.
01:47:30.587 [info] UploadPackV2: processing fetch command
.
01:47:30.587 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.589 [info] UploadPackV2: collected 20 objects, generating pack
.
01:47:30.591 [info] UploadPackV2: pack generated, 1203 bytes
.
01:47:30.591 [info] UploadPackV2: fetch response 1225 bytes
.
01:47:30.609 [info] UploadPackV2: processing fetch command
.
01:47:30.609 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.611 [info] UploadPackV2: collected 8 objects, generating pack
.
01:47:30.611 [info] UploadPackV2: pack generated, 482 bytes
.
01:47:30.611 [info] UploadPackV2: fetch response 504 bytes
.
01:47:30.664 [info] UploadPackV2: processing fetch command
.
01:47:30.763 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.783 [info] UploadPackV2: collected 30 objects, generating pack
.
01:47:30.784 [info] UploadPackV2: pack generated, 1856 bytes
.
01:47:30.784 [info] UploadPackV2: fetch response 1878 bytes
.
01:47:30.788 [info] UploadPackV2: processing fetch command
.
01:47:30.788 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.790 [info] UploadPackV2: processing fetch command
.
01:47:30.790 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.790 [info] UploadPackV2: collected 8 objects, generating pack
.
01:47:30.790 [info] UploadPackV2: pack generated, 482 bytes
.
01:47:30.790 [info] UploadPackV2: fetch response 504 bytes
.
01:47:30.792 [info] UploadPackV2: collected 90 objects, generating pack
01:47:30.794 [info] UploadPackV2: processing fetch command
.
01:47:30.794 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
01:47:30.795 [info] UploadPackV2: pack generated, 5946 bytes
.
01:47:30.795 [info] UploadPackV2: fetch response 5968 bytes
.
01:47:30.796 [info] UploadPackV2: collected 20 objects, generating pack
.
01:47:30.796 [info] UploadPackV2: pack generated, 1203 bytes
.
01:47:30.796 [info] UploadPackV2: fetch response 1225 bytes
.
01:47:30.802 [info] UploadPackV2: processing fetch command
.
01:47:30.802 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.803 [info] UploadPackV2: collected 24 objects, generating pack
.
01:47:30.803 [info] UploadPackV2: pack generated, 1443 bytes
.
01:47:30.804 [info] UploadPackV2: fetch response 1465 bytes
.
01:47:30.804 [info] UploadPackV2: processing ls-refs command
.
01:47:30.805 [info] UploadPackV2: processing fetch command
.
01:47:30.805 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.806 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:30.806 [info] UploadPackV2: pack generated, 195 bytes
.
01:47:30.806 [info] UploadPackV2: fetch response 217 bytes
.
01:47:30.811 [info] UploadPackV2: processing fetch command
.
01:47:30.812 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:30.814 [info] UploadPackV2: collected 38 objects, generating pack
.
01:47:30.815 [info] UploadPackV2: pack generated, 2341 bytes
.
01:47:30.815 [info] UploadPackV2: fetch response 2363 bytes
.
01:47:30.826 [info] UploadPackV2: processing fetch command
.................
01:47:30.826 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.828 [info] UploadPackV2: collected 27 objects, generating pack
01:47:30.828 [info] UploadPackV2: pack generated, 1676 bytes
01:47:30.829 [info] UploadPackV2: fetch response 1698 bytes
01:47:30.839 [info] UploadPackV2: processing fetch command
01:47:30.839 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.842 [info] UploadPackV2: collected 42 objects, generating pack
01:47:30.843 [info] UploadPackV2: pack generated, 2575 bytes
01:47:30.843 [info] UploadPackV2: fetch response 2597 bytes
01:47:30.854 [info] UploadPackV2: processing fetch command
01:47:30.981 [info] UploadPackV2: processing fetch command
01:47:30.985 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.986 [info] UploadPackV2: collected 20 objects, generating pack
01:47:30.988 [info] UploadPackV2: pack generated, 1170 bytes
01:47:30.988 [info] UploadPackV2: fetch response 1192 bytes
01:47:30.994 [info] UploadPackV2: processing fetch command
01:47:30.994 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:30.995 [info] UploadPackV2: collected 16 objects, generating pack
01:47:30.997 [info] UploadPackV2: pack generated, 930 bytes
01:47:30.997 [info] UploadPackV2: fetch response 952 bytes
01:47:31.005 [info] UploadPackV2: collected 32 objects, streaming pack
01:47:31.006 [info] UploadPackV2: processing fetch command
01:47:31.006 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.007 [info] UploadPackV2: collected 4 objects, generating pack
01:47:31.008 [info] UploadPackV2: pack generated, 241 bytes
01:47:31.009 [info] UploadPackV2: fetch response 263 bytes
01:47:31.011 [info] UploadPackV2: processing fetch command
01:47:31.011 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.012 [info] UploadPackV2: collected 20 objects, generating pack
01:47:31.017 [info] UploadPackV2: pack generated, 1203 bytes
01:47:31.018 [info] UploadPackV2: fetch response 1225 bytes
01:47:31.026 [info] UploadPackV2: processing fetch command
01:47:31.026 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.026 [info] UploadPackV2: collected 7 objects, generating pack
01:47:31.026 [info] UploadPackV2: pack generated, 475 bytes
01:47:31.027 [info] UploadPackV2: fetch response 497 bytes
01:47:31.034 [info] UploadPackV2: processing fetch command
01:47:31.037 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.039 [info] UploadPackV2: collected 23 objects, generating pack
01:47:31.039 [info] UploadPackV2: pack generated, 1437 bytes
01:47:31.039 [info] UploadPackV2: fetch response 1459 bytes
01:47:31.054 [info] UploadPackV2: processing fetch command
01:47:31.054 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.055 [info] UploadPackV2: collected 16 objects, generating pack
01:47:31.056 [info] UploadPackV2: pack generated, 962 bytes
01:47:31.056 [info] UploadPackV2: fetch response 984 bytes
01:47:31.063 [info] UploadPackV2: processing fetch command
01:47:31.063 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.063 [info] UploadPackV2: collected 4 objects, generating pack
.
01:47:31.064 [info] UploadPackV2: pack generated, 241 bytes
.
01:47:31.064 [info] UploadPackV2: fetch response 263 bytes
.
01:47:31.068 [info] UploadPackV2: processing fetch command
.
01:47:31.069 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.069 [info] UploadPackV2: collected 4 objects, generating pack
.
01:47:31.069 [info] UploadPackV2: pack generated, 241 bytes
.
01:47:31.069 [info] UploadPackV2: fetch response 263 bytes
.
01:47:31.071 [info] UploadPackV2: processing fetch command
.
01:47:31.071 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.071 [info] UploadPackV2: collected 4 objects, generating pack
01:47:31.077 [info] UploadPackV2: pack generated, 241 bytes
01:47:31.077 [info] UploadPackV2: fetch response 263 bytes
01:47:31.080 [info] UploadPackV2: processing fetch command
01:47:31.080 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.081 [info] UploadPackV2: collected 23 objects, generating pack
01:47:31.082 [info] UploadPackV2: pack generated, 1437 bytes
01:47:31.082 [info] UploadPackV2: fetch response 1459 bytes
01:47:31.090 [info] UploadPackV2: processing fetch command
01:47:31.090 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.091 [info] UploadPackV2: collected 7 objects, generating pack
01:47:31.091 [info] UploadPackV2: pack generated, 475 bytes
01:47:31.091 [info] UploadPackV2: fetch response 497 bytes
01:47:31.100 [info] UploadPackV2: processing fetch command
01:47:31.269 [info] UploadPackV2: streamed pack 2459747 bytes, 32 objects
01:47:31.285 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.285 [info] UploadPackV2: fetch streamed 2459747 pack bytes, 32 objects
01:47:31.289 [info] UploadPackV2: collected 16 objects, generating pack
01:47:31.290 [info] UploadPackV2: pack generated, 962 bytes
01:47:31.290 [info] UploadPackV2: fetch response 984 bytes
01:47:31.296 [info] UploadPackV2: processing fetch command
01:47:31.296 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.309 [info] UploadPackV2: collected 31 objects, generating pack
01:47:31.310 [info] UploadPackV2: pack generated, 1866 bytes
01:47:31.310 [info] UploadPackV2: fetch response 1888 bytes
01:47:31.334 [info] UploadPackV2: processing fetch command
01:47:31.334 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.335 [info] UploadPackV2: collected 23 objects, generating pack
01:47:31.336 [info] UploadPackV2: pack generated, 1435 bytes
01:47:31.336 [info] UploadPackV2: fetch response 1457 bytes
......
01:47:31.347 [info] UploadPackV2: processing fetch command
.
01:47:31.347 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.350 [info] UploadPackV2: collected 59 objects, generating pack
01:47:31.352 [info] UploadPackV2: pack generated, 3545 bytes
01:47:31.352 [info] UploadPackV2: fetch response 3567 bytes
01:47:31.367 [info] UploadPackV2: processing fetch command
.
01:47:31.368 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.368 [info] UploadPackV2: collected 8 objects, generating pack
01:47:31.368 [info] UploadPackV2: pack generated, 482 bytes
01:47:31.369 [info] UploadPackV2: fetch response 504 bytes
01:47:31.376 [info] UploadPackV2: processing fetch command
01:47:31.376 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.382 [info] UploadPackV2: collected 30 objects, generating pack
01:47:31.383 [info] UploadPackV2: pack generated, 1858 bytes
01:47:31.383 [info] UploadPackV2: fetch response 1880 bytes
...
01:47:31.396 [info] UploadPackV2: processing fetch command
.
01:47:31.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.398 [info] UploadPackV2: collected 27 objects, generating pack
.
01:47:31.399 [info] UploadPackV2: pack generated, 1678 bytes
.
01:47:31.399 [info] UploadPackV2: fetch response 1700 bytes
.
01:47:31.403 [info] UploadPackV2: processing fetch command
.
01:47:31.404 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.405 [info] UploadPackV2: collected 4 objects, generating pack
01:47:31.405 [info] UploadPackV2: pack generated, 241 bytes
.
01:47:31.406 [info] UploadPackV2: fetch response 263 bytes
.
01:47:31.435 [info] UploadPackV2: processing fetch command
01:47:31.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.436 [info] UploadPackV2: collected 11 objects, generating pack
01:47:31.437 [info] UploadPackV2: pack generated, 717 bytes
01:47:31.437 [info] UploadPackV2: fetch response 739 bytes
01:47:31.443 [info] UploadPackV2: processing fetch command
01:47:31.444 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.450 [info] UploadPackV2: collected 8 objects, generating pack
01:47:31.451 [info] UploadPackV2: pack generated, 482 bytes
01:47:31.451 [info] UploadPackV2: fetch response 504 bytes
01:47:31.472 [info] UploadPackV2: processing fetch command
01:47:31.472 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.473 [info] UploadPackV2: collected 15 objects, generating pack
01:47:31.474 [info] UploadPackV2: pack generated, 1068 bytes
01:47:31.474 [info] UploadPackV2: fetch response 1090 bytes
01:47:31.490 [info] UploadPackV2: processing fetch command
01:47:31.490 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.496 [info] UploadPackV2: collected 47 objects, generating pack
.
01:47:31.496 [info] UploadPackV2: processing fetch command
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:151:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
.
01:47:31.496 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.497 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:31.497 [info] UploadPackV2: pack generated, 191 bytes
.
01:47:31.497 [info] UploadPackV2: fetch response 213 bytes
.
01:47:31.499 [info] UploadPackV2: processing ls-refs command
.
01:47:31.500 [info] UploadPackV2: pack generated, 3365 bytes
.
01:47:31.500 [info] UploadPackV2: fetch response 3387 bytes
.
01:47:31.500 [info] UploadPackV2: processing ls-refs command
.
01:47:31.501 [info] UploadPackV2: processing fetch command
.
01:47:31.501 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.501 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:31.501 [info] UploadPackV2: pack generated, 206 bytes
.
01:47:31.501 [info] UploadPackV2: fetch response 228 bytes
01:47:31.503 [info] UploadPackV2: processing fetch command
01:47:31.503 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.503 [info] UploadPackV2: collected 3 objects, generating pack
01:47:31.503 [info] UploadPackV2: pack generated, 191 bytes
01:47:31.503 [info] UploadPackV2: fetch response 213 bytes
01:47:31.509 [info] UploadPackV2: processing fetch command
01:47:31.509 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.517 [info] UploadPackV2: collected 15 objects, generating pack
01:47:31.518 [info] UploadPackV2: pack generated, 984 bytes
01:47:31.518 [info] UploadPackV2: fetch response 1006 bytes
01:47:31.522 [info] UploadPackV2: processing fetch command
01:47:31.522 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.523 [info] UploadPackV2: collected 3 objects, generating pack
01:47:31.523 [info] UploadPackV2: pack generated, 194 bytes
01:47:31.523 [info] UploadPackV2: fetch response 216 bytes
01:47:31.525 [info] UploadPackV2: processing fetch command
01:47:31.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.526 [info] UploadPackV2: collected 15 objects, generating pack
01:47:31.526 [info] UploadPackV2: pack generated, 984 bytes
01:47:31.527 [info] UploadPackV2: fetch response 1006 bytes
01:47:31.527 [info] UploadPackV2: processing fetch command
01:47:31.527 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.527 [info] UploadPackV2: collected 15 objects, streaming pack
01:47:31.528 [info] UploadPackV2: processing fetch command
01:47:31.528 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.528 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
01:47:31.528 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
01:47:31.529 [info] UploadPackV2: processing fetch command
01:47:31.529 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:31.529 [info] UploadPackV2: collected 29 objects, generating pack
01:47:31.530 [info] UploadPackV2: collected 6 objects, generating pack
01:47:31.530 [info] UploadPackV2: pack generated, 414 bytes
01:47:31.530 [info] UploadPackV2: fetch response 436 bytes
01:47:31.530 [info] UploadPackV2: pack generated, 2099 bytes
01:47:31.530 [info] UploadPackV2: fetch response 2121 bytes
01:47:31.538 [info] UploadPackV2: processing fetch command
01:47:31.538 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.539 [info] UploadPackV2: collected 6 objects, generating pack
01:47:31.539 [info] UploadPackV2: pack generated, 396 bytes
01:47:31.539 [info] UploadPackV2: fetch response 418 bytes
01:47:31.543 [info] UploadPackV2: processing fetch command
01:47:31.543 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.544 [info] UploadPackV2: collected 8 objects, generating pack
01:47:31.544 [info] UploadPackV2: pack generated, 636 bytes
01:47:31.544 [info] UploadPackV2: fetch response 658 bytes
01:47:31.548 [info] UploadPackV2: processing fetch command
01:47:31.548 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.549 [info] UploadPackV2: collected 12 objects, generating pack
01:47:31.549 [info] UploadPackV2: pack generated, 854 bytes
01:47:31.549 [info] UploadPackV2: fetch response 876 bytes
01:47:31.554 [info] UploadPackV2: processing fetch command
01:47:31.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.555 [info] UploadPackV2: collected 14 objects, generating pack
01:47:31.555 [info] UploadPackV2: pack generated, 1064 bytes
01:47:31.555 [info] UploadPackV2: fetch response 1086 bytes
01:47:31.565 [info] UploadPackV2: processing fetch command
01:47:31.565 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.566 [info] UploadPackV2: collected 20 objects, generating pack
.
01:47:31.567 [info] UploadPackV2: pack generated, 1492 bytes
01:47:31.567 [info] UploadPackV2: fetch response 1514 bytes
01:47:31.577 [info] UploadPackV2: processing fetch command
01:47:31.577 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.578 [info] UploadPackV2: collected 30 objects, generating pack
01:47:31.580 [info] UploadPackV2: pack generated, 2103 bytes
01:47:31.580 [info] UploadPackV2: fetch response 2125 bytes
.
01:47:31.590 [info] UploadPackV2: processing fetch command
01:47:31.590 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.591 [info] UploadPackV2: collected 33 objects, generating pack
01:47:31.593 [info] UploadPackV2: pack generated, 2286 bytes
01:47:31.593 [info] UploadPackV2: fetch response 2308 bytes
01:47:31.607 [info] UploadPackV2: processing fetch command
01:47:31.607 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.607 [info] UploadPackV2: collected 15 objects, generating pack
01:47:31.608 [info] UploadPackV2: pack generated, 1068 bytes
01:47:31.608 [info] UploadPackV2: fetch response 1090 bytes
01:47:31.614 [info] UploadPackV2: processing fetch command
01:47:31.614 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.614 [info] UploadPackV2: collected 6 objects, generating pack
01:47:31.615 [info] UploadPackV2: pack generated, 428 bytes
01:47:31.615 [info] UploadPackV2: fetch response 450 bytes
01:47:31.618 [info] UploadPackV2: processing fetch command
01:47:31.618 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:31.619 [info] UploadPackV2: collected 11 objects, generating pack
.
01:47:31.620 [info] UploadPackV2: pack generated, 851 bytes
.
01:47:31.620 [info] UploadPackV2: fetch response 873 bytes
.
01:47:31.626 [info] UploadPackV2: processing fetch command
.
01:47:31.626 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.629 [info] UploadPackV2: processing fetch command
.
01:47:31.630 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.631 [info] UploadPackV2: collected 26 objects, generating pack
.
01:47:31.633 [info] UploadPackV2: pack generated, 1886 bytes
.
01:47:31.633 [info] UploadPackV2: fetch response 1908 bytes
.
01:47:31.648 [info] UploadPackV2: processing fetch command
.
01:47:31.648 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.649 [info] UploadPackV2: collected 17 objects, generating pack
.
01:47:31.650 [info] UploadPackV2: pack generated, 1278 bytes
.
01:47:31.650 [info] UploadPackV2: fetch response 1300 bytes
.
01:47:31.656 [info] UploadPackV2: processing fetch command
.
01:47:31.682 [info] UploadPackV2: collected 600 objects, generating pack
.
01:47:31.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.818 [info] UploadPackV2: collected 5 objects, generating pack
.
01:47:31.819 [info] UploadPackV2: pack generated, 424 bytes
.
01:47:31.819 [info] UploadPackV2: fetch response 446 bytes
.
01:47:31.831 [info] UploadPackV2: pack generated, 39862 bytes
.
01:47:31.832 [info] UploadPackV2: fetch response 39884 bytes
..
01:47:31.831 [info] UploadPackV2: processing fetch command
.
01:47:31.837 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.838 [info] UploadPackV2: collected 17 objects, generating pack
.
01:47:31.839 [info] UploadPackV2: pack generated, 1244 bytes
.
01:47:31.839 [info] UploadPackV2: fetch response 1266 bytes
.
01:47:31.860 [info] UploadPackV2: processing fetch command
.
01:47:31.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.861 [info] UploadPackV2: collected 11 objects, generating pack
.
01:47:31.865 [info] UploadPackV2: pack generated, 811 bytes
.
01:47:31.865 [info] UploadPackV2: fetch response 833 bytes
.
01:47:31.876 [info] UploadPackV2: processing fetch command
.
01:47:31.876 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.886 [info] UploadPackV2: collected 15 objects, generating pack
.
01:47:31.887 [info] UploadPackV2: pack generated, 1035 bytes
.
01:47:31.887 [info] UploadPackV2: fetch response 1057 bytes
.
01:47:31.908 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
01:47:31.909 [info] UploadPackV2: processing ls-refs command
.
01:47:31.910 [info] UploadPackV2: processing ls-refs command
.
01:47:31.911 [info] UploadPackV2: processing fetch command
.
01:47:31.911 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.911 [info] UploadPackV2: collected 0 objects, generating pack
.
01:47:31.912 [info] UploadPackV2: pack generated, 32 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
│
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:63:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
01:47:31.912 [info] UploadPackV2: processing fetch command
.
01:47:31.912 [info] UploadPackV2: fetch response 54 bytes
.
01:47:31.912 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.916 [info] UploadPackV2: collected 30 objects, generating pack
.
01:47:31.917 [info] UploadPackV2: pack generated, 2072 bytes
.
01:47:31.917 [info] UploadPackV2: fetch response 2094 bytes
.
01:47:31.922 [info] UploadPackV2: processing fetch command
.
01:47:31.922 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.926 [info] UploadPackV2: collected 3 objects, streaming pack
.
01:47:31.933 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
01:47:31.933 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
01:47:31.935 [info] UploadPackV2: processing fetch command
.
01:47:31.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.935 [info] UploadPackV2: processing fetch command
.
01:47:31.935 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.936 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:31.936 [info] UploadPackV2: pack generated, 195 bytes
.
01:47:31.936 [info] UploadPackV2: fetch response 217 bytes
.
01:47:31.936 [info] UploadPackV2: collected 20 objects, generating pack
.
01:47:31.936 [info] UploadPackV2: processing fetch command
.
01:47:31.936 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:47:31.937 [info] UploadPackV2: collected 3 objects, streaming pack
.
01:47:31.937 [info] UploadPackV2: pack generated, 1459 bytes
.
01:47:31.937 [info] UploadPackV2: fetch response 1481 bytes
.
01:47:31.937 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
01:47:31.937 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
01:47:31.952 [info] UploadPackV2: processing fetch command
.
01:47:31.952 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:31.962 [info] UploadPackV2: collected 9 objects, generating pack
.
01:47:31.962 [info] UploadPackV2: pack generated, 642 bytes
.
01:47:31.963 [info] UploadPackV2: fetch response 664 bytes
01:47:32.084 [info] UploadPackV2: processing fetch command
01:47:32.084 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:32.093 [info] UploadPackV2: collected 32 objects, generating pack
01:47:32.214 [info] UploadPackV2: pack generated, 2459819 bytes
01:47:32.217 [info] UploadPackV2: processing fetch command
01:47:32.515 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.523 [info] UploadPackV2: fetch response 2460026 bytes
01:47:32.523 [info] UploadPackV2: processing fetch command
01:47:32.524 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:32.538 [info] UploadPackV2: collected 17 objects, generating pack
.
01:47:32.538 [info] UploadPackV2: pack generated, 1276 bytes
01:47:32.538 [info] UploadPackV2: fetch response 1298 bytes
01:47:32.576 [info] UploadPackV2: processing fetch command
01:47:32.576 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.587 [info] UploadPackV2: collected 32 objects, streaming pack
01:47:32.598 [info] UploadPackV2: collected 27 objects, generating pack
01:47:32.599 [info] UploadPackV2: pack generated, 1889 bytes
01:47:32.599 [info] UploadPackV2: fetch response 1911 bytes
01:47:32.647 [info] UploadPackV2: processing fetch command
01:47:32.647 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.648 [info] UploadPackV2: collected 6 objects, generating pack
01:47:32.648 [info] UploadPackV2: pack generated, 428 bytes
01:47:32.648 [info] UploadPackV2: fetch response 450 bytes
01:47:32.680 [info] UploadPackV2: processing fetch command
01:47:32.680 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.694 [info] UploadPackV2: collected 25 objects, generating pack
01:47:32.699 [info] UploadPackV2: pack generated, 1873 bytes
01:47:32.699 [info] UploadPackV2: fetch response 1895 bytes
01:47:32.744 [info] UploadPackV2: processing fetch command
01:47:32.744 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.747 [info] UploadPackV2: streamed pack 2459819 bytes, 32 objects
.
01:47:32.748 [info] UploadPackV2: fetch streamed 2459819 pack bytes, 32 objects
01:47:32.751 [info] UploadPackV2: collected 8 objects, generating pack
01:47:32.752 [info] UploadPackV2: pack generated, 606 bytes
01:47:32.752 [info] UploadPackV2: fetch response 628 bytes
01:47:32.775 [info] UploadPackV2: processing fetch command
01:47:32.775 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.780 [info] UploadPackV2: collected 29 objects, generating pack
01:47:32.781 [info] UploadPackV2: pack generated, 2089 bytes
01:47:32.782 [info] UploadPackV2: fetch response 2111 bytes
01:47:32.799 [info] UploadPackV2: processing fetch command
01:47:32.800 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.816 [info] UploadPackV2: collected 31 objects, generating pack
01:47:32.816 [info] UploadPackV2: pack generated, 2294 bytes
01:47:32.816 [info] UploadPackV2: fetch response 2316 bytes
01:47:32.832 [info] UploadPackV2: processing fetch command
01:47:32.832 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.834 [info] UploadPackV2: collected 35 objects, generating pack
01:47:32.835 [info] UploadPackV2: pack generated, 2493 bytes
01:47:32.835 [info] UploadPackV2: fetch response 2515 bytes
01:47:32.847 [info] UploadPackV2: processing fetch command
01:47:32.847 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.848 [info] UploadPackV2: collected 20 objects, generating pack
01:47:32.849 [info] UploadPackV2: pack generated, 1447 bytes
01:47:32.849 [info] UploadPackV2: fetch response 1469 bytes
01:47:32.856 [info] UploadPackV2: processing fetch command
01:47:32.856 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.856 [info] UploadPackV2: collected 6 objects, generating pack
01:47:32.857 [info] UploadPackV2: pack generated, 428 bytes
01:47:32.857 [info] UploadPackV2: fetch response 450 bytes
01:47:32.862 [info] UploadPackV2: processing fetch command
.
01:47:32.862 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.864 [info] UploadPackV2: collected 15 objects, generating pack
.
01:47:32.864 [info] UploadPackV2: pack generated, 1068 bytes
.
01:47:32.864 [info] UploadPackV2: fetch response 1090 bytes
.
01:47:32.870 [info] UploadPackV2: processing fetch command
.
01:47:32.870 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:32.871 [info] UploadPackV2: collected 21 objects, generating pack
.
01:47:32.872 [info] UploadPackV2: pack generated, 1463 bytes
.
01:47:32.872 [info] UploadPackV2: fetch response 1485 bytes
.
01:47:32.880 [info] UploadPackV2: processing fetch command
.
01:47:32.880 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:47:32.881 [info] UploadPackV2: collected 3 objects, generating pack
.
01:47:32.881 [info] UploadPackV2: pack generated, 214 bytes
01:47:32.881 [info] UploadPackV2: fetch response 236 bytes
01:47:32.886 [info] UploadPackV2: processing fetch command
01:47:32.886 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.888 [info] UploadPackV2: collected 32 objects, generating pack
01:47:32.890 [info] UploadPackV2: pack generated, 2313 bytes
01:47:32.890 [info] UploadPackV2: fetch response 2335 bytes
01:47:32.900 [info] UploadPackV2: processing fetch command
01:47:32.900 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.901 [info] UploadPackV2: collected 21 objects, generating pack
01:47:32.902 [info] UploadPackV2: pack generated, 1463 bytes
01:47:32.902 [info] UploadPackV2: fetch response 1485 bytes
01:47:32.912 [info] UploadPackV2: processing fetch command
01:47:32.912 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.914 [info] UploadPackV2: collected 32 objects, generating pack
01:47:32.915 [info] UploadPackV2: pack generated, 2313 bytes
01:47:32.915 [info] UploadPackV2: fetch response 2335 bytes
01:47:32.926 [info] UploadPackV2: processing fetch command
01:47:32.926 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.928 [info] UploadPackV2: collected 27 objects, generating pack
01:47:32.928 [info] UploadPackV2: pack generated, 1889 bytes
01:47:32.928 [info] UploadPackV2: fetch response 1911 bytes
01:47:32.938 [info] UploadPackV2: processing fetch command
01:47:32.938 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:47:32.938 [info] UploadPackV2: collected 3 objects, generating pack
01:47:32.938 [info] UploadPackV2: pack generated, 214 bytes
01:47:32.938 [info] UploadPackV2: fetch response 236 bytes
01:47:32.942 [info] The function passed as a handler with ID #Reference<0.332983561.3954704385.73704> 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
01:47:33.043 [info] UploadPackV2: processing ls-refs command
01:47:33.044 [info] UploadPackV2: processing fetch command
01:47:33.047 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:47:33.050 [info] UploadPackV2: collected 3 objects, generating pack
01:47:33.051 [info] UploadPackV2: pack generated, 210 bytes
.
01:47:33.051 [info] UploadPackV2: fetch response 232 bytes
.
01:47:33.364 [info] UploadPackV2: processing fetch command
.
01:47:33.364 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
01:47:33.365 [info] UploadPackV2: fetch response 73 bytes
.
01:47:33.365 [info] UploadPackV2: processing fetch command
.
01:47:33.365 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
01:47:33.368 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: module attribute @git_lfs_available was set but never used
│
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
│
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: 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: 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)
.........................................................................................................................................................................................................................
01:47:40.401 [warning] post_receive hook failed: "webhook failed"
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
............................................................................................................................................................................................................
01:48:02.477 [info] UploadPackV2: processing ls-refs command
01:48:02.480 [info] UploadPackV2: processing fetch command
01:48:02.480 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
01:48:02.480 [info] UploadPackV2: collected 3 objects, generating pack
01:48:02.481 [info] UploadPackV2: pack generated, 381 bytes
01:48:02.481 [info] UploadPackV2: fetch response 403 bytes
.
01:48:02.545 [info] UploadPackV2: processing ls-refs command
.
01:48:02.601 [info] UploadPackV2: processing ls-refs command
01:48:02.603 [info] UploadPackV2: processing fetch command
01:48:02.603 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:02.604 [info] UploadPackV2: collected 9 objects, generating pack
01:48:02.605 [info] UploadPackV2: pack generated, 585 bytes
01:48:02.605 [info] UploadPackV2: fetch response 681 bytes
.
01:48:02.689 [info] UploadPackV2: processing ls-refs command
01:48:02.691 [info] UploadPackV2: processing fetch command
01:48:02.691 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:02.692 [info] UploadPackV2: collected 3 objects, generating pack
01:48:02.692 [info] UploadPackV2: pack generated, 216 bytes
01:48:02.692 [info] UploadPackV2: fetch response 312 bytes
01:48:02.757 [info] UploadPackV2: processing ls-refs command
01:48:02.758 [info] UploadPackV2: processing fetch command
01:48:02.758 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:02.759 [info] UploadPackV2: collected 12 objects, generating pack
01:48:02.760 [info] UploadPackV2: pack generated, 768 bytes
01:48:02.760 [info] UploadPackV2: fetch response 1002 bytes
.
01:48:02.821 [info] UploadPackV2: processing ls-refs command
.
01:48:02.881 [info] UploadPackV2: processing ls-refs command
01:48:02.884 [info] UploadPackV2: processing fetch command
01:48:02.884 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:48:02.885 [info] UploadPackV2: collected 6 objects, generating pack
01:48:02.886 [info] UploadPackV2: pack generated, 513 bytes
01:48:02.886 [info] UploadPackV2: fetch response 535 bytes
.
01:48:02.953 [info] UploadPackV2: processing ls-refs command
.
01:48:03.005 [info] UploadPackV2: processing ls-refs command
01:48:03.009 [info] UploadPackV2: processing fetch command
01:48:03.009 [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
01:48:03.010 [info] UploadPackV2: collected 6 objects, generating pack
01:48:03.011 [info] UploadPackV2: pack generated, 513 bytes
01:48:03.011 [info] UploadPackV2: fetch response 535 bytes
.
01:48:03.089 [info] UploadPackV2: processing ls-refs command
01:48:03.093 [info] UploadPackV2: processing fetch command
01:48:03.094 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
01:48:03.095 [info] UploadPackV2: collected 3 objects, generating pack
01:48:03.095 [info] UploadPackV2: pack generated, 381 bytes
01:48:03.095 [info] UploadPackV2: fetch response 403 bytes
.
01:48:03.169 [info] UploadPackV2: processing ls-refs command
01:48:03.171 [info] UploadPackV2: processing fetch command
01:48:03.171 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:03.172 [info] UploadPackV2: collected 3 objects, generating pack
01:48:03.172 [info] UploadPackV2: pack generated, 216 bytes
01:48:03.172 [info] UploadPackV2: fetch response 312 bytes
.
01:48:03.245 [info] UploadPackV2: processing ls-refs command
.
01:48:03.301 [info] UploadPackV2: processing ls-refs command
01:48:03.304 [info] UploadPackV2: processing fetch command
01:48:03.304 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
01:48:03.305 [info] UploadPackV2: collected 5 objects, generating pack
01:48:03.306 [info] UploadPackV2: pack generated, 319 bytes
01:48:03.306 [info] UploadPackV2: fetch response 341 bytes
.
01:48:03.381 [info] UploadPackV2: processing ls-refs command
01:48:03.383 [info] UploadPackV2: processing fetch command
01:48:03.383 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:03.384 [info] UploadPackV2: collected 9 objects, generating pack
01:48:03.385 [info] UploadPackV2: pack generated, 549 bytes
01:48:03.385 [info] UploadPackV2: fetch response 571 bytes
01:48:03.404 [info] UploadPackV2: processing fetch command
01:48:03.404 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
01:48:03.405 [info] UploadPackV2: fetch response 171 bytes
..
01:48:03.465 [info] UploadPackV2: processing ls-refs command
01:48:03.467 [info] UploadPackV2: processing fetch command
01:48:03.467 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:03.467 [info] UploadPackV2: collected 3 objects, generating pack
01:48:03.468 [info] UploadPackV2: pack generated, 218 bytes
01:48:03.468 [info] UploadPackV2: fetch response 314 bytes
.
01:48:03.565 [info] UploadPackV2: processing ls-refs command
01:48:03.567 [info] UploadPackV2: processing fetch command
01:48:03.567 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:03.575 [info] UploadPackV2: collected 240 objects, generating pack
01:48:03.580 [info] UploadPackV2: pack generated, 16258 bytes
01:48:03.580 [info] UploadPackV2: fetch response 16280 bytes
.
01:48:03.612 [info] UploadPackV2: processing fetch command
01:48:03.612 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:03.612 [info] UploadPackV2: collected 0 objects, generating pack
01:48:03.612 [info] UploadPackV2: pack generated, 32 bytes
01:48:03.612 [info] UploadPackV2: fetch response 54 bytes
.
01:48:03.985 [info] UploadPackV2: processing ls-refs command
01:48:03.987 [info] UploadPackV2: processing fetch command
01:48:03.987 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:03.988 [info] UploadPackV2: collected 3 objects, generating pack
01:48:03.988 [info] UploadPackV2: pack generated, 231 bytes
01:48:03.988 [info] UploadPackV2: fetch response 327 bytes
.
01:48:04.121 [info] UploadPackV2: processing ls-refs command
01:48:04.123 [info] UploadPackV2: processing fetch command
01:48:04.123 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.147 [info] UploadPackV2: collected 600 objects, generating pack
01:48:04.166 [info] UploadPackV2: pack generated, 45197 bytes
01:48:04.166 [info] UploadPackV2: fetch response 45219 bytes
.
01:48:04.249 [info] UploadPackV2: processing ls-refs command
.
01:48:04.305 [info] UploadPackV2: processing ls-refs command
.
01:48:04.315 [info] UploadPackV2: processing fetch command
01:48:04.315 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.315 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.315 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.315 [info] UploadPackV2: fetch response 205 bytes
01:48:04.316 [info] UploadPackV2: processing fetch command
01:48:04.316 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.316 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.316 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.316 [info] UploadPackV2: fetch response 205 bytes
01:48:04.316 [info] UploadPackV2: processing fetch command
01:48:04.317 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.317 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.317 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.317 [info] UploadPackV2: fetch response 205 bytes
01:48:04.317 [info] UploadPackV2: processing fetch command
01:48:04.317 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.318 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.318 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.318 [info] UploadPackV2: fetch response 205 bytes
01:48:04.318 [info] UploadPackV2: processing fetch command
01:48:04.318 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.318 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.319 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.319 [info] UploadPackV2: fetch response 205 bytes
01:48:04.319 [info] UploadPackV2: processing fetch command
01:48:04.319 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.319 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.319 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.320 [info] UploadPackV2: fetch response 205 bytes
01:48:04.320 [info] UploadPackV2: processing fetch command
01:48:04.320 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.320 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.320 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.320 [info] UploadPackV2: fetch response 205 bytes
01:48:04.320 [info] UploadPackV2: processing fetch command
01:48:04.321 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.321 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.321 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.321 [info] UploadPackV2: fetch response 205 bytes
01:48:04.322 [info] UploadPackV2: processing fetch command
01:48:04.322 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.323 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.323 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.323 [info] UploadPackV2: fetch response 205 bytes
01:48:04.323 [info] UploadPackV2: processing fetch command
01:48:04.323 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.323 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.324 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.324 [info] UploadPackV2: fetch response 205 bytes
01:48:04.324 [info] UploadPackV2: processing fetch command
01:48:04.324 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.324 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.324 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.324 [info] UploadPackV2: fetch response 205 bytes
01:48:04.324 [info] UploadPackV2: processing fetch command
01:48:04.324 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.324 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.325 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.325 [info] UploadPackV2: fetch response 205 bytes
01:48:04.325 [info] UploadPackV2: processing fetch command
01:48:04.325 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.326 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.326 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.326 [info] UploadPackV2: fetch response 205 bytes
01:48:04.326 [info] UploadPackV2: processing fetch command
01:48:04.327 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.327 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.327 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.327 [info] UploadPackV2: fetch response 205 bytes
01:48:04.327 [info] UploadPackV2: processing fetch command
01:48:04.328 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.328 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.328 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.328 [info] UploadPackV2: fetch response 205 bytes
01:48:04.328 [info] UploadPackV2: processing fetch command
01:48:04.328 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.329 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.329 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.329 [info] UploadPackV2: fetch response 205 bytes
01:48:04.329 [info] UploadPackV2: processing fetch command
01:48:04.329 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.329 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.330 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.330 [info] UploadPackV2: fetch response 205 bytes
01:48:04.330 [info] UploadPackV2: processing fetch command
01:48:04.330 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.331 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.331 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.331 [info] UploadPackV2: fetch response 205 bytes
01:48:04.331 [info] UploadPackV2: processing fetch command
01:48:04.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.331 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.332 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.332 [info] UploadPackV2: fetch response 205 bytes
01:48:04.332 [info] UploadPackV2: processing fetch command
01:48:04.332 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.333 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.333 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.333 [info] UploadPackV2: fetch response 205 bytes
01:48:04.333 [info] UploadPackV2: processing fetch command
.
01:48:04.333 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.334 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.334 [info] UploadPackV2: pack generated, 183 bytes
*
01:48:04.334 [info] UploadPackV2: fetch response 205 bytes
**..................
01:48:04.405 [info] UploadPackV2: processing ls-refs command
01:48:04.407 [info] UploadPackV2: processing fetch command
01:48:04.407 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.407 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.408 [info] UploadPackV2: pack generated, 196 bytes
01:48:04.408 [info] UploadPackV2: fetch response 218 bytes
.
01:48:04.493 [info] UploadPackV2: processing ls-refs command
01:48:04.494 [info] UploadPackV2: processing fetch command
01:48:04.494 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:04.494 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.495 [info] UploadPackV2: pack generated, 200 bytes
01:48:04.495 [info] UploadPackV2: fetch response 256 bytes
.
01:48:04.557 [info] UploadPackV2: processing ls-refs command
01:48:04.559 [info] UploadPackV2: processing fetch command
01:48:04.559 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.560 [info] UploadPackV2: collected 15 objects, generating pack
01:48:04.561 [info] UploadPackV2: pack generated, 952 bytes
01:48:04.561 [info] UploadPackV2: fetch response 974 bytes
.
01:48:04.637 [info] UploadPackV2: processing ls-refs command
01:48:04.639 [info] UploadPackV2: processing fetch command
01:48:04.639 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.639 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.640 [info] UploadPackV2: pack generated, 185 bytes
01:48:04.640 [info] UploadPackV2: fetch response 207 bytes
01:48:04.705 [info] UploadPackV2: processing ls-refs command
.***********
01:48:04.769 [info] UploadPackV2: processing ls-refs command
01:48:04.771 [info] UploadPackV2: processing fetch command
01:48:04.771 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.772 [info] UploadPackV2: collected 6 objects, generating pack
01:48:04.772 [info] UploadPackV2: pack generated, 366 bytes
01:48:04.772 [info] UploadPackV2: fetch response 388 bytes
01:48:04.841 [info] UploadPackV2: processing ls-refs command
01:48:04.842 [info] UploadPackV2: processing fetch command
01:48:04.842 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
01:48:04.842 [info] UploadPackV2: fetch response 32 bytes
01:48:04.842 [info] UploadPackV2: processing fetch command
01:48:04.842 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.843 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.843 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.843 [info] UploadPackV2: fetch response 205 bytes
.
01:48:04.913 [info] UploadPackV2: processing ls-refs command
01:48:04.913 [info] UploadPackV2: processing ls-refs command
01:48:04.915 [info] UploadPackV2: processing fetch command
01:48:04.915 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.916 [info] UploadPackV2: collected 6 objects, generating pack
01:48:04.916 [info] UploadPackV2: pack generated, 365 bytes
01:48:04.916 [info] UploadPackV2: fetch response 387 bytes
01:48:04.917 [info] UploadPackV2: processing fetch command
01:48:04.917 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:04.917 [info] UploadPackV2: collected 6 objects, generating pack
01:48:04.918 [info] UploadPackV2: pack generated, 365 bytes
01:48:04.918 [info] UploadPackV2: fetch response 387 bytes
.
01:48:04.955 [info] UploadPackV2: processing fetch command
01:48:04.955 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:48:04.956 [info] UploadPackV2: collected 3 objects, generating pack
01:48:04.956 [info] UploadPackV2: pack generated, 183 bytes
01:48:04.956 [info] UploadPackV2: fetch response 205 bytes
01:48:05.009 [info] UploadPackV2: processing ls-refs command
01:48:05.011 [info] UploadPackV2: processing fetch command
01:48:05.011 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:05.012 [info] UploadPackV2: collected 9 objects, generating pack
01:48:05.012 [info] UploadPackV2: pack generated, 547 bytes
01:48:05.013 [info] UploadPackV2: fetch response 569 bytes
01:48:05.093 [info] UploadPackV2: processing ls-refs command
.
01:48:05.169 [info] UploadPackV2: processing ls-refs command
01:48:05.171 [info] UploadPackV2: processing fetch command
01:48:05.171 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:05.172 [info] UploadPackV2: collected 6 objects, generating pack
01:48:05.172 [info] UploadPackV2: pack generated, 365 bytes
01:48:05.172 [info] UploadPackV2: fetch response 387 bytes
.
01:48:20.345 [info] UploadPackV2: processing ls-refs command
01:48:20.346 [info] UploadPackV2: processing fetch command
01:48:20.346 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:48:20.346 [info] UploadPackV2: collected 3 objects, generating pack
01:48:20.347 [info] UploadPackV2: pack generated, 216 bytes
01:48:20.347 [info] UploadPackV2: fetch response 346 bytes
.
01:48:20.405 [info] UploadPackV2: processing ls-refs command
01:48:20.407 [info] UploadPackV2: processing fetch command
01:48:20.407 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:20.408 [info] UploadPackV2: collected 6 objects, generating pack
01:48:20.408 [info] UploadPackV2: pack generated, 365 bytes
01:48:20.408 [info] UploadPackV2: fetch response 387 bytes
01:48:20.429 [info] UploadPackV2: processing fetch command
01:48:20.429 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
01:48:20.430 [info] UploadPackV2: fetch response 122 bytes
.
01:48:20.505 [info] UploadPackV2: processing ls-refs command
01:48:20.507 [info] UploadPackV2: processing fetch command
01:48:20.507 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:20.510 [info] UploadPackV2: collected 90 objects, generating pack
01:48:20.512 [info] UploadPackV2: pack generated, 5649 bytes
01:48:20.512 [info] UploadPackV2: fetch response 5671 bytes
01:48:20.805 [info] UploadPackV2: processing ls-refs command
.
01:48:20.929 [info] UploadPackV2: processing ls-refs command
01:48:20.931 [info] UploadPackV2: processing fetch command
01:48:20.931 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:20.932 [info] UploadPackV2: collected 6 objects, generating pack
01:48:20.932 [info] UploadPackV2: pack generated, 365 bytes
01:48:20.932 [info] UploadPackV2: fetch response 387 bytes
01:48:23.245 [info] UploadPackV2: processing ls-refs command
.
01:48:23.251 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303406463" 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
01:48:23.251 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303406431" 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
.
01:48:23.252 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303406399" 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
01:48:23.252 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303406367" 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
.
01:48:23.253 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303406335" 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
01:48:23.254 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303406303" 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
.
01:48:23.255 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303406271" 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
01:48:23.255 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303408926" 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
...
01:48:23.270 [info] The function passed as a handler with ID "graph-query-test-17314" 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
....
01:48:23.275 [info] The function passed as a handler with ID "graph-query-test-17442" 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
.......
01:48:23.285 [info] The function passed as a handler with ID "graph-query-test-15011" 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
.....*****
01:48:24.633 [info] UploadPackV2: processing ls-refs command
01:48:24.635 [info] UploadPackV2: processing fetch command
01:48:24.635 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:24.636 [info] UploadPackV2: collected 3 objects, generating pack
01:48:24.636 [info] UploadPackV2: pack generated, 196 bytes
01:48:24.636 [info] UploadPackV2: fetch response 218 bytes
.
01:48:24.737 [info] UploadPackV2: processing ls-refs command
01:48:24.739 [info] UploadPackV2: processing fetch command
01:48:24.739 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:48:24.740 [info] UploadPackV2: collected 3 objects, generating pack
01:48:24.740 [info] UploadPackV2: pack generated, 185 bytes
01:48:24.740 [info] UploadPackV2: fetch response 207 bytes
.....
01:49:25.137 [info] UploadPackV2: processing ls-refs command
01:49:25.139 [info] UploadPackV2: processing fetch command
01:49:25.139 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:49:25.139 [info] UploadPackV2: collected 6 objects, generating pack
01:49:25.140 [info] UploadPackV2: pack generated, 365 bytes
01:49:25.140 [info] UploadPackV2: fetch response 387 bytes
.
01:49:25.225 [info] UploadPackV2: processing ls-refs command
01:49:25.227 [info] UploadPackV2: processing fetch command
01:49:25.227 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:49:25.227 [info] UploadPackV2: collected 6 objects, generating pack
01:49:25.228 [info] UploadPackV2: pack generated, 365 bytes
01:49:25.228 [info] UploadPackV2: fetch response 387 bytes
..
01:49:55.449 [info] UploadPackV2: processing ls-refs command
01:49:55.451 [info] UploadPackV2: processing fetch command
01:49:55.451 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:49:55.452 [info] UploadPackV2: collected 3 objects, generating pack
01:49:55.452 [info] UploadPackV2: pack generated, 183 bytes
01:49:55.452 [info] UploadPackV2: fetch response 205 bytes
.
01:50:10.589 [info] UploadPackV2: processing ls-refs command
01:50:10.591 [info] UploadPackV2: processing fetch command
01:50:10.591 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:50:10.591 [info] UploadPackV2: collected 3 objects, generating pack
01:50:10.591 [info] UploadPackV2: pack generated, 201 bytes
01:50:10.591 [info] UploadPackV2: fetch response 223 bytes
..
01:50:40.801 [info] UploadPackV2: processing ls-refs command
01:50:40.803 [info] UploadPackV2: processing fetch command
01:50:40.803 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:50:40.804 [info] UploadPackV2: collected 3 objects, generating pack
01:50:40.804 [info] UploadPackV2: pack generated, 183 bytes
01:50:40.804 [info] UploadPackV2: fetch response 205 bytes
..
01:50:55.940 [info] The function passed as a handler with ID "telemetry-test-17730" 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
*
01:50:55.940 [info] UploadPackV2: processing fetch command
*
01:50:55.940 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:50:55.941 [info] UploadPackV2: collected 3 objects, generating pack
.
01:50:55.941 [info] UploadPackV2: pack generated, 186 bytes
.
01:50:55.941 [info] UploadPackV2: fetch response 208 bytes
01:50:55.941 [info] The function passed as a handler with ID "telemetry-test-17762" 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
01:50:55.941 [info] UploadPackV2: processing fetch command
01:50:55.941 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:50:55.942 [info] UploadPackV2: collected 2 objects, generating pack
01:50:55.942 [info] UploadPackV2: pack generated, 169 bytes
01:50:55.942 [info] UploadPackV2: fetch response 191 bytes
01:50:55.942 [info] The function passed as a handler with ID "telemetry-test-17794" 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
01:50:55.942 [info] UploadPackV2: processing fetch command
01:50:55.942 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:50:55.942 [info] UploadPackV2: collected 3 objects, generating pack
01:50:55.942 [info] UploadPackV2: pack generated, 183 bytes
01:50:55.943 [info] UploadPackV2: fetch response 205 bytes
01:50:55.950 [info] The function passed as a handler with ID "telemetry-test-17826" 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
.
01:51:11.044 [info] UploadPackV2: processing ls-refs command
01:51:11.047 [info] UploadPackV2: processing fetch command
01:51:11.048 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:51:11.048 [info] UploadPackV2: collected 3 objects, generating pack
01:51:11.048 [info] UploadPackV2: pack generated, 183 bytes
01:51:11.048 [info] UploadPackV2: fetch response 205 bytes
.
01:51:11.154 [info] UploadPackV2: processing fetch command
01:51:11.154 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:51:11.155 [info] UploadPackV2: collected 3 objects, generating pack
01:51:11.155 [info] UploadPackV2: pack generated, 183 bytes
01:51:11.155 [info] UploadPackV2: fetch response 205 bytes
.
01:51:11.182 [info] UploadPackV2: processing ls-refs command
01:51:11.185 [info] UploadPackV2: processing fetch command
01:51:11.186 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:51:11.186 [info] UploadPackV2: collected 6 objects, generating pack
01:51:11.186 [info] UploadPackV2: pack generated, 366 bytes
01:51:11.186 [info] UploadPackV2: fetch response 388 bytes
01:51:11.221 [info] UploadPackV2: processing ls-refs command
.
01:51:11.246 [info] UploadPackV2: processing ls-refs command
01:51:11.249 [info] UploadPackV2: processing fetch command
01:51:11.249 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:51:11.250 [info] UploadPackV2: collected 15 objects, generating pack
01:51:11.251 [info] UploadPackV2: pack generated, 919 bytes
01:51:11.251 [info] UploadPackV2: fetch response 941 bytes
..
01:51:11.333 [info] UploadPackV2: processing ls-refs command
01:51:11.336 [info] UploadPackV2: processing fetch command
01:51:11.336 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:51:11.337 [info] UploadPackV2: collected 9 objects, generating pack
01:51:11.338 [info] UploadPackV2: pack generated, 549 bytes
01:51:11.338 [info] UploadPackV2: fetch response 571 bytes
01:51:11.369 [info] UploadPackV2: processing ls-refs command
.
01:51:11.407 [info] UploadPackV2: processing ls-refs command
01:51:11.410 [info] UploadPackV2: processing fetch command
01:51:11.410 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:51:11.415 [info] UploadPackV2: collected 180 objects, generating pack
01:51:11.418 [info] UploadPackV2: pack generated, 11106 bytes
01:51:11.418 [info] UploadPackV2: fetch response 11128 bytes
.
Finished in 227.2 seconds (38.2s async, 189.0s sync)
Result: 1062 passed (15 properties, 1047 tests), 21 skipped, 58 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"]
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