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:32 UTC
Completed: Jun 18, 2026 at 01:36 UTC
Duration: 3m 57s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 2 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 982850, max_cases: 8
Excluding tags: [:s3]
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:151:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: 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: 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)
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:32:12.144 [info] UploadPackV2: processing fetch command
01:32:12.229 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:12.231 [info] UploadPackV2: collected 3 objects, generating pack
01:32:12.232 [info] UploadPackV2: pack generated, 223 bytes
.
01:32:12.232 [info] UploadPackV2: fetch response 245 bytes
01:32:12.233 [info] UploadPackV2: processing fetch command
01:32:12.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:12.234 [info] UploadPackV2: collected 3 objects, generating pack
01:32:12.236 [info] UploadPackV2: pack generated, 195 bytes
01:32:12.236 [info] UploadPackV2: fetch response 217 bytes
01:32:12.245 [info] UploadPackV2: processing fetch command
01:32:12.245 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:12.249 [info] UploadPackV2: collected 3 objects, generating pack
01:32:12.249 [info] UploadPackV2: pack generated, 195 bytes
01:32:12.250 [info] UploadPackV2: fetch response 217 bytes
01:32:12.435 [info] UploadPackV2: processing fetch command
01:32:12.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:12.446 [info] UploadPackV2: collected 32 objects, generating pack
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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:32:12.820 [info] UploadPackV2: pack generated, 2459814 bytes
..
01:32:12.836 [info] UploadPackV2: fetch response 2460021 bytes
.
01:32:12.837 [info] UploadPackV2: processing fetch command
...
01:32:12.837 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:12.864 [info] UploadPackV2: collected 32 objects, streaming pack
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
........
01:32:12.952 [info] The function passed as a handler with ID #Reference<0.1744830155.3682861058.230850> 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:32:13.243 [info] UploadPackV2: streamed pack 2459814 bytes, 32 objects
01:32:13.243 [info] UploadPackV2: fetch streamed 2459814 pack bytes, 32 objects
.......
01:32:14.289 [info] UploadPackV2: processing ls-refs command
.
01:32:14.296 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
..
01:32:14.316 [info] UploadPackV2: processing fetch command
01:32:14.316 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:14.320 [info] UploadPackV2: collected 15 objects, generating pack
01:32:14.322 [info] UploadPackV2: pack generated, 984 bytes
.
01:32:14.323 [info] UploadPackV2: fetch response 1006 bytes
....
01:32:14.376 [info] The function passed as a handler with ID "test-fail-#Reference<0.1744830155.3682861060.220644>" 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:32:14.378 [info] The function passed as a handler with ID "test-#Reference<0.1744830155.3682861060.220658>" 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:32:14.572 [info] UploadPackV2: processing fetch command
.
01:32:14.573 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
01:32:14.597 [info] UploadPackV2: collected 32 objects, streaming pack
..........
01:32:14.768 [info] UploadPackV2: streamed pack 2459755 bytes, 32 objects
01:32:14.768 [info] UploadPackV2: fetch streamed 2459755 pack bytes, 32 objects
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
.........
01:32:14.995 [info] UploadPackV2: processing ls-refs command
.
01:32:14.995 [info] UploadPackV2: processing ls-refs command
.
01:32:14.996 [info] UploadPackV2: processing ls-refs command
01:32:14.997 [info] UploadPackV2: processing fetch command
01:32:14.997 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:14.997 [info] UploadPackV2: collected 3 objects, generating pack
.
01:32:14.997 [info] UploadPackV2: pack generated, 206 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
│
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:32:14.997 [info] UploadPackV2: fetch response 228 bytes
01:32:15.001 [info] UploadPackV2: processing fetch command
01:32:15.002 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:15.002 [info] UploadPackV2: collected 3 objects, streaming pack
01:32:15.010 [info] UploadPackV2: streamed pack 71877 bytes, 3 objects
01:32:15.010 [info] UploadPackV2: fetch streamed 71877 pack bytes, 3 objects
01:32:15.023 [info] UploadPackV2: processing fetch command
01:32:15.023 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:15.028 [info] UploadPackV2: collected 90 objects, generating pack
01:32:15.030 [info] UploadPackV2: pack generated, 5946 bytes
01:32:15.030 [info] UploadPackV2: fetch response 5968 bytes
01:32:15.100 [info] UploadPackV2: processing ls-refs command
01:32:15.102 [info] UploadPackV2: processing fetch command
01:32:15.102 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:15.104 [info] UploadPackV2: collected 3 objects, generating pack
01:32:15.104 [info] UploadPackV2: pack generated, 210 bytes
.
01:32:15.104 [info] UploadPackV2: fetch response 232 bytes
..........
01:32:15.222 [info] UploadPackV2: processing fetch command
01:32:15.222 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:15.226 [info] UploadPackV2: collected 6 objects, generating pack
.
01:32:15.226 [info] UploadPackV2: pack generated, 414 bytes
.
01:32:15.227 [info] UploadPackV2: fetch response 436 bytes
.
01:32:15.229 [info] UploadPackV2: processing fetch command
01:32:15.229 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:15.230 [info] UploadPackV2: collected 0 objects, generating pack
01:32:15.230 [info] UploadPackV2: pack generated, 32 bytes
01:32:15.230 [info] UploadPackV2: fetch response 54 bytes
01:32:15.230 [info] UploadPackV2: processing fetch command
01:32:15.230 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:15.231 [info] UploadPackV2: collected 3 objects, streaming pack
01:32:15.231 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
01:32:15.232 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
...............
01:32:15.328 [info] UploadPackV2: processing fetch command
.
01:32:15.329 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....................
01:32:15.475 [info] UploadPackV2: collected 700 objects, generating pack
..
01:32:15.498 [info] UploadPackV2: pack generated, 48139 bytes
01:32:15.498 [info] UploadPackV2: fetch response 48161 bytes
.
01:32:15.724 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
01:32:15.729 [info] UploadPackV2: processing fetch command
.
01:32:15.729 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:15.729 [info] UploadPackV2: collected 3 objects, generating pack
.
01:32:15.730 [info] UploadPackV2: pack generated, 191 bytes
.
01:32:15.730 [info] UploadPackV2: fetch response 213 bytes
.
01:32:15.731 [info] UploadPackV2: processing fetch command
.
01:32:15.731 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:15.732 [info] UploadPackV2: collected 9 objects, streaming pack
.
01:32:15.736 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
01:32:15.736 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.......
01:32:15.977 [info] UploadPackV2: processing fetch command
01:32:15.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
................
01:32:16.069 [info] UploadPackV2: collected 600 objects, generating pack
01:32:16.111 [info] UploadPackV2: pack generated, 39862 bytes
01:32:16.111 [info] UploadPackV2: fetch response 39884 bytes
.....
01:32:16.177 [info] UploadPackV2: processing fetch command
.
01:32:16.177 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:16.177 [info] UploadPackV2: collected 3 objects, generating pack
.
01:32:16.177 [info] UploadPackV2: pack generated, 191 bytes
.
01:32:16.177 [info] UploadPackV2: fetch response 213 bytes
................
01:32:16.178 [info] UploadPackV2: processing fetch command
.
01:32:16.178 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:16.178 [info] UploadPackV2: collected 3 objects, generating pack
.
01:32:16.178 [info] UploadPackV2: pack generated, 194 bytes
.
01:32:16.178 [info] UploadPackV2: fetch response 216 bytes
.
01:32:16.178 [info] UploadPackV2: processing fetch command
.
01:32:16.178 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:16.179 [info] UploadPackV2: collected 3 objects, generating pack
.
01:32:16.179 [info] UploadPackV2: pack generated, 191 bytes
.
01:32:16.179 [info] UploadPackV2: fetch response 213 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
.
01:32:16.179 [info] UploadPackV2: processing ls-refs command
.
01:32:16.180 [info] UploadPackV2: processing fetch command
.
01:32:16.180 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:16.181 [info] UploadPackV2: collected 15 objects, generating pack
.
01:32:16.181 [info] UploadPackV2: pack generated, 984 bytes
.
01:32:16.181 [info] UploadPackV2: fetch response 1006 bytes
.
01:32:16.181 [info] UploadPackV2: processing fetch command
01:32:16.181 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:16.182 [info] UploadPackV2: collected 15 objects, streaming pack
01:32:16.184 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
01:32:16.184 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
01:32:16.186 [info] UploadPackV2: processing fetch command
.
01:32:16.186 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
01:32:16.187 [info] UploadPackV2: fetch response 73 bytes
.
01:32:16.187 [info] UploadPackV2: processing fetch command
.
01:32:16.187 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
01:32:16.187 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
01:32:17.100 [info] The function passed as a handler with ID #Reference<0.1744830155.3682861059.239826> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: the variable "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: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: the variable "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
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)
.......................................................................................................................................................................................................................
01:32:22.075 [info] UploadPackV2: processing fetch command
01:32:22.075 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.076 [info] UploadPackV2: collected 14 objects, generating pack
01:32:22.077 [info] UploadPackV2: pack generated, 1021 bytes
01:32:22.077 [info] UploadPackV2: fetch response 1043 bytes
01:32:22.085 [info] UploadPackV2: processing fetch command
01:32:22.085 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.086 [info] UploadPackV2: collected 5 objects, generating pack
01:32:22.087 [info] UploadPackV2: pack generated, 424 bytes
01:32:22.088 [info] UploadPackV2: fetch response 446 bytes
01:32:22.098 [info] UploadPackV2: processing fetch command
01:32:22.098 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.099 [info] UploadPackV2: collected 6 objects, generating pack
01:32:22.101 [info] UploadPackV2: pack generated, 428 bytes
.
01:32:22.102 [info] UploadPackV2: fetch response 450 bytes
01:32:22.112 [info] UploadPackV2: processing fetch command
01:32:22.112 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.113 [info] UploadPackV2: collected 14 objects, generating pack
01:32:22.114 [info] UploadPackV2: pack generated, 1062 bytes
01:32:22.114 [info] UploadPackV2: fetch response 1084 bytes
01:32:22.123 [info] UploadPackV2: processing fetch command
01:32:22.123 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.126 [info] UploadPackV2: collected 36 objects, generating pack
01:32:22.127 [info] UploadPackV2: pack generated, 2530 bytes
01:32:22.127 [info] UploadPackV2: fetch response 2552 bytes
01:32:22.138 [info] UploadPackV2: processing fetch command
01:32:22.138 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.139 [info] UploadPackV2: collected 15 objects, generating pack
01:32:22.140 [info] UploadPackV2: pack generated, 1068 bytes
01:32:22.140 [info] UploadPackV2: fetch response 1090 bytes
01:32:22.148 [info] UploadPackV2: processing fetch command
01:32:22.148 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.150 [info] UploadPackV2: collected 25 objects, generating pack
01:32:22.151 [info] UploadPackV2: pack generated, 1872 bytes
01:32:22.151 [info] UploadPackV2: fetch response 1894 bytes
01:32:22.160 [info] UploadPackV2: processing fetch command
01:32:22.160 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.160 [info] UploadPackV2: collected 6 objects, generating pack
01:32:22.161 [info] UploadPackV2: pack generated, 428 bytes
01:32:22.161 [info] UploadPackV2: fetch response 450 bytes
01:32:22.171 [info] UploadPackV2: processing fetch command
01:32:22.171 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.173 [info] UploadPackV2: collected 18 objects, generating pack
01:32:22.173 [info] UploadPackV2: pack generated, 1250 bytes
01:32:22.174 [info] UploadPackV2: fetch response 1272 bytes
01:32:22.180 [info] UploadPackV2: processing fetch command
01:32:22.180 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.180 [info] UploadPackV2: collected 6 objects, generating pack
01:32:22.181 [info] UploadPackV2: pack generated, 428 bytes
01:32:22.181 [info] UploadPackV2: fetch response 450 bytes
01:32:22.187 [info] UploadPackV2: processing fetch command
01:32:22.187 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.188 [info] UploadPackV2: collected 11 objects, generating pack
01:32:22.189 [info] UploadPackV2: pack generated, 853 bytes
01:32:22.189 [info] UploadPackV2: fetch response 875 bytes
01:32:22.209 [info] UploadPackV2: processing fetch command
01:32:22.212 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.218 [info] UploadPackV2: collected 44 objects, generating pack
01:32:22.221 [info] UploadPackV2: pack generated, 3134 bytes
01:32:22.223 [info] UploadPackV2: fetch response 3156 bytes
01:32:22.255 [info] UploadPackV2: processing fetch command
01:32:22.255 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.259 [info] UploadPackV2: collected 17 objects, generating pack
01:32:22.260 [info] UploadPackV2: pack generated, 1278 bytes
01:32:22.260 [info] UploadPackV2: fetch response 1300 bytes
01:32:22.281 [info] UploadPackV2: processing fetch command
01:32:22.281 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.286 [info] UploadPackV2: collected 20 objects, generating pack
01:32:22.286 [info] UploadPackV2: pack generated, 1450 bytes
01:32:22.287 [info] UploadPackV2: fetch response 1472 bytes
01:32:22.303 [info] UploadPackV2: processing fetch command
01:32:22.303 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.306 [info] UploadPackV2: collected 9 objects, generating pack
01:32:22.306 [info] UploadPackV2: pack generated, 642 bytes
01:32:22.306 [info] UploadPackV2: fetch response 664 bytes
01:32:22.319 [info] UploadPackV2: processing fetch command
01:32:22.319 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.323 [info] UploadPackV2: collected 20 objects, generating pack
01:32:22.325 [info] UploadPackV2: pack generated, 1429 bytes
01:32:22.325 [info] UploadPackV2: fetch response 1451 bytes
01:32:22.344 [info] UploadPackV2: processing fetch command
01:32:22.345 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.348 [info] UploadPackV2: collected 5 objects, generating pack
01:32:22.348 [info] UploadPackV2: pack generated, 424 bytes
01:32:22.348 [info] UploadPackV2: fetch response 446 bytes
01:32:22.366 [info] UploadPackV2: processing fetch command
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
01:32:22.366 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.370 [info] UploadPackV2: collected 34 objects, generating pack
01:32:22.372 [info] UploadPackV2: pack generated, 2510 bytes
01:32:22.372 [info] UploadPackV2: fetch response 2532 bytes
....
01:32:22.492 [info] UploadPackV2: processing fetch command
.
01:32:22.492 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.500 [info] UploadPackV2: collected 21 objects, generating pack
.
01:32:22.506 [info] UploadPackV2: pack generated, 1432 bytes
.
01:32:22.506 [info] UploadPackV2: fetch response 1454 bytes
.
01:32:22.537 [info] UploadPackV2: processing fetch command
.
01:32:22.537 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.540 [info] UploadPackV2: collected 3 objects, generating pack
01:32:22.540 [info] UploadPackV2: pack generated, 214 bytes
01:32:22.540 [info] UploadPackV2: fetch response 236 bytes
01:32:22.547 [info] UploadPackV2: processing fetch command
01:32:22.547 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.550 [info] UploadPackV2: collected 32 objects, generating pack
01:32:22.551 [info] UploadPackV2: pack generated, 2304 bytes
01:32:22.552 [info] UploadPackV2: fetch response 2326 bytes
01:32:22.568 [info] UploadPackV2: processing fetch command
01:32:22.568 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.576 [info] UploadPackV2: collected 20 objects, generating pack
01:32:22.576 [info] UploadPackV2: pack generated, 1490 bytes
01:32:22.577 [info] UploadPackV2: fetch response 1512 bytes
01:32:22.589 [info] UploadPackV2: processing fetch command
01:32:22.589 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.591 [info] UploadPackV2: collected 20 objects, generating pack
01:32:22.592 [info] UploadPackV2: pack generated, 1490 bytes
01:32:22.592 [info] UploadPackV2: fetch response 1512 bytes
01:32:22.600 [info] UploadPackV2: processing fetch command
01:32:22.601 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.602 [info] UploadPackV2: collected 9 objects, generating pack
01:32:22.602 [info] UploadPackV2: pack generated, 610 bytes
01:32:22.602 [info] UploadPackV2: fetch response 632 bytes
01:32:22.606 [info] UploadPackV2: processing fetch command
01:32:22.606 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.607 [info] UploadPackV2: collected 6 objects, generating pack
01:32:22.607 [info] UploadPackV2: pack generated, 428 bytes
01:32:22.607 [info] UploadPackV2: fetch response 450 bytes
01:32:22.615 [info] UploadPackV2: processing fetch command
01:32:22.616 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.616 [info] UploadPackV2: collected 3 objects, generating pack
01:32:22.616 [info] UploadPackV2: pack generated, 214 bytes
01:32:22.616 [info] UploadPackV2: fetch response 236 bytes
01:32:22.623 [info] UploadPackV2: processing fetch command
01:32:22.623 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.624 [info] UploadPackV2: collected 23 objects, generating pack
01:32:22.626 [info] UploadPackV2: pack generated, 1662 bytes
01:32:22.626 [info] UploadPackV2: fetch response 1684 bytes
01:32:22.638 [info] UploadPackV2: processing fetch command
01:32:22.639 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.641 [info] UploadPackV2: collected 35 objects, generating pack
01:32:22.643 [info] UploadPackV2: pack generated, 2497 bytes
01:32:22.643 [info] UploadPackV2: fetch response 2519 bytes
01:32:22.678 [info] UploadPackV2: processing fetch command
01:32:22.679 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.679 [info] UploadPackV2: collected 5 objects, generating pack
01:32:22.680 [info] UploadPackV2: pack generated, 424 bytes
01:32:22.680 [info] UploadPackV2: fetch response 446 bytes
01:32:22.686 [info] UploadPackV2: processing fetch command
01:32:22.686 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.688 [info] UploadPackV2: collected 46 objects, generating pack
01:32:22.689 [info] UploadPackV2: pack generated, 3359 bytes
01:32:22.689 [info] UploadPackV2: fetch response 3381 bytes
01:32:22.716 [info] UploadPackV2: processing fetch command
01:32:22.720 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.722 [info] UploadPackV2: collected 25 objects, generating pack
01:32:22.723 [info] UploadPackV2: pack generated, 1870 bytes
01:32:22.723 [info] UploadPackV2: fetch response 1892 bytes
01:32:22.738 [info] UploadPackV2: processing fetch command
01:32:22.738 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.739 [info] UploadPackV2: collected 11 objects, generating pack
01:32:22.739 [info] UploadPackV2: pack generated, 807 bytes
01:32:22.740 [info] UploadPackV2: fetch response 829 bytes
.
01:32:22.755 [info] UploadPackV2: processing fetch command
.............
01:32:22.755 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.757 [info] UploadPackV2: collected 35 objects, generating pack
.
01:32:22.762 [info] UploadPackV2: pack generated, 2517 bytes
.
01:32:22.762 [info] UploadPackV2: fetch response 2539 bytes
.
01:32:22.786 [info] UploadPackV2: processing fetch command
.
01:32:22.786 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.787 [info] UploadPackV2: collected 22 objects, generating pack
.
01:32:22.788 [info] UploadPackV2: pack generated, 1660 bytes
.
01:32:22.788 [info] UploadPackV2: fetch response 1682 bytes
.
01:32:22.810 [info] UploadPackV2: processing fetch command
.
01:32:22.810 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.812 [info] UploadPackV2: collected 30 objects, generating pack
.
01:32:22.813 [info] UploadPackV2: pack generated, 2103 bytes
.
01:32:22.813 [info] UploadPackV2: fetch response 2125 bytes
.
01:32:22.833 [info] UploadPackV2: processing fetch command
.
01:32:22.834 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.834 [info] UploadPackV2: collected 20 objects, generating pack
.
01:32:22.835 [info] UploadPackV2: pack generated, 1492 bytes
.
01:32:22.835 [info] UploadPackV2: fetch response 1514 bytes
.
01:32:22.851 [info] UploadPackV2: processing fetch command
.
01:32:22.851 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.852 [info] UploadPackV2: collected 21 objects, generating pack
.
01:32:22.852 [info] UploadPackV2: pack generated, 1463 bytes
.
01:32:22.852 [info] UploadPackV2: fetch response 1485 bytes
.
01:32:22.876 [info] UploadPackV2: processing fetch command
.
01:32:22.876 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.882 [info] UploadPackV2: collected 26 objects, generating pack
.
01:32:22.884 [info] UploadPackV2: pack generated, 1886 bytes
.
01:32:22.884 [info] UploadPackV2: fetch response 1908 bytes
.
01:32:22.908 [info] UploadPackV2: processing fetch command
.
01:32:22.908 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
01:32:22.913 [info] UploadPackV2: collected 24 objects, generating pack
.
01:32:22.915 [info] UploadPackV2: pack generated, 1645 bytes
.
01:32:22.915 [info] UploadPackV2: fetch response 1667 bytes
.
01:32:22.940 [info] UploadPackV2: processing fetch command
....
01:32:22.940 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:32:22.945 [info] UploadPackV2: collected 11 objects, generating pack
01:32:22.945 [info] UploadPackV2: pack generated, 853 bytes
01:32:22.946 [info] UploadPackV2: fetch response 875 bytes
01:32:22.960 [info] UploadPackV2: processing fetch command
01:32:22.960 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:22.962 [info] UploadPackV2: collected 19 objects, generating pack
01:32:22.963 [info] UploadPackV2: pack generated, 1144 bytes
01:32:22.963 [info] UploadPackV2: fetch response 1166 bytes
01:32:22.970 [info] UploadPackV2: processing fetch command
01:32:23.068 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.069 [info] UploadPackV2: collected 7 objects, generating pack
01:32:23.069 [info] UploadPackV2: pack generated, 475 bytes
01:32:23.069 [info] UploadPackV2: fetch response 497 bytes
01:32:23.072 [info] UploadPackV2: processing fetch command
01:32:23.072 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.073 [info] UploadPackV2: collected 8 objects, generating pack
.
01:32:23.073 [info] UploadPackV2: pack generated, 482 bytes
.
01:32:23.073 [info] UploadPackV2: fetch response 504 bytes
.
01:32:23.078 [info] UploadPackV2: processing fetch command
01:32:23.078 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.079 [info] UploadPackV2: collected 19 objects, generating pack
01:32:23.080 [info] UploadPackV2: pack generated, 1194 bytes
01:32:23.080 [info] UploadPackV2: fetch response 1216 bytes
01:32:23.092 [info] UploadPackV2: processing fetch command
01:32:23.092 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.097 [info] UploadPackV2: collected 48 objects, generating pack
01:32:23.098 [info] UploadPackV2: pack generated, 2854 bytes
01:32:23.098 [info] UploadPackV2: fetch response 2876 bytes
01:32:23.124 [info] UploadPackV2: processing fetch command
01:32:23.125 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.126 [info] UploadPackV2: collected 20 objects, generating pack
01:32:23.127 [info] UploadPackV2: pack generated, 1203 bytes
01:32:23.127 [info] UploadPackV2: fetch response 1225 bytes
01:32:23.140 [info] UploadPackV2: processing fetch command
01:32:23.140 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.147 [info] UploadPackV2: collected 34 objects, generating pack
.
01:32:23.150 [info] UploadPackV2: pack generated, 2100 bytes
01:32:23.150 [info] UploadPackV2: fetch response 2122 bytes
01:32:23.157 [info] UploadPackV2: processing fetch command
01:32:23.157 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.159 [info] UploadPackV2: collected 8 objects, generating pack
.
01:32:23.159 [info] UploadPackV2: pack generated, 482 bytes
.
01:32:23.160 [info] UploadPackV2: fetch response 504 bytes
.
01:32:23.164 [info] UploadPackV2: processing fetch command
.
01:32:23.164 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.168 [info] UploadPackV2: collected 24 objects, generating pack
.
01:32:23.169 [info] UploadPackV2: pack generated, 1412 bytes
.
01:32:23.169 [info] UploadPackV2: fetch response 1434 bytes
01:32:23.175 [info] UploadPackV2: processing fetch command
01:32:23.175 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.185 [info] UploadPackV2: collected 8 objects, generating pack
.
01:32:23.185 [info] UploadPackV2: pack generated, 482 bytes
.
01:32:23.186 [info] UploadPackV2: fetch response 504 bytes
.
01:32:23.195 [info] UploadPackV2: processing fetch command
.
01:32:23.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.195 [info] UploadPackV2: collected 15 objects, generating pack
.
01:32:23.196 [info] UploadPackV2: pack generated, 958 bytes
.
01:32:23.196 [info] UploadPackV2: fetch response 980 bytes
.
01:32:23.231 [info] UploadPackV2: processing fetch command
.
01:32:23.231 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.236 [info] UploadPackV2: collected 59 objects, generating pack
.
01:32:23.248 [info] UploadPackV2: pack generated, 3536 bytes
.
01:32:23.248 [info] UploadPackV2: fetch response 3558 bytes
.
01:32:23.283 [info] UploadPackV2: processing fetch command
.
01:32:23.283 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.285 [info] UploadPackV2: collected 23 objects, generating pack
.
01:32:23.302 [info] UploadPackV2: pack generated, 1437 bytes
01:32:23.302 [info] UploadPackV2: fetch response 1459 bytes
01:32:23.355 [info] UploadPackV2: processing fetch command
01:32:23.355 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.369 [info] UploadPackV2: collected 27 objects, generating pack
01:32:23.444 [info] UploadPackV2: pack generated, 1627 bytes
01:32:23.445 [info] UploadPackV2: fetch response 1649 bytes
01:32:23.458 [info] UploadPackV2: processing fetch command
01:32:23.458 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.472 [info] UploadPackV2: collected 12 objects, generating pack
01:32:23.472 [info] UploadPackV2: pack generated, 723 bytes
01:32:23.472 [info] UploadPackV2: fetch response 745 bytes
01:32:23.505 [info] UploadPackV2: processing fetch command
01:32:23.506 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.509 [info] UploadPackV2: collected 27 objects, generating pack
01:32:23.510 [info] UploadPackV2: pack generated, 1615 bytes
01:32:23.511 [info] UploadPackV2: fetch response 1637 bytes
01:32:23.543 [info] UploadPackV2: processing fetch command
01:32:23.543 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.544 [info] UploadPackV2: collected 7 objects, generating pack
01:32:23.544 [info] UploadPackV2: pack generated, 475 bytes
01:32:23.544 [info] UploadPackV2: fetch response 497 bytes
01:32:23.554 [info] UploadPackV2: processing fetch command
.
01:32:23.554 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.556 [info] UploadPackV2: collected 46 objects, generating pack
01:32:23.558 [info] UploadPackV2: pack generated, 2819 bytes
01:32:23.559 [info] UploadPackV2: fetch response 2841 bytes
01:32:23.568 [info] UploadPackV2: processing fetch command
01:32:23.568 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.570 [info] UploadPackV2: collected 28 objects, generating pack
01:32:23.571 [info] UploadPackV2: pack generated, 1621 bytes
01:32:23.571 [info] UploadPackV2: fetch response 1643 bytes
01:32:23.582 [info] UploadPackV2: processing fetch command
01:32:23.582 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.583 [info] UploadPackV2: collected 4 objects, generating pack
01:32:23.583 [info] UploadPackV2: pack generated, 241 bytes
01:32:23.583 [info] UploadPackV2: fetch response 263 bytes
01:32:23.594 [info] UploadPackV2: processing fetch command
01:32:23.594 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.596 [info] UploadPackV2: collected 43 objects, generating pack
01:32:23.600 [info] UploadPackV2: pack generated, 2589 bytes
.
01:32:23.601 [info] UploadPackV2: fetch response 2611 bytes
01:32:23.610 [info] UploadPackV2: processing fetch command
01:32:23.610 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.612 [info] UploadPackV2: collected 27 objects, generating pack
01:32:23.613 [info] UploadPackV2: pack generated, 1676 bytes
01:32:23.613 [info] UploadPackV2: fetch response 1698 bytes
01:32:23.623 [info] UploadPackV2: processing fetch command
01:32:23.623 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.624 [info] UploadPackV2: collected 27 objects, generating pack
01:32:23.626 [info] UploadPackV2: pack generated, 1676 bytes
01:32:23.626 [info] UploadPackV2: fetch response 1698 bytes
..
01:32:23.631 [info] UploadPackV2: processing fetch command
01:32:23.632 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.632 [info] UploadPackV2: collected 12 objects, generating pack
01:32:23.632 [info] UploadPackV2: pack generated, 691 bytes
01:32:23.633 [info] UploadPackV2: fetch response 713 bytes
01:32:23.635 [info] UploadPackV2: processing fetch command
01:32:23.635 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.636 [info] UploadPackV2: collected 8 objects, generating pack
01:32:23.636 [info] UploadPackV2: pack generated, 482 bytes
01:32:23.636 [info] UploadPackV2: fetch response 504 bytes
01:32:23.640 [info] UploadPackV2: processing fetch command
01:32:23.640 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.641 [info] UploadPackV2: collected 4 objects, generating pack
01:32:23.641 [info] UploadPackV2: pack generated, 241 bytes
.
01:32:23.641 [info] UploadPackV2: fetch response 263 bytes
.
01:32:23.644 [info] UploadPackV2: processing fetch command
.
01:32:23.644 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.646 [info] UploadPackV2: collected 31 objects, generating pack
.
01:32:23.647 [info] UploadPackV2: pack generated, 1866 bytes
.
01:32:23.647 [info] UploadPackV2: fetch response 1888 bytes
.
01:32:23.659 [info] UploadPackV2: processing fetch command
.
01:32:23.659 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.661 [info] UploadPackV2: collected 47 objects, generating pack
.
01:32:23.665 [info] UploadPackV2: pack generated, 2818 bytes
.
01:32:23.665 [info] UploadPackV2: fetch response 2840 bytes
.
01:32:23.672 [info] UploadPackV2: processing fetch command
.
01:32:23.672 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.672 [info] UploadPackV2: collected 7 objects, generating pack
..
01:32:23.672 [info] UploadPackV2: pack generated, 475 bytes
01:32:23.673 [info] UploadPackV2: fetch response 497 bytes
..
01:32:23.678 [info] UploadPackV2: processing fetch command
.
01:32:23.834 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.844 [info] UploadPackV2: collected 62 objects, generating pack
01:32:23.855 [info] UploadPackV2: pack generated, 3776 bytes
.
01:32:23.855 [info] UploadPackV2: fetch response 3798 bytes
.
01:32:23.894 [info] UploadPackV2: processing fetch command
..
01:32:23.894 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:23.896 [info] UploadPackV2: collected 34 objects, generating pack
.
01:32:23.901 [info] UploadPackV2: pack generated, 2098 bytes
.
01:32:23.901 [info] UploadPackV2: fetch response 2120 bytes
.
01:32:23.936 [info] UploadPackV2: processing fetch command
.
01:32:23.936 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:23.948 [info] UploadPackV2: collected 15 objects, generating pack
01:32:23.949 [info] UploadPackV2: pack generated, 903 bytes
.
01:32:23.951 [info] UploadPackV2: fetch response 925 bytes
.
01:32:23.999 [info] UploadPackV2: processing fetch command
.
01:32:23.999 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
01:32:24.031 [info] UploadPackV2: collected 47 objects, generating pack
.
01:32:24.033 [info] UploadPackV2: pack generated, 2829 bytes
.
01:32:24.033 [info] UploadPackV2: fetch response 2851 bytes
.......................
01:32:24.186 [info] UploadPackV2: processing fetch command
01:32:24.186 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.197 [info] UploadPackV2: collected 30 objects, generating pack
01:32:24.199 [info] UploadPackV2: pack generated, 1861 bytes
01:32:24.199 [info] UploadPackV2: fetch response 1883 bytes
01:32:24.220 [info] UploadPackV2: processing fetch command
01:32:24.220 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.223 [info] UploadPackV2: collected 40 objects, generating pack
01:32:24.224 [info] UploadPackV2: pack generated, 2373 bytes
01:32:24.225 [info] UploadPackV2: fetch response 2395 bytes
01:32:24.233 [info] UploadPackV2: processing fetch command
.
01:32:24.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.239 [info] UploadPackV2: collected 27 objects, generating pack
01:32:24.239 [info] UploadPackV2: pack generated, 1678 bytes
.
01:32:24.240 [info] UploadPackV2: fetch response 1700 bytes
.
01:32:24.246 [info] UploadPackV2: processing fetch command
.
01:32:24.246 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:24.248 [info] UploadPackV2: collected 28 objects, generating pack
.
01:32:24.248 [info] UploadPackV2: pack generated, 1652 bytes
.
01:32:24.249 [info] UploadPackV2: fetch response 1674 bytes
.
01:32:24.256 [info] UploadPackV2: processing fetch command
.
01:32:24.256 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.258 [info] UploadPackV2: collected 35 objects, generating pack
01:32:24.259 [info] UploadPackV2: pack generated, 2126 bytes
01:32:24.259 [info] UploadPackV2: fetch response 2148 bytes
01:32:24.275 [info] UploadPackV2: processing fetch command
01:32:24.275 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.280 [warning] post_receive hook failed: "webhook failed"
01:32:24.313 [info] UploadPackV2: collected 32 objects, generating pack
01:32:24.318 [info] UploadPackV2: pack generated, 1861 bytes
01:32:24.318 [info] UploadPackV2: fetch response 1883 bytes
01:32:24.396 [info] UploadPackV2: processing fetch command
01:32:24.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.416 [info] UploadPackV2: collected 15 objects, generating pack
01:32:24.419 [info] UploadPackV2: pack generated, 958 bytes
01:32:24.419 [info] UploadPackV2: fetch response 980 bytes
01:32:24.458 [info] UploadPackV2: processing fetch command
01:32:24.458 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.462 [info] UploadPackV2: collected 20 objects, generating pack
01:32:24.464 [info] UploadPackV2: pack generated, 1203 bytes
01:32:24.465 [info] UploadPackV2: fetch response 1225 bytes
01:32:24.483 [info] UploadPackV2: processing fetch command
01:32:24.483 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.484 [info] UploadPackV2: collected 8 objects, generating pack
01:32:24.485 [info] UploadPackV2: pack generated, 482 bytes
01:32:24.486 [info] UploadPackV2: fetch response 504 bytes
01:32:24.503 [info] UploadPackV2: processing fetch command
01:32:24.503 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.513 [info] UploadPackV2: collected 20 objects, generating pack
01:32:24.514 [info] UploadPackV2: pack generated, 1203 bytes
01:32:24.515 [info] UploadPackV2: fetch response 1225 bytes
01:32:24.525 [info] UploadPackV2: processing fetch command
01:32:24.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.532 [info] UploadPackV2: collected 4 objects, generating pack
01:32:24.532 [info] UploadPackV2: pack generated, 241 bytes
01:32:24.532 [info] UploadPackV2: fetch response 263 bytes
01:32:24.538 [info] UploadPackV2: processing fetch command
01:32:24.538 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.539 [info] UploadPackV2: collected 20 objects, generating pack
01:32:24.540 [info] UploadPackV2: pack generated, 1203 bytes
01:32:24.540 [info] UploadPackV2: fetch response 1225 bytes
01:32:24.544 [info] UploadPackV2: processing fetch command
01:32:24.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.545 [info] UploadPackV2: collected 7 objects, generating pack
01:32:24.545 [info] UploadPackV2: pack generated, 475 bytes
01:32:24.546 [info] UploadPackV2: fetch response 497 bytes
01:32:24.555 [info] UploadPackV2: processing fetch command
01:32:24.555 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.556 [info] UploadPackV2: collected 36 objects, generating pack
01:32:24.559 [info] UploadPackV2: pack generated, 2132 bytes
01:32:24.559 [info] UploadPackV2: fetch response 2154 bytes
01:32:24.566 [info] UploadPackV2: processing fetch command
01:32:24.566 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.566 [info] UploadPackV2: collected 20 objects, generating pack
01:32:24.567 [info] UploadPackV2: pack generated, 1203 bytes
01:32:24.567 [info] UploadPackV2: fetch response 1225 bytes
01:32:24.573 [info] UploadPackV2: processing fetch command
01:32:24.573 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.575 [info] UploadPackV2: collected 20 objects, generating pack
01:32:24.575 [info] UploadPackV2: pack generated, 1203 bytes
01:32:24.576 [info] UploadPackV2: fetch response 1225 bytes
01:32:24.580 [info] UploadPackV2: processing fetch command
01:32:24.580 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.581 [info] UploadPackV2: collected 12 objects, generating pack
01:32:24.582 [info] UploadPackV2: pack generated, 723 bytes
.
01:32:24.582 [info] UploadPackV2: fetch response 745 bytes
01:32:24.587 [info] UploadPackV2: processing fetch command
01:32:24.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.589 [info] UploadPackV2: collected 20 objects, generating pack
01:32:24.590 [info] UploadPackV2: pack generated, 1171 bytes
01:32:24.590 [info] UploadPackV2: fetch response 1193 bytes
01:32:24.599 [info] UploadPackV2: processing fetch command
01:32:24.599 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.601 [info] UploadPackV2: collected 40 objects, generating pack
01:32:24.603 [info] UploadPackV2: pack generated, 2342 bytes
01:32:24.603 [info] UploadPackV2: fetch response 2364 bytes
01:32:24.621 [info] UploadPackV2: processing fetch command
01:32:24.621 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.623 [info] UploadPackV2: collected 31 objects, generating pack
01:32:24.625 [info] UploadPackV2: pack generated, 1885 bytes
01:32:24.625 [info] UploadPackV2: fetch response 1907 bytes
01:32:24.632 [info] UploadPackV2: processing fetch command
01:32:24.633 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.636 [info] UploadPackV2: collected 51 objects, generating pack
01:32:24.637 [info] UploadPackV2: pack generated, 3061 bytes
01:32:24.638 [info] UploadPackV2: fetch response 3083 bytes
01:32:24.649 [info] UploadPackV2: processing fetch command
01:32:24.649 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.650 [info] UploadPackV2: collected 19 objects, generating pack
01:32:24.651 [info] UploadPackV2: pack generated, 1194 bytes
01:32:24.651 [info] UploadPackV2: fetch response 1216 bytes
01:32:24.656 [info] UploadPackV2: processing fetch command
01:32:24.656 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.657 [info] UploadPackV2: collected 16 objects, generating pack
01:32:24.657 [info] UploadPackV2: pack generated, 962 bytes
01:32:24.657 [info] UploadPackV2: fetch response 984 bytes
01:32:24.663 [info] UploadPackV2: processing fetch command
01:32:24.663 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.665 [info] UploadPackV2: collected 42 objects, generating pack
01:32:24.667 [info] UploadPackV2: pack generated, 2580 bytes
01:32:24.667 [info] UploadPackV2: fetch response 2602 bytes
01:32:24.680 [info] UploadPackV2: processing fetch command
01:32:24.680 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.681 [info] UploadPackV2: collected 27 objects, generating pack
01:32:24.688 [info] UploadPackV2: pack generated, 1626 bytes
01:32:24.688 [info] UploadPackV2: fetch response 1648 bytes
01:32:24.739 [info] UploadPackV2: processing fetch command
.
01:32:24.739 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:24.745 [info] UploadPackV2: collected 16 objects, generating pack
01:32:24.747 [info] UploadPackV2: pack generated, 962 bytes
01:32:24.834 [info] UploadPackV2: fetch response 984 bytes
01:32:24.878 [info] UploadPackV2: processing fetch command
01:32:24.878 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.895 [info] UploadPackV2: collected 26 objects, generating pack
01:32:24.896 [info] UploadPackV2: pack generated, 1619 bytes
01:32:24.896 [info] UploadPackV2: fetch response 1641 bytes
01:32:24.948 [info] UploadPackV2: processing fetch command
01:32:24.948 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:24.967 [info] UploadPackV2: collected 39 objects, generating pack
01:32:24.973 [info] UploadPackV2: pack generated, 2367 bytes
01:32:24.973 [info] UploadPackV2: fetch response 2389 bytes
01:32:25.035 [info] UploadPackV2: processing fetch command
01:32:25.035 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.052 [info] UploadPackV2: collected 32 objects, generating pack
01:32:25.058 [info] UploadPackV2: pack generated, 1891 bytes
.
01:32:25.058 [info] UploadPackV2: fetch response 1913 bytes
.
01:32:25.115 [info] UploadPackV2: processing fetch command
01:32:25.115 [info] UploadPackV2.handle_fetch: 1 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
│
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
01:32:25.119 [info] UploadPackV2: collected 8 objects, generating pack
01:32:25.119 [info] UploadPackV2: pack generated, 482 bytes
01:32:25.120 [info] UploadPackV2: fetch response 504 bytes
01:32:25.134 [info] UploadPackV2: processing fetch command
01:32:25.134 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.141 [info] UploadPackV2: collected 23 objects, generating pack
01:32:25.142 [info] UploadPackV2: pack generated, 1403 bytes
01:32:25.142 [info] UploadPackV2: fetch response 1425 bytes
01:32:25.157 [info] UploadPackV2: processing fetch command
01:32:25.158 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.162 [info] UploadPackV2: collected 15 objects, generating pack
01:32:25.163 [info] UploadPackV2: pack generated, 907 bytes
01:32:25.164 [info] UploadPackV2: fetch response 929 bytes
01:32:25.182 [info] UploadPackV2: processing fetch command
01:32:25.183 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.190 [info] UploadPackV2: collected 27 objects, generating pack
01:32:25.191 [info] UploadPackV2: pack generated, 1627 bytes
01:32:25.192 [info] UploadPackV2: fetch response 1649 bytes
01:32:25.211 [info] UploadPackV2: processing fetch command
01:32:25.211 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.218 [info] UploadPackV2: collected 23 objects, generating pack
01:32:25.219 [info] UploadPackV2: pack generated, 1406 bytes
01:32:25.219 [info] UploadPackV2: fetch response 1428 bytes
01:32:25.234 [info] UploadPackV2: processing fetch command
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
01:32:25.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:25.238 [info] UploadPackV2: collected 16 objects, generating pack
.
01:32:25.239 [info] UploadPackV2: pack generated, 962 bytes
.
01:32:25.240 [info] UploadPackV2: fetch response 984 bytes
01:32:25.260 [info] UploadPackV2: processing fetch command
01:32:25.260 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.271 [info] UploadPackV2: collected 42 objects, generating pack
01:32:25.274 [info] UploadPackV2: pack generated, 2580 bytes
01:32:25.274 [info] UploadPackV2: fetch response 2602 bytes
01:32:25.309 [info] UploadPackV2: processing fetch command
01:32:25.309 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.330 [info] UploadPackV2: collected 24 objects, generating pack
01:32:25.330 [info] UploadPackV2: pack generated, 1412 bytes
01:32:25.331 [info] UploadPackV2: fetch response 1434 bytes
01:32:25.358 [info] UploadPackV2: processing fetch command
01:32:25.358 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:25.365 [info] UploadPackV2: collected 24 objects, generating pack
01:32:25.366 [info] UploadPackV2: pack generated, 1443 bytes
01:32:25.366 [info] UploadPackV2: fetch response 1465 bytes
01:32:25.382 [info] UploadPackV2: processing fetch command
01:32:25.383 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.389 [info] UploadPackV2: collected 19 objects, generating pack
01:32:25.390 [info] UploadPackV2: pack generated, 1144 bytes
01:32:25.391 [info] UploadPackV2: fetch response 1166 bytes
01:32:25.408 [info] UploadPackV2: processing fetch command
01:32:25.408 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.418 [info] UploadPackV2: collected 20 objects, generating pack
01:32:25.419 [info] UploadPackV2: pack generated, 1203 bytes
01:32:25.419 [info] UploadPackV2: fetch response 1225 bytes
01:32:25.449 [info] UploadPackV2: processing fetch command
.
01:32:25.449 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.462 [info] UploadPackV2: collected 55 objects, generating pack
01:32:25.464 [info] UploadPackV2: pack generated, 3299 bytes
01:32:25.465 [info] UploadPackV2: fetch response 3321 bytes
01:32:25.502 [info] UploadPackV2: processing fetch command
01:32:25.503 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.512 [info] UploadPackV2: collected 40 objects, generating pack
01:32:25.513 [info] UploadPackV2: pack generated, 2344 bytes
.
01:32:25.515 [info] UploadPackV2: fetch response 2366 bytes
01:32:25.539 [info] UploadPackV2: processing fetch command
01:32:25.539 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.540 [info] UploadPackV2: collected 12 objects, generating pack
01:32:25.540 [info] UploadPackV2: pack generated, 723 bytes
01:32:25.542 [info] UploadPackV2: fetch response 745 bytes
01:32:25.555 [info] UploadPackV2: processing fetch command
01:32:25.555 [info] UploadPackV2.handle_fetch: 2 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
│
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
01:32:25.562 [info] UploadPackV2: collected 42 objects, generating pack
01:32:25.565 [info] UploadPackV2: pack generated, 2582 bytes
01:32:25.565 [info] UploadPackV2: fetch response 2604 bytes
01:32:25.590 [info] UploadPackV2: processing fetch command
01:32:25.590 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.596 [info] UploadPackV2: collected 4 objects, generating pack
01:32:25.596 [info] UploadPackV2: pack generated, 241 bytes
01:32:25.596 [info] UploadPackV2: fetch response 263 bytes
.
01:32:25.608 [info] UploadPackV2: processing fetch command
01:32:25.609 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:32:25.620 [info] UploadPackV2: collected 12 objects, generating pack
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
01:32:25.621 [info] UploadPackV2: pack generated, 723 bytes
01:32:25.622 [info] UploadPackV2: fetch response 745 bytes
01:32:25.667 [info] UploadPackV2: processing fetch command
01:32:25.667 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:25.668 [info] UploadPackV2: collected 15 objects, generating pack
.
01:32:25.668 [info] UploadPackV2: pack generated, 958 bytes
.
01:32:25.668 [info] UploadPackV2: fetch response 980 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ 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:32:48.625 [info] UploadPackV2: processing ls-refs command
01:32:48.628 [info] UploadPackV2: processing fetch command
01:32:48.628 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:48.633 [info] UploadPackV2: collected 180 objects, generating pack
01:32:48.636 [info] UploadPackV2: pack generated, 11106 bytes
01:32:48.636 [info] UploadPackV2: fetch response 11128 bytes
.
01:32:48.673 [info] UploadPackV2: processing ls-refs command
01:32:48.676 [info] UploadPackV2: processing fetch command
01:32:48.676 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:48.676 [info] UploadPackV2: collected 15 objects, generating pack
01:32:48.677 [info] UploadPackV2: pack generated, 919 bytes
01:32:48.677 [info] UploadPackV2: fetch response 941 bytes
..
01:32:48.752 [info] UploadPackV2: processing ls-refs command
01:32:48.755 [info] UploadPackV2: processing fetch command
01:32:48.755 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:48.755 [info] UploadPackV2: collected 3 objects, generating pack
01:32:48.755 [info] UploadPackV2: pack generated, 183 bytes
01:32:48.755 [info] UploadPackV2: fetch response 205 bytes
.
01:32:48.859 [info] UploadPackV2: processing fetch command
01:32:48.859 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:48.859 [info] UploadPackV2: collected 3 objects, generating pack
01:32:48.860 [info] UploadPackV2: pack generated, 183 bytes
01:32:48.860 [info] UploadPackV2: fetch response 205 bytes
.
01:32:48.885 [info] UploadPackV2: processing ls-refs command
01:32:48.888 [info] UploadPackV2: processing fetch command
01:32:48.888 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:48.889 [info] UploadPackV2: collected 9 objects, generating pack
01:32:48.889 [info] UploadPackV2: pack generated, 549 bytes
01:32:48.889 [info] UploadPackV2: fetch response 571 bytes
01:32:48.916 [info] UploadPackV2: processing ls-refs command
.
01:32:48.941 [info] UploadPackV2: processing ls-refs command
01:32:48.944 [info] UploadPackV2: processing fetch command
01:32:48.944 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:32:48.945 [info] UploadPackV2: collected 6 objects, generating pack
01:32:48.945 [info] UploadPackV2: pack generated, 366 bytes
01:32:48.945 [info] UploadPackV2: fetch response 388 bytes
01:32:48.974 [info] UploadPackV2: processing ls-refs command
.***.
01:33:04.109 [info] UploadPackV2: processing ls-refs command
01:33:04.111 [info] UploadPackV2: processing fetch command
01:33:04.111 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.111 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.111 [info] UploadPackV2: pack generated, 196 bytes
01:33:04.111 [info] UploadPackV2: fetch response 218 bytes
.
01:33:04.177 [info] UploadPackV2: processing ls-refs command
01:33:04.179 [info] UploadPackV2: processing fetch command
01:33:04.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.179 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.179 [info] UploadPackV2: pack generated, 185 bytes
01:33:04.179 [info] UploadPackV2: fetch response 207 bytes
.
01:33:04.194 [info] UploadPackV2: processing fetch command
01:33:04.194 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.194 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.194 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.194 [info] UploadPackV2: fetch response 205 bytes
01:33:04.194 [info] UploadPackV2: processing fetch command
01:33:04.194 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.195 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.195 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.195 [info] UploadPackV2: fetch response 205 bytes
01:33:04.195 [info] UploadPackV2: processing fetch command
01:33:04.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.195 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.195 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.195 [info] UploadPackV2: fetch response 205 bytes
01:33:04.195 [info] UploadPackV2: processing fetch command
01:33:04.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.195 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.195 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.195 [info] UploadPackV2: fetch response 205 bytes
01:33:04.195 [info] UploadPackV2: processing fetch command
01:33:04.196 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.196 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.196 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.196 [info] UploadPackV2: fetch response 205 bytes
01:33:04.196 [info] UploadPackV2: processing fetch command
01:33:04.196 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.196 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.196 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.197 [info] UploadPackV2: fetch response 205 bytes
01:33:04.197 [info] UploadPackV2: processing fetch command
01:33:04.197 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.197 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.197 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.197 [info] UploadPackV2: fetch response 205 bytes
01:33:04.197 [info] UploadPackV2: processing fetch command
01:33:04.197 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.197 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.197 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.197 [info] UploadPackV2: fetch response 205 bytes
01:33:04.198 [info] UploadPackV2: processing fetch command
01:33:04.198 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.198 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.198 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.198 [info] UploadPackV2: fetch response 205 bytes
01:33:04.198 [info] UploadPackV2: processing fetch command
01:33:04.198 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.198 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.198 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.198 [info] UploadPackV2: fetch response 205 bytes
01:33:04.198 [info] UploadPackV2: processing fetch command
01:33:04.198 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.198 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.199 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.199 [info] UploadPackV2: fetch response 205 bytes
01:33:04.199 [info] UploadPackV2: processing fetch command
01:33:04.199 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.199 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.199 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.199 [info] UploadPackV2: fetch response 205 bytes
01:33:04.199 [info] UploadPackV2: processing fetch command
01:33:04.199 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.199 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.199 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.199 [info] UploadPackV2: fetch response 205 bytes
01:33:04.199 [info] UploadPackV2: processing fetch command
01:33:04.199 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.199 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.200 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.200 [info] UploadPackV2: fetch response 205 bytes
01:33:04.200 [info] UploadPackV2: processing fetch command
01:33:04.200 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.200 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.201 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.202 [info] UploadPackV2: fetch response 205 bytes
01:33:04.203 [info] UploadPackV2: processing fetch command
01:33:04.203 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.203 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.203 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.203 [info] UploadPackV2: fetch response 205 bytes
01:33:04.204 [info] UploadPackV2: processing fetch command
01:33:04.204 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.204 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.204 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.204 [info] UploadPackV2: fetch response 205 bytes
01:33:04.204 [info] UploadPackV2: processing fetch command
01:33:04.204 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.205 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.205 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.205 [info] UploadPackV2: fetch response 205 bytes
01:33:04.205 [info] UploadPackV2: processing fetch command
01:33:04.205 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.206 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.206 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.206 [info] UploadPackV2: fetch response 205 bytes
01:33:04.206 [info] UploadPackV2: processing fetch command
01:33:04.206 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.206 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.207 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.208 [info] UploadPackV2: fetch response 205 bytes
01:33:04.208 [info] UploadPackV2: processing fetch command
01:33:04.208 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
01:33:04.209 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.209 [info] UploadPackV2: pack generated, 183 bytes
01:33:04.209 [info] UploadPackV2: fetch response 205 bytes
01:33:04.301 [info] UploadPackV2: processing ls-refs command
01:33:04.303 [info] UploadPackV2: processing fetch command
01:33:04.303 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.326 [info] UploadPackV2: collected 600 objects, generating pack
01:33:04.345 [info] UploadPackV2: pack generated, 45197 bytes
01:33:04.345 [info] UploadPackV2: fetch response 45219 bytes
.
01:33:04.425 [info] UploadPackV2: processing ls-refs command
.
01:33:04.489 [info] UploadPackV2: processing ls-refs command
01:33:04.491 [info] UploadPackV2: processing fetch command
01:33:04.491 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.499 [info] UploadPackV2: collected 240 objects, generating pack
01:33:04.504 [info] UploadPackV2: pack generated, 16258 bytes
01:33:04.504 [info] UploadPackV2: fetch response 16280 bytes
.
01:33:04.529 [info] UploadPackV2: processing fetch command
01:33:04.529 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:04.530 [info] UploadPackV2: collected 0 objects, generating pack
01:33:04.530 [info] UploadPackV2: pack generated, 32 bytes
01:33:04.530 [info] UploadPackV2: fetch response 54 bytes
.
01:33:04.785 [info] UploadPackV2: processing ls-refs command
.
01:33:04.937 [info] UploadPackV2: processing ls-refs command
01:33:04.939 [info] UploadPackV2: processing fetch command
01:33:04.939 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:33:04.940 [info] UploadPackV2: collected 3 objects, generating pack
01:33:04.940 [info] UploadPackV2: pack generated, 231 bytes
01:33:04.940 [info] UploadPackV2: fetch response 327 bytes
...
01:33:35.149 [info] UploadPackV2: processing ls-refs command
01:33:35.151 [info] UploadPackV2: processing fetch command
01:33:35.151 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:33:35.151 [info] UploadPackV2: collected 3 objects, generating pack
01:33:35.152 [info] UploadPackV2: pack generated, 183 bytes
01:33:35.152 [info] UploadPackV2: fetch response 205 bytes
...
01:34:20.421 [info] UploadPackV2: processing ls-refs command
01:34:20.423 [info] UploadPackV2: processing fetch command
01:34:20.423 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:34:20.423 [info] UploadPackV2: collected 6 objects, generating pack
01:34:20.423 [info] UploadPackV2: pack generated, 365 bytes
01:34:20.423 [info] UploadPackV2: fetch response 387 bytes
...
01:34:50.681 [info] UploadPackV2: processing ls-refs command
01:34:50.683 [info] UploadPackV2: processing fetch command
01:34:50.683 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:34:50.683 [info] UploadPackV2: collected 3 objects, generating pack
01:34:50.683 [info] UploadPackV2: pack generated, 183 bytes
01:34:50.683 [info] UploadPackV2: fetch response 205 bytes
.
01:34:50.797 [info] UploadPackV2: processing ls-refs command
01:34:50.799 [info] UploadPackV2: processing fetch command
01:34:50.799 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:34:50.799 [info] UploadPackV2: collected 3 objects, generating pack
01:34:50.799 [info] UploadPackV2: pack generated, 201 bytes
01:34:50.799 [info] UploadPackV2: fetch response 223 bytes
.
01:35:05.929 [info] UploadPackV2: processing ls-refs command
01:35:05.931 [info] UploadPackV2: processing fetch command
01:35:05.931 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:05.931 [info] UploadPackV2: collected 6 objects, generating pack
01:35:05.931 [info] UploadPackV2: pack generated, 365 bytes
01:35:05.932 [info] UploadPackV2: fetch response 387 bytes
.*
01:35:21.009 [info] The function passed as a handler with ID "telemetry-test-14339" 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:35:21.010 [info] UploadPackV2: processing fetch command
*
01:35:21.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
*
01:35:21.010 [info] UploadPackV2: collected 3 objects, generating pack
*
01:35:21.010 [info] UploadPackV2: pack generated, 183 bytes
.
01:35:21.010 [info] UploadPackV2: fetch response 205 bytes
.
01:35:21.011 [info] The function passed as a handler with ID "telemetry-test-16834" 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:35:21.011 [info] UploadPackV2: processing fetch command
01:35:21.011 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:21.011 [info] UploadPackV2: collected 3 objects, generating pack
01:35:21.011 [info] UploadPackV2: pack generated, 186 bytes
01:35:21.011 [info] UploadPackV2: fetch response 208 bytes
01:35:21.015 [info] The function passed as a handler with ID "telemetry-test-14371" 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:35:36.083 [info] The function passed as a handler with ID "telemetry-test-16866" 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:35:36.084 [info] UploadPackV2: processing fetch command
01:35:36.084 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:35:36.084 [info] UploadPackV2: collected 2 objects, generating pack
01:35:36.084 [info] UploadPackV2: pack generated, 169 bytes
01:35:36.084 [info] UploadPackV2: fetch response 191 bytes
.
01:35:36.085 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303409086" 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:35:36.085 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303409054" 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:35:36.085 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303409022" 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:35:36.086 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303408990" 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:35:36.087 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303406591" 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:35:36.087 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303406559" 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:35:36.088 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303408958" 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:35:36.088 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303406527" 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:35:36.181 [info] UploadPackV2: processing ls-refs command
01:35:36.181 [info] UploadPackV2: processing ls-refs command
01:35:36.183 [info] UploadPackV2: processing fetch command
01:35:36.183 [info] UploadPackV2: processing fetch command
01:35:36.183 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:36.183 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:36.184 [info] UploadPackV2: collected 6 objects, generating pack
01:35:36.184 [info] UploadPackV2: collected 6 objects, generating pack
01:35:36.184 [info] UploadPackV2: pack generated, 365 bytes
01:35:36.185 [info] UploadPackV2: pack generated, 365 bytes
01:35:36.185 [info] UploadPackV2: fetch response 387 bytes
01:35:36.185 [info] UploadPackV2: fetch response 387 bytes
.
01:35:36.329 [info] UploadPackV2: processing ls-refs command
01:35:36.331 [info] UploadPackV2: processing fetch command
01:35:36.331 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:36.332 [info] UploadPackV2: collected 6 objects, generating pack
01:35:36.332 [info] UploadPackV2: pack generated, 365 bytes
01:35:36.332 [info] UploadPackV2: fetch response 387 bytes
01:35:38.609 [info] UploadPackV2: processing ls-refs command
.
01:35:38.685 [info] UploadPackV2: processing ls-refs command
01:35:38.686 [info] UploadPackV2: processing fetch command
01:35:38.686 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:38.687 [info] UploadPackV2: collected 3 objects, generating pack
01:35:38.687 [info] UploadPackV2: pack generated, 216 bytes
01:35:38.687 [info] UploadPackV2: fetch response 346 bytes
.
01:35:38.745 [info] UploadPackV2: processing ls-refs command
01:35:38.747 [info] UploadPackV2: processing fetch command
01:35:38.747 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:38.747 [info] UploadPackV2: collected 6 objects, generating pack
01:35:38.748 [info] UploadPackV2: pack generated, 365 bytes
01:35:38.748 [info] UploadPackV2: fetch response 387 bytes
01:35:38.783 [info] UploadPackV2: processing fetch command
01:35:38.783 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
01:35:38.784 [info] UploadPackV2: fetch response 122 bytes
.
01:35:38.845 [info] UploadPackV2: processing ls-refs command
01:35:38.847 [info] UploadPackV2: processing fetch command
01:35:38.847 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:38.847 [info] UploadPackV2: collected 6 objects, generating pack
01:35:38.847 [info] UploadPackV2: pack generated, 366 bytes
01:35:38.847 [info] UploadPackV2: fetch response 388 bytes
01:35:38.909 [info] UploadPackV2: processing ls-refs command
01:35:38.910 [info] UploadPackV2: processing fetch command
01:35:38.910 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
01:35:38.910 [info] UploadPackV2: fetch response 32 bytes
01:35:38.910 [info] UploadPackV2: processing fetch command
01:35:38.910 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:38.911 [info] UploadPackV2: collected 3 objects, generating pack
01:35:38.911 [info] UploadPackV2: pack generated, 183 bytes
01:35:38.911 [info] UploadPackV2: fetch response 205 bytes
.
01:35:38.918 [info] UploadPackV2: processing fetch command
.
01:35:38.918 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:38.919 [info] UploadPackV2: collected 3 objects, generating pack
01:35:38.919 [info] UploadPackV2: pack generated, 183 bytes
01:35:38.919 [info] UploadPackV2: fetch response 205 bytes
01:35:39.001 [info] UploadPackV2: processing ls-refs command
01:35:39.003 [info] UploadPackV2: processing fetch command
01:35:39.003 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:39.003 [info] UploadPackV2: collected 6 objects, generating pack
01:35:39.003 [info] UploadPackV2: pack generated, 365 bytes
01:35:39.004 [info] UploadPackV2: fetch response 387 bytes
.
01:35:54.081 [info] UploadPackV2: processing ls-refs command
01:35:54.083 [info] UploadPackV2: processing fetch command
01:35:54.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:54.085 [info] UploadPackV2: collected 90 objects, generating pack
01:35:54.087 [info] UploadPackV2: pack generated, 5649 bytes
01:35:54.087 [info] UploadPackV2: fetch response 5671 bytes
01:35:54.377 [info] UploadPackV2: processing ls-refs command
.
01:35:54.437 [info] UploadPackV2: processing ls-refs command
01:35:54.439 [info] UploadPackV2: processing fetch command
01:35:54.439 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:54.439 [info] UploadPackV2: collected 9 objects, generating pack
01:35:54.440 [info] UploadPackV2: pack generated, 547 bytes
01:35:54.440 [info] UploadPackV2: fetch response 569 bytes
01:35:54.517 [info] UploadPackV2: processing ls-refs command
.
01:35:54.577 [info] UploadPackV2: processing ls-refs command
01:35:54.579 [info] UploadPackV2: processing fetch command
01:35:54.579 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:54.580 [info] UploadPackV2: collected 15 objects, generating pack
01:35:54.580 [info] UploadPackV2: pack generated, 952 bytes
01:35:54.580 [info] UploadPackV2: fetch response 974 bytes
.
01:35:54.649 [info] UploadPackV2: processing ls-refs command
01:35:54.651 [info] UploadPackV2: processing fetch command
01:35:54.651 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:54.651 [info] UploadPackV2: collected 3 objects, generating pack
01:35:54.652 [info] UploadPackV2: pack generated, 196 bytes
01:35:54.652 [info] UploadPackV2: fetch response 218 bytes
.
01:35:54.721 [info] UploadPackV2: processing ls-refs command
01:35:54.723 [info] UploadPackV2: processing fetch command
01:35:54.723 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:54.723 [info] UploadPackV2: collected 3 objects, generating pack
01:35:54.723 [info] UploadPackV2: pack generated, 185 bytes
01:35:54.723 [info] UploadPackV2: fetch response 207 bytes
01:35:54.785 [info] UploadPackV2: processing ls-refs command
.
01:35:54.857 [info] UploadPackV2: processing ls-refs command
01:35:54.858 [info] UploadPackV2: processing fetch command
01:35:54.858 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:54.858 [info] UploadPackV2: collected 3 objects, generating pack
01:35:54.858 [info] UploadPackV2: pack generated, 200 bytes
01:35:54.858 [info] UploadPackV2: fetch response 256 bytes
.....
01:35:56.205 [info] UploadPackV2: processing ls-refs command
01:35:56.207 [info] UploadPackV2: processing fetch command
01:35:56.207 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:56.208 [info] UploadPackV2: collected 9 objects, generating pack
01:35:56.208 [info] UploadPackV2: pack generated, 585 bytes
01:35:56.208 [info] UploadPackV2: fetch response 681 bytes
.
01:35:56.281 [info] UploadPackV2: processing ls-refs command
01:35:56.283 [info] UploadPackV2: processing fetch command
01:35:56.283 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:56.284 [info] UploadPackV2: collected 3 objects, generating pack
01:35:56.284 [info] UploadPackV2: pack generated, 218 bytes
01:35:56.284 [info] UploadPackV2: fetch response 314 bytes
.
01:35:56.349 [info] UploadPackV2: processing ls-refs command
..
01:35:56.409 [info] UploadPackV2: processing ls-refs command
01:35:56.411 [info] UploadPackV2: processing fetch command
01:35:56.411 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:56.412 [info] UploadPackV2: collected 3 objects, generating pack
01:35:56.412 [info] UploadPackV2: pack generated, 216 bytes
01:35:56.412 [info] UploadPackV2: fetch response 312 bytes
.
01:35:56.485 [info] UploadPackV2: processing ls-refs command
01:35:56.488 [info] UploadPackV2: processing fetch command
01:35:56.488 [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:35:56.489 [info] UploadPackV2: collected 6 objects, generating pack
01:35:56.490 [info] UploadPackV2: pack generated, 513 bytes
01:35:56.490 [info] UploadPackV2: fetch response 535 bytes
.
01:35:56.557 [info] UploadPackV2: processing ls-refs command
.
01:35:56.613 [info] UploadPackV2: processing ls-refs command
01:35:56.615 [info] UploadPackV2: processing fetch command
01:35:56.615 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:56.615 [info] UploadPackV2: collected 3 objects, generating pack
01:35:56.615 [info] UploadPackV2: pack generated, 216 bytes
01:35:56.616 [info] UploadPackV2: fetch response 312 bytes
01:35:56.677 [info] UploadPackV2: processing ls-refs command
01:35:56.678 [info] UploadPackV2: processing fetch command
01:35:56.678 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
01:35:56.679 [info] UploadPackV2: collected 12 objects, generating pack
01:35:56.679 [info] UploadPackV2: pack generated, 768 bytes
01:35:56.679 [info] UploadPackV2: fetch response 1002 bytes
.
01:35:56.745 [info] UploadPackV2: processing ls-refs command
01:35:56.748 [info] UploadPackV2: processing fetch command
01:35:56.748 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
01:35:56.749 [info] UploadPackV2: collected 5 objects, generating pack
01:35:56.749 [info] UploadPackV2: pack generated, 319 bytes
01:35:56.750 [info] UploadPackV2: fetch response 341 bytes
..
01:35:56.825 [info] UploadPackV2: processing ls-refs command
01:35:56.827 [info] UploadPackV2: processing fetch command
01:35:56.827 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
01:35:56.827 [info] UploadPackV2: collected 9 objects, generating pack
01:35:56.828 [info] UploadPackV2: pack generated, 549 bytes
01:35:56.828 [info] UploadPackV2: fetch response 571 bytes
01:35:56.844 [info] UploadPackV2: processing fetch command
01:35:56.844 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
01:35:56.845 [info] UploadPackV2: fetch response 171 bytes
.
01:35:56.897 [info] UploadPackV2: processing ls-refs command
01:35:56.900 [info] UploadPackV2: processing fetch command
01:35:56.900 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
01:35:56.901 [info] UploadPackV2: collected 6 objects, generating pack
01:35:56.901 [info] UploadPackV2: pack generated, 513 bytes
01:35:56.901 [info] UploadPackV2: fetch response 535 bytes
.
01:35:56.969 [info] UploadPackV2: processing ls-refs command
01:35:56.972 [info] UploadPackV2: processing fetch command
01:35:56.972 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
01:35:56.973 [info] UploadPackV2: collected 3 objects, generating pack
01:35:56.973 [info] UploadPackV2: pack generated, 381 bytes
01:35:56.973 [info] UploadPackV2: fetch response 403 bytes
.
01:35:57.041 [info] UploadPackV2: processing ls-refs command
.
01:35:57.097 [info] UploadPackV2: processing ls-refs command
01:35:57.100 [info] UploadPackV2: processing fetch command
01:35:57.100 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
01:35:57.102 [info] UploadPackV2: collected 3 objects, generating pack
01:35:57.102 [info] UploadPackV2: pack generated, 381 bytes
01:35:57.102 [info] UploadPackV2: fetch response 403 bytes
.
01:35:57.173 [info] UploadPackV2: processing ls-refs command
.**
01:35:57.177 [info] The function passed as a handler with ID "graph-query-test-17250" 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:35:57.178 [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:35:57.188 [info] The function passed as a handler with ID "graph-query-test-20387" 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
.....
Finished in 227.1 seconds (38.4s async, 188.6s sync)
Result: 1058 passed (15 properties, 1043 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