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/aarch64
Started: Aug 05, 2026 at 06:54 UTC
Completed: Aug 05, 2026 at 06:59 UTC
Duration: 4m 27s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Cover compiling modules ...
Running ExUnit with seed: 995774, max_cases: 8
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
Excluding tags: [:s3]
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: 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: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: 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: module attribute @git_lfs_available was set but never used
│
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
│
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: 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
......................................................................................
06:55:07.183 [info] The function passed as a handler with ID #Reference<0.1213895687.3171418113.134084> 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 "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
............................................................................
06:55:09.307 [info] The function passed as a handler with ID "test-fail-#Reference<0.1213895687.3171418116.134797>" 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
.
06:55:09.308 [info] The function passed as a handler with ID "test-#Reference<0.1213895687.3171418116.134885>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: 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 "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: 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
│
1131 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1131: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
│
1161 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1161:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
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
.........................................................................................................................................................................................................................................................................................................................................................................................................................
06:55:17.585 [info] UploadPackV2: processing fetch command
06:55:17.585 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:17.617 [info] UploadPackV2: collected 700 objects, generating pack
06:55:17.654 [info] UploadPackV2: pack generated, 48139 bytes
06:55:17.679 [info] UploadPackV2: fetch response 48161 bytes
.
06:55:17.850 [info] UploadPackV2: processing fetch command
06:55:17.850 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:17.863 [info] UploadPackV2: collected 15 objects, generating pack
06:55:17.863 [info] UploadPackV2: pack generated, 984 bytes
06:55:17.864 [info] UploadPackV2: fetch response 1006 bytes
06:55:17.865 [info] UploadPackV2: processing fetch command
06:55:17.865 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:17.865 [info] UploadPackV2: collected 15 objects, streaming pack
06:55:17.919 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
06:55:17.919 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
06:55:17.921 [info] UploadPackV2: processing fetch command
.
06:55:17.921 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:17.922 [info] UploadPackV2: collected 15 objects, generating pack
06:55:17.922 [info] UploadPackV2: pack generated, 984 bytes
06:55:17.922 [info] UploadPackV2: fetch response 1006 bytes
06:55:17.938 [info] UploadPackV2: processing fetch command
06:55:17.938 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:17.939 [info] UploadPackV2: collected 9 objects, streaming pack
.
06:55:17.940 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
06:55:17.940 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
06:55:17.960 [info] UploadPackV2: processing fetch command
06:55:17.960 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:17.960 [info] UploadPackV2: collected 3 objects, streaming pack
06:55:17.972 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
06:55:17.972 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
06:55:17.974 [info] UploadPackV2: processing fetch command
06:55:17.974 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:17.974 [info] UploadPackV2: collected 0 objects, generating pack
06:55:17.974 [info] UploadPackV2: pack generated, 32 bytes
.
06:55:17.974 [info] UploadPackV2: fetch response 54 bytes
.
06:55:17.988 [info] UploadPackV2: processing fetch command
..
06:55:17.988 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
06:55:17.988 [info] UploadPackV2: fetch response 73 bytes
.
06:55:17.988 [info] UploadPackV2: processing fetch command
..
06:55:17.989 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
06:55:17.989 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
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
.........................................
06:55:18.136 [info] UploadPackV2: processing fetch command
06:55:18.136 [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
│
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
06:55:18.208 [info] UploadPackV2: collected 600 objects, generating pack
06:55:18.246 [info] UploadPackV2: pack generated, 39862 bytes
06:55:18.246 [info] UploadPackV2: fetch response 39884 bytes
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
..
06:55:18.324 [info] UploadPackV2: processing fetch command
06:55:18.324 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:18.395 [info] UploadPackV2: reused pack 12615 bytes, 160 objects
.
06:55:18.396 [info] UploadPackV2: fetch response 12637 bytes
06:55:18.799 [info] UploadPackV2: processing ls-refs command
06:55:18.799 [info] UploadPackV2: processing fetch command
06:55:18.799 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:18.800 [info] UploadPackV2: collected 3 objects, generating pack
06:55:18.800 [info] UploadPackV2: pack generated, 210 bytes
06:55:18.800 [info] UploadPackV2: fetch response 232 bytes
..
06:55:18.926 [info] UploadPackV2: processing ls-refs command
.
06:55:18.927 [info] UploadPackV2: processing fetch command
06:55:18.927 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:18.927 [info] UploadPackV2: collected 3 objects, generating pack
06:55:18.927 [info] UploadPackV2: pack generated, 191 bytes
.
06:55:18.927 [info] UploadPackV2: fetch response 213 bytes
06:55:18.928 [info] UploadPackV2: processing fetch command
06:55:18.931 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:18.932 [info] UploadPackV2: collected 3 objects, generating pack
.
06:55:18.932 [info] UploadPackV2: pack generated, 223 bytes
06:55:18.932 [info] UploadPackV2: fetch response 245 bytes
06:55:18.939 [info] UploadPackV2: processing fetch command
.
06:55:18.939 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:18.940 [info] UploadPackV2: collected 6 objects, generating pack
06:55:18.940 [info] UploadPackV2: pack generated, 414 bytes
06:55:18.940 [info] UploadPackV2: fetch response 436 bytes
.
06:55:19.164 [info] UploadPackV2: processing fetch command
06:55:19.164 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.183 [info] UploadPackV2: collected 32 objects, streaming pack
06:55:19.387 [info] UploadPackV2: streamed pack 2459751 bytes, 32 objects
06:55:19.387 [info] UploadPackV2: fetch streamed 2459751 pack bytes, 32 objects
.
06:55:19.503 [info] UploadPackV2: processing fetch command
.
06:55:19.504 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:19.504 [info] UploadPackV2: collected 3 objects, generating pack
.
06:55:19.504 [info] UploadPackV2: pack generated, 194 bytes
............
06:55:19.504 [info] UploadPackV2: fetch response 216 bytes
06:55:19.504 [info] UploadPackV2: processing fetch command
06:55:19.504 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.505 [info] UploadPackV2: collected 3 objects, generating pack
06:55:19.505 [info] UploadPackV2: pack generated, 195 bytes
06:55:19.505 [info] UploadPackV2: fetch response 217 bytes
06:55:19.505 [info] UploadPackV2: processing fetch command
06:55:19.505 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.505 [info] UploadPackV2: collected 3 objects, generating pack
06:55:19.505 [info] UploadPackV2: pack generated, 191 bytes
06:55:19.505 [info] UploadPackV2: fetch response 213 bytes
06:55:19.505 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
06:55:19.518 [info] UploadPackV2: processing fetch command
06:55:19.518 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.525 [info] UploadPackV2: collected 90 objects, generating pack
06:55:19.526 [info] UploadPackV2: pack generated, 5946 bytes
06:55:19.530 [info] UploadPackV2: fetch response 5968 bytes
06:55:19.540 [info] UploadPackV2: processing fetch command
06:55:19.540 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.540 [info] UploadPackV2: collected 3 objects, streaming pack
06:55:19.540 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
06:55:19.540 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
06:55:19.725 [info] UploadPackV2: processing fetch command
06:55:19.725 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.736 [info] UploadPackV2: collected 32 objects, generating pack
06:55:19.908 [info] UploadPackV2: pack generated, 2459815 bytes
06:55:19.915 [info] UploadPackV2: fetch response 2460022 bytes
06:55:19.915 [info] UploadPackV2: processing fetch command
06:55:19.915 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:19.925 [info] UploadPackV2: collected 32 objects, streaming pack
06:55:20.126 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
06:55:20.126 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
06:55:20.136 [info] UploadPackV2: processing ls-refs command
06:55:20.136 [info] UploadPackV2: processing ls-refs command
06:55:20.137 [info] UploadPackV2: processing fetch command
06:55:20.137 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:20.137 [info] UploadPackV2: collected 3 objects, generating pack
06:55:20.137 [info] UploadPackV2: pack generated, 191 bytes
06:55:20.137 [info] UploadPackV2: fetch response 213 bytes
06:55:20.137 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
06:55:20.138 [info] UploadPackV2: processing ls-refs command
06:55:20.138 [info] UploadPackV2: processing ls-refs command
...........
06:55:20.138 [info] UploadPackV2: processing fetch command
06:55:20.138 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:20.143 [info] UploadPackV2: collected 3 objects, generating pack
06:55:20.143 [info] UploadPackV2: pack generated, 206 bytes
06:55:20.143 [info] UploadPackV2: fetch response 228 bytes
06:55:20.144 [info] UploadPackV2: processing fetch command
06:55:20.145 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:20.145 [info] UploadPackV2: collected 3 objects, generating pack
06:55:20.145 [info] UploadPackV2: pack generated, 195 bytes
06:55:20.145 [info] UploadPackV2: fetch response 217 bytes
06:55:20.758 [info] The function passed as a handler with ID #Reference<0.1213895687.3171418113.221193> 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
│
848 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:848:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
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
......................................................................
06:55:23.909 [info] UploadPackV2: processing fetch command
06:55:23.910 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:23.910 [info] UploadPackV2: collected 9 objects, generating pack
06:55:23.910 [info] UploadPackV2: pack generated, 642 bytes
06:55:23.910 [info] UploadPackV2: fetch response 664 bytes
06:55:23.933 [info] UploadPackV2: processing fetch command
06:55:23.933 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:23.963 [info] UploadPackV2: collected 9 objects, generating pack
06:55:23.964 [info] UploadPackV2: pack generated, 642 bytes
06:55:23.964 [info] UploadPackV2: fetch response 664 bytes
06:55:23.983 [info] UploadPackV2: processing fetch command
06:55:23.983 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:23.984 [info] UploadPackV2: collected 30 objects, generating pack
06:55:23.993 [info] UploadPackV2: pack generated, 2103 bytes
06:55:23.993 [info] UploadPackV2: fetch response 2125 bytes
06:55:24.042 [info] UploadPackV2: processing fetch command
06:55:24.042 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.045 [info] UploadPackV2: collected 15 objects, generating pack
06:55:24.046 [info] UploadPackV2: pack generated, 1035 bytes
06:55:24.046 [info] UploadPackV2: fetch response 1057 bytes
06:55:24.060 [info] UploadPackV2: processing fetch command
06:55:24.060 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.061 [info] UploadPackV2: collected 24 objects, generating pack
06:55:24.062 [info] UploadPackV2: pack generated, 1646 bytes
.
06:55:24.067 [info] UploadPackV2: fetch response 1668 bytes
.
06:55:24.077 [info] UploadPackV2: processing fetch command
.
06:55:24.077 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.078 [info] UploadPackV2: collected 18 objects, generating pack
.....
06:55:24.082 [info] UploadPackV2: pack generated, 1281 bytes
06:55:24.082 [info] UploadPackV2: fetch response 1303 bytes
06:55:24.093 [info] UploadPackV2: processing fetch command
............
06:55:24.093 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:26.265 [notice] Handler :default switched from :sync to :drop mode
06:55:24.094 [info] UploadPackV2: collected 15 objects, generating pack
06:55:24.127 [info] UploadPackV2: pack generated, 1068 bytes
06:55:24.128 [info] UploadPackV2: fetch response 1090 bytes
06:55:24.163 [info] UploadPackV2: processing fetch command
06:55:24.163 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.169 [info] UploadPackV2: collected 6 objects, generating pack
06:55:24.170 [info] UploadPackV2: pack generated, 428 bytes
06:55:24.170 [info] UploadPackV2: fetch response 450 bytes
06:55:24.207 [info] UploadPackV2: processing fetch command
06:55:24.207 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.207 [info] UploadPackV2: collected 3 objects, generating pack
06:55:24.207 [info] UploadPackV2: pack generated, 214 bytes
06:55:24.207 [info] UploadPackV2: fetch response 236 bytes
06:55:24.209 [info] UploadPackV2: processing fetch command
06:55:24.209 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.210 [info] UploadPackV2: collected 12 objects, generating pack
06:55:24.210 [info] UploadPackV2: pack generated, 854 bytes
06:55:24.232 [info] UploadPackV2: fetch response 876 bytes
06:55:24.253 [info] UploadPackV2: processing fetch command
06:55:24.253 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.319 [info] UploadPackV2: collected 29 objects, generating pack
06:55:24.319 [info] UploadPackV2: pack generated, 2069 bytes
06:55:24.320 [info] UploadPackV2: fetch response 2091 bytes
06:55:24.341 [info] UploadPackV2: processing fetch command
06:55:24.342 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.342 [info] UploadPackV2: collected 20 objects, generating pack
.
06:55:24.347 [info] UploadPackV2: pack generated, 1449 bytes
.
06:55:24.347 [info] UploadPackV2: fetch response 1471 bytes
.
06:55:24.381 [info] UploadPackV2: processing fetch command
.
06:55:24.381 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.381 [info] UploadPackV2: collected 20 objects, generating pack
.
06:55:24.382 [info] UploadPackV2: pack generated, 1459 bytes
06:55:24.382 [info] UploadPackV2: fetch response 1481 bytes
06:55:24.418 [info] UploadPackV2: processing fetch command
06:55:24.418 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.447 [info] UploadPackV2: collected 11 objects, generating pack
06:55:24.447 [info] UploadPackV2: pack generated, 851 bytes
06:55:24.447 [info] UploadPackV2: fetch response 873 bytes
06:55:24.450 [info] UploadPackV2: processing fetch command
06:55:24.450 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.451 [info] UploadPackV2: collected 15 objects, generating pack
06:55:24.451 [info] UploadPackV2: pack generated, 1068 bytes
06:55:24.451 [info] UploadPackV2: fetch response 1090 bytes
06:55:24.456 [info] UploadPackV2: processing fetch command
06:55:24.456 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.457 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.457 [info] UploadPackV2: pack generated, 1492 bytes
06:55:24.457 [info] UploadPackV2: fetch response 1514 bytes
06:55:24.462 [info] UploadPackV2: processing fetch command
06:55:24.463 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.464 [info] UploadPackV2: collected 28 objects, generating pack
06:55:24.464 [info] UploadPackV2: pack generated, 2085 bytes
06:55:24.464 [info] UploadPackV2: fetch response 2107 bytes
06:55:24.487 [info] UploadPackV2: processing fetch command
06:55:24.487 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.488 [info] UploadPackV2: collected 25 objects, generating pack
06:55:24.489 [info] UploadPackV2: pack generated, 1873 bytes
06:55:24.489 [info] UploadPackV2: fetch response 1895 bytes
06:55:24.516 [info] UploadPackV2: processing fetch command
06:55:24.516 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.516 [info] UploadPackV2: collected 8 objects, generating pack
06:55:24.517 [info] UploadPackV2: pack generated, 639 bytes
06:55:24.517 [info] UploadPackV2: fetch response 661 bytes
06:55:24.527 [info] UploadPackV2: processing fetch command
06:55:24.527 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.527 [info] UploadPackV2: collected 9 objects, generating pack
06:55:24.528 [info] UploadPackV2: pack generated, 642 bytes
06:55:24.528 [info] UploadPackV2: fetch response 664 bytes
06:55:24.530 [info] UploadPackV2: processing fetch command
06:55:24.530 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.542 [info] UploadPackV2: collected 11 objects, generating pack
06:55:24.543 [info] UploadPackV2: pack generated, 851 bytes
06:55:24.543 [info] UploadPackV2: fetch response 873 bytes
06:55:24.546 [info] UploadPackV2: processing fetch command
06:55:24.546 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.559 [info] UploadPackV2: collected 17 objects, generating pack
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
06:55:24.559 [info] UploadPackV2: pack generated, 1276 bytes
06:55:24.559 [info] UploadPackV2: fetch response 1298 bytes
06:55:24.563 [info] UploadPackV2: processing fetch command
06:55:24.563 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.564 [info] UploadPackV2: collected 11 objects, generating pack
06:55:24.564 [info] UploadPackV2: pack generated, 853 bytes
06:55:24.564 [info] UploadPackV2: fetch response 875 bytes
06:55:24.567 [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
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
06:55:24.568 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.569 [info] UploadPackV2: collected 26 objects, generating pack
06:55:24.569 [info] UploadPackV2: pack generated, 1872 bytes
06:55:24.569 [info] UploadPackV2: fetch response 1894 bytes
06:55:24.587 [info] UploadPackV2: processing fetch command
06:55:24.587 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.588 [info] UploadPackV2: collected 17 objects, generating pack
06:55:24.588 [info] UploadPackV2: pack generated, 1278 bytes
06:55:24.588 [info] UploadPackV2: fetch response 1300 bytes
06:55:24.602 [info] UploadPackV2: processing fetch command
06:55:24.602 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.607 [info] UploadPackV2: collected 18 objects, generating pack
06:55:24.607 [info] UploadPackV2: pack generated, 1281 bytes
06:55:24.607 [info] UploadPackV2: fetch response 1303 bytes
06:55:24.624 [info] UploadPackV2: processing fetch command
06:55:24.624 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.624 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.625 [info] UploadPackV2: pack generated, 1490 bytes
06:55:24.625 [info] UploadPackV2: fetch response 1512 bytes
06:55:24.642 [info] UploadPackV2: processing fetch command
06:55:24.642 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.643 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.644 [info] UploadPackV2: pack generated, 1447 bytes
06:55:24.644 [info] UploadPackV2: fetch response 1469 bytes
06:55:24.665 [info] UploadPackV2: processing fetch command
06:55:24.665 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.665 [info] UploadPackV2: collected 23 objects, generating pack
06:55:24.666 [info] UploadPackV2: pack generated, 1671 bytes
.
06:55:24.666 [info] UploadPackV2: fetch response 1693 bytes
.
06:55:24.687 [info] UploadPackV2: processing fetch command
.
06:55:24.687 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.688 [info] UploadPackV2: collected 27 objects, generating pack
.
06:55:24.689 [info] UploadPackV2: pack generated, 1889 bytes
.
06:55:24.689 [info] UploadPackV2: fetch response 1911 bytes
.
06:55:24.711 [info] UploadPackV2: processing fetch command
.
06:55:24.711 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.712 [info] UploadPackV2: collected 14 objects, generating pack
.
06:55:24.713 [info] UploadPackV2: pack generated, 1062 bytes
.
06:55:24.713 [info] UploadPackV2: fetch response 1084 bytes
.
06:55:24.716 [info] UploadPackV2: processing fetch command
.
06:55:24.716 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.717 [info] UploadPackV2: collected 12 objects, generating pack
.
06:55:24.717 [info] UploadPackV2: pack generated, 854 bytes
.
06:55:24.717 [info] UploadPackV2: fetch response 876 bytes
.
06:55:24.726 [info] UploadPackV2: processing fetch command
.
06:55:24.727 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.727 [info] UploadPackV2: collected 17 objects, generating pack
.
06:55:24.728 [info] UploadPackV2: pack generated, 1235 bytes
.
06:55:24.728 [info] UploadPackV2: fetch response 1257 bytes
.
06:55:24.732 [info] UploadPackV2: processing fetch command
.
06:55:24.733 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:55:24.733 [info] UploadPackV2: collected 17 objects, generating pack
06:55:24.733 [info] UploadPackV2: pack generated, 1247 bytes
06:55:24.733 [info] UploadPackV2: fetch response 1269 bytes
06:55:24.737 [info] UploadPackV2: processing fetch command
06:55:24.737 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.738 [info] UploadPackV2: collected 14 objects, generating pack
06:55:24.738 [info] UploadPackV2: pack generated, 1062 bytes
06:55:24.738 [info] UploadPackV2: fetch response 1084 bytes
06:55:24.755 [info] UploadPackV2: processing fetch command
06:55:24.757 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.757 [info] UploadPackV2: collected 8 objects, generating pack
06:55:24.758 [info] UploadPackV2: pack generated, 636 bytes
06:55:24.758 [info] UploadPackV2: fetch response 658 bytes
06:55:24.761 [info] UploadPackV2: processing fetch command
06:55:24.761 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.762 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.762 [info] UploadPackV2: pack generated, 1492 bytes
06:55:24.762 [info] UploadPackV2: fetch response 1514 bytes
06:55:24.769 [info] UploadPackV2: processing fetch command
06:55:24.769 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.770 [info] UploadPackV2: collected 37 objects, generating pack
06:55:24.771 [info] UploadPackV2: pack generated, 2724 bytes
06:55:24.772 [info] UploadPackV2: fetch response 2746 bytes
06:55:24.778 [info] UploadPackV2: processing fetch command
06:55:24.778 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.778 [info] UploadPackV2: collected 6 objects, generating pack
06:55:24.778 [info] UploadPackV2: pack generated, 428 bytes
06:55:24.779 [info] UploadPackV2: fetch response 450 bytes
06:55:24.782 [info] UploadPackV2: processing fetch command
06:55:24.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:55:24.782 [info] UploadPackV2: collected 12 objects, generating pack
06:55:24.782 [info] UploadPackV2: pack generated, 854 bytes
06:55:24.783 [info] UploadPackV2: fetch response 876 bytes
06:55:24.786 [info] UploadPackV2: processing fetch command
06:55:24.786 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.786 [info] UploadPackV2: collected 12 objects, generating pack
06:55:24.787 [info] UploadPackV2: pack generated, 723 bytes
06:55:24.787 [info] UploadPackV2: fetch response 745 bytes
06:55:24.788 [info] UploadPackV2: processing fetch command
06:55:24.789 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.789 [info] UploadPackV2: collected 12 objects, generating pack
06:55:24.789 [info] UploadPackV2: pack generated, 723 bytes
06:55:24.789 [info] UploadPackV2: fetch response 745 bytes
06:55:24.795 [info] UploadPackV2: processing fetch command
06:55:24.795 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.799 [info] UploadPackV2: collected 40 objects, generating pack
06:55:24.800 [info] UploadPackV2: pack generated, 2373 bytes
06:55:24.800 [info] UploadPackV2: fetch response 2395 bytes
06:55:24.805 [info] UploadPackV2: processing fetch command
06:55:24.805 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.806 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.806 [info] UploadPackV2: pack generated, 1170 bytes
06:55:24.807 [info] UploadPackV2: fetch response 1192 bytes
06:55:24.810 [info] UploadPackV2: processing fetch command
06:55:24.810 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.812 [info] UploadPackV2: collected 32 objects, generating pack
06:55:24.813 [info] UploadPackV2: pack generated, 1862 bytes
06:55:24.813 [info] UploadPackV2: fetch response 1884 bytes
06:55:24.818 [info] UploadPackV2: processing fetch command
06:55:24.818 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.819 [info] UploadPackV2: collected 24 objects, generating pack
06:55:24.820 [info] UploadPackV2: pack generated, 1443 bytes
06:55:24.820 [info] UploadPackV2: fetch response 1465 bytes
06:55:24.823 [info] UploadPackV2: processing fetch command
06:55:24.823 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.823 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.824 [info] UploadPackV2: pack generated, 1203 bytes
06:55:24.824 [info] UploadPackV2: fetch response 1225 bytes
06:55:24.826 [info] UploadPackV2: processing fetch command
06:55:24.826 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.826 [info] UploadPackV2: collected 8 objects, generating pack
06:55:24.826 [info] UploadPackV2: pack generated, 482 bytes
06:55:24.826 [info] UploadPackV2: fetch response 504 bytes
06:55:24.828 [info] UploadPackV2: processing fetch command
06:55:24.828 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.828 [info] UploadPackV2: collected 4 objects, generating pack
06:55:24.828 [info] UploadPackV2: pack generated, 241 bytes
06:55:24.828 [info] UploadPackV2: fetch response 263 bytes
06:55:24.830 [info] UploadPackV2: processing fetch command
06:55:24.830 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.830 [info] UploadPackV2: collected 16 objects, generating pack
06:55:24.831 [info] UploadPackV2: pack generated, 962 bytes
06:55:24.831 [info] UploadPackV2: fetch response 984 bytes
06:55:24.833 [info] UploadPackV2: processing fetch command
06:55:24.834 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.835 [info] UploadPackV2: collected 39 objects, generating pack
06:55:24.836 [info] UploadPackV2: pack generated, 2336 bytes
06:55:24.836 [info] UploadPackV2: fetch response 2358 bytes
06:55:24.840 [info] UploadPackV2: processing fetch command
06:55:24.840 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.841 [info] UploadPackV2: collected 27 objects, generating pack
06:55:24.841 [info] UploadPackV2: pack generated, 1626 bytes
06:55:24.841 [info] UploadPackV2: fetch response 1648 bytes
06:55:24.845 [info] UploadPackV2: processing fetch command
06:55:24.846 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.847 [info] UploadPackV2: collected 27 objects, generating pack
06:55:24.847 [info] UploadPackV2: pack generated, 1645 bytes
06:55:24.847 [info] UploadPackV2: fetch response 1667 bytes
06:55:24.850 [info] UploadPackV2: processing fetch command
06:55:24.850 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.851 [info] UploadPackV2: collected 15 objects, generating pack
06:55:24.851 [info] UploadPackV2: pack generated, 956 bytes
06:55:24.851 [info] UploadPackV2: fetch response 978 bytes
06:55:24.853 [info] UploadPackV2: processing fetch command
06:55:24.853 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.854 [info] UploadPackV2: collected 20 objects, generating pack
06:55:24.854 [info] UploadPackV2: pack generated, 1203 bytes
06:55:24.854 [info] UploadPackV2: fetch response 1225 bytes
06:55:24.865 [info] UploadPackV2: processing fetch command
06:55:24.865 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.871 [info] UploadPackV2: collected 27 objects, generating pack
06:55:24.872 [info] UploadPackV2: pack generated, 1678 bytes
06:55:24.872 [info] UploadPackV2: fetch response 1700 bytes
06:55:24.879 [info] UploadPackV2: processing fetch command
06:55:24.879 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.881 [info] UploadPackV2: collected 38 objects, generating pack
06:55:24.881 [info] UploadPackV2: pack generated, 2340 bytes
06:55:24.881 [info] UploadPackV2: fetch response 2362 bytes
06:55:24.894 [info] UploadPackV2: processing fetch command
06:55:24.894 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.907 [info] UploadPackV2: collected 34 objects, generating pack
06:55:24.908 [info] UploadPackV2: pack generated, 2101 bytes
06:55:24.908 [info] UploadPackV2: fetch response 2123 bytes
06:55:24.931 [info] UploadPackV2: processing fetch command
06:55:24.931 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.931 [info] UploadPackV2: collected 11 objects, generating pack
06:55:24.932 [info] UploadPackV2: pack generated, 717 bytes
06:55:24.932 [info] UploadPackV2: fetch response 739 bytes
06:55:24.933 [info] UploadPackV2: processing fetch command
06:55:24.933 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.934 [info] UploadPackV2: collected 12 objects, generating pack
06:55:24.934 [info] UploadPackV2: pack generated, 723 bytes
06:55:24.934 [info] UploadPackV2: fetch response 745 bytes
06:55:24.936 [info] UploadPackV2: processing fetch command
06:55:24.936 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.937 [info] UploadPackV2: collected 15 objects, generating pack
06:55:24.937 [info] UploadPackV2: pack generated, 956 bytes
06:55:24.937 [info] UploadPackV2: fetch response 978 bytes
.
06:55:24.940 [info] UploadPackV2: processing fetch command
.
06:55:24.940 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:24.940 [info] UploadPackV2: collected 23 objects, generating pack
.
06:55:24.941 [info] UploadPackV2: pack generated, 1435 bytes
.
06:55:24.941 [info] UploadPackV2: fetch response 1457 bytes
.
06:55:24.944 [info] UploadPackV2: processing fetch command
.
06:55:24.944 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.944 [info] UploadPackV2: collected 15 objects, generating pack
06:55:24.944 [info] UploadPackV2: pack generated, 958 bytes
06:55:24.944 [info] UploadPackV2: fetch response 980 bytes
06:55:24.947 [info] UploadPackV2: processing fetch command
06:55:24.947 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.948 [info] UploadPackV2: collected 35 objects, generating pack
06:55:24.949 [info] UploadPackV2: pack generated, 2103 bytes
06:55:24.949 [info] UploadPackV2: fetch response 2125 bytes
06:55:24.953 [info] UploadPackV2: processing fetch command
06:55:24.953 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.953 [info] UploadPackV2: collected 23 objects, generating pack
06:55:24.954 [info] UploadPackV2: pack generated, 1437 bytes
06:55:24.954 [info] UploadPackV2: fetch response 1459 bytes
06:55:24.957 [info] UploadPackV2: processing fetch command
06:55:24.957 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.958 [info] UploadPackV2: collected 24 objects, generating pack
06:55:24.958 [info] UploadPackV2: pack generated, 1443 bytes
06:55:24.958 [info] UploadPackV2: fetch response 1465 bytes
06:55:24.962 [info] UploadPackV2: processing fetch command
06:55:24.962 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.962 [info] UploadPackV2: collected 27 objects, generating pack
06:55:24.963 [info] UploadPackV2: pack generated, 1676 bytes
06:55:24.963 [info] UploadPackV2: fetch response 1698 bytes
06:55:24.967 [info] UploadPackV2: processing fetch command
06:55:24.967 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.967 [info] UploadPackV2: collected 27 objects, generating pack
06:55:24.968 [info] UploadPackV2: pack generated, 1624 bytes
06:55:24.968 [info] UploadPackV2: fetch response 1646 bytes
06:55:24.972 [info] UploadPackV2: processing fetch command
06:55:24.972 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.973 [info] UploadPackV2: collected 31 objects, generating pack
06:55:24.973 [info] UploadPackV2: pack generated, 1884 bytes
06:55:24.973 [info] UploadPackV2: fetch response 1906 bytes
06:55:24.982 [info] UploadPackV2: processing fetch command
06:55:24.982 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:24.991 [info] UploadPackV2: collected 36 objects, generating pack
06:55:24.992 [info] UploadPackV2: pack generated, 2132 bytes
06:55:24.992 [info] UploadPackV2: fetch response 2154 bytes
06:55:25.009 [info] UploadPackV2: processing fetch command
06:55:25.009 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.015 [info] UploadPackV2: collected 19 objects, generating pack
06:55:25.016 [info] UploadPackV2: pack generated, 1194 bytes
06:55:25.016 [info] UploadPackV2: fetch response 1216 bytes
06:55:25.018 [info] UploadPackV2: processing fetch command
06:55:25.018 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.019 [info] UploadPackV2: collected 16 objects, generating pack
06:55:25.019 [info] UploadPackV2: pack generated, 962 bytes
06:55:25.019 [info] UploadPackV2: fetch response 984 bytes
06:55:25.022 [info] UploadPackV2: processing fetch command
06:55:25.030 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.031 [info] UploadPackV2: collected 23 objects, generating pack
06:55:25.032 [info] UploadPackV2: pack generated, 1385 bytes
06:55:25.032 [info] UploadPackV2: fetch response 1407 bytes
06:55:25.040 [info] UploadPackV2: processing fetch command
06:55:25.040 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.041 [info] UploadPackV2: collected 23 objects, generating pack
06:55:25.041 [info] UploadPackV2: pack generated, 1406 bytes
06:55:25.041 [info] UploadPackV2: fetch response 1428 bytes
06:55:25.052 [info] UploadPackV2: processing fetch command
06:55:25.052 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.053 [info] UploadPackV2: collected 19 objects, generating pack
06:55:25.053 [info] UploadPackV2: pack generated, 1194 bytes
06:55:25.053 [info] UploadPackV2: fetch response 1216 bytes
06:55:25.068 [info] UploadPackV2: processing fetch command
06:55:25.068 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.068 [info] UploadPackV2: collected 11 objects, generating pack
06:55:25.068 [info] UploadPackV2: pack generated, 714 bytes
06:55:25.068 [info] UploadPackV2: fetch response 736 bytes
06:55:25.075 [info] UploadPackV2: processing fetch command
06:55:25.075 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.076 [info] UploadPackV2: collected 27 objects, generating pack
06:55:25.076 [info] UploadPackV2: pack generated, 1678 bytes
06:55:25.076 [info] UploadPackV2: fetch response 1700 bytes
06:55:25.086 [info] UploadPackV2: processing fetch command
06:55:25.086 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.091 [info] UploadPackV2: collected 50 objects, generating pack
06:55:25.092 [info] UploadPackV2: pack generated, 3060 bytes
06:55:25.092 [info] UploadPackV2: fetch response 3082 bytes
06:55:25.101 [info] UploadPackV2: processing fetch command
06:55:25.101 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.101 [info] UploadPackV2: collected 8 objects, generating pack
06:55:25.101 [info] UploadPackV2: pack generated, 482 bytes
06:55:25.101 [info] UploadPackV2: fetch response 504 bytes
06:55:25.105 [info] UploadPackV2: processing fetch command
06:55:25.105 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.105 [info] UploadPackV2: collected 16 objects, generating pack
06:55:25.106 [info] UploadPackV2: pack generated, 962 bytes
06:55:25.106 [info] UploadPackV2: fetch response 984 bytes
06:55:25.112 [info] UploadPackV2: processing fetch command
06:55:25.112 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.113 [info] UploadPackV2: collected 8 objects, generating pack
06:55:25.113 [info] UploadPackV2: pack generated, 482 bytes
06:55:28.475 [notice] Handler :default switched from :drop to :sync mode
06:55:25.113 [info] UploadPackV2: fetch response 504 bytes
06:55:25.124 [info] UploadPackV2: processing fetch command
06:55:25.124 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.125 [info] UploadPackV2: collected 36 objects, generating pack
06:55:25.126 [info] UploadPackV2: pack generated, 2102 bytes
06:55:25.126 [info] UploadPackV2: fetch response 2124 bytes
06:55:25.130 [info] UploadPackV2: processing fetch command
06:55:25.130 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.131 [info] UploadPackV2: collected 20 objects, generating pack
06:55:25.131 [info] UploadPackV2: pack generated, 1203 bytes
06:55:25.131 [info] UploadPackV2: fetch response 1225 bytes
06:55:25.135 [info] UploadPackV2: processing fetch command
06:55:25.135 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.136 [info] UploadPackV2: collected 52 objects, generating pack
06:55:25.137 [info] UploadPackV2: pack generated, 3063 bytes
06:55:25.137 [info] UploadPackV2: fetch response 3085 bytes
06:55:25.159 [info] UploadPackV2: processing fetch command
06:55:25.159 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.160 [info] UploadPackV2: collected 27 objects, generating pack
06:55:25.160 [info] UploadPackV2: pack generated, 1676 bytes
06:55:25.160 [info] UploadPackV2: fetch response 1698 bytes
06:55:25.176 [info] UploadPackV2: processing fetch command
06:55:25.176 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.176 [info] UploadPackV2: collected 16 objects, generating pack
06:55:25.176 [info] UploadPackV2: pack generated, 962 bytes
06:55:25.177 [info] UploadPackV2: fetch response 984 bytes
06:55:25.188 [info] UploadPackV2: processing fetch command
06:55:25.188 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.189 [info] UploadPackV2: collected 23 objects, generating pack
06:55:25.189 [info] UploadPackV2: pack generated, 1437 bytes
06:55:25.189 [info] UploadPackV2: fetch response 1459 bytes
06:55:25.205 [info] UploadPackV2: processing fetch command
06:55:25.205 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.206 [info] UploadPackV2: collected 16 objects, generating pack
06:55:25.206 [info] UploadPackV2: pack generated, 962 bytes
06:55:25.206 [info] UploadPackV2: fetch response 984 bytes
06:55:25.209 [info] UploadPackV2: processing fetch command
06:55:25.209 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.210 [info] UploadPackV2: collected 15 objects, generating pack
06:55:25.210 [info] UploadPackV2: pack generated, 958 bytes
06:55:25.210 [info] UploadPackV2: fetch response 980 bytes
06:55:25.221 [info] UploadPackV2: processing fetch command
06:55:25.221 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.221 [info] UploadPackV2: collected 19 objects, generating pack
06:55:25.222 [info] UploadPackV2: pack generated, 1196 bytes
06:55:25.222 [info] UploadPackV2: fetch response 1218 bytes
06:55:25.237 [info] UploadPackV2: processing fetch command
06:55:25.237 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.238 [info] UploadPackV2: collected 15 objects, generating pack
06:55:25.238 [info] UploadPackV2: pack generated, 923 bytes
06:55:25.238 [info] UploadPackV2: fetch response 945 bytes
06:55:25.250 [info] UploadPackV2: processing fetch command
06:55:25.250 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.251 [info] UploadPackV2: collected 42 objects, generating pack
06:55:25.252 [info] UploadPackV2: pack generated, 2582 bytes
06:55:25.252 [info] UploadPackV2: fetch response 2604 bytes
06:55:25.258 [info] UploadPackV2: processing fetch command
06:55:25.258 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.263 [info] UploadPackV2: collected 31 objects, generating pack
06:55:25.264 [info] UploadPackV2: pack generated, 1886 bytes
06:55:25.264 [info] UploadPackV2: fetch response 1908 bytes
06:55:25.273 [info] UploadPackV2: processing fetch command
06:55:25.273 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.283 [info] UploadPackV2: collected 63 objects, generating pack
06:55:25.284 [info] UploadPackV2: pack generated, 3776 bytes
06:55:25.284 [info] UploadPackV2: fetch response 3798 bytes
06:55:25.291 [info] UploadPackV2: processing fetch command
06:55:25.291 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.292 [info] UploadPackV2: collected 40 objects, generating pack
06:55:25.292 [info] UploadPackV2: pack generated, 2373 bytes
06:55:25.292 [info] UploadPackV2: fetch response 2395 bytes
06:55:25.297 [info] UploadPackV2: processing fetch command
06:55:25.297 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.297 [info] UploadPackV2: collected 19 objects, generating pack
06:55:25.298 [info] UploadPackV2: pack generated, 1194 bytes
06:55:25.298 [info] UploadPackV2: fetch response 1216 bytes
06:55:25.300 [info] UploadPackV2: processing fetch command
06:55:25.300 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.301 [info] UploadPackV2: collected 27 objects, generating pack
.
06:55:25.302 [info] UploadPackV2: pack generated, 1678 bytes
06:55:25.302 [info] UploadPackV2: fetch response 1700 bytes
06:55:25.305 [info] UploadPackV2: processing fetch command
06:55:25.305 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.305 [info] UploadPackV2: collected 15 objects, generating pack
06:55:25.305 [info] UploadPackV2: pack generated, 958 bytes
06:55:25.305 [info] UploadPackV2: fetch response 980 bytes
06:55:25.309 [info] UploadPackV2: processing fetch command
06:55:25.310 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.311 [info] UploadPackV2: collected 39 objects, generating pack
06:55:25.311 [info] UploadPackV2: pack generated, 2369 bytes
06:55:25.311 [info] UploadPackV2: fetch response 2391 bytes
06:55:25.316 [info] UploadPackV2: processing fetch command
06:55:25.316 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.317 [info] UploadPackV2: collected 27 objects, generating pack
06:55:25.317 [info] UploadPackV2: pack generated, 1676 bytes
06:55:25.317 [info] UploadPackV2: fetch response 1698 bytes
06:55:25.320 [info] UploadPackV2: processing fetch command
06:55:25.321 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.321 [info] UploadPackV2: collected 24 objects, generating pack
06:55:25.322 [info] UploadPackV2: pack generated, 1443 bytes
06:55:25.322 [info] UploadPackV2: fetch response 1465 bytes
06:55:25.326 [info] UploadPackV2: processing fetch command
06:55:25.327 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.328 [info] UploadPackV2: collected 59 objects, generating pack
06:55:25.329 [info] UploadPackV2: pack generated, 3545 bytes
06:55:25.329 [info] UploadPackV2: fetch response 3567 bytes
06:55:25.336 [info] UploadPackV2: processing fetch command
06:55:25.336 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.337 [info] UploadPackV2: collected 28 objects, generating pack
06:55:25.337 [info] UploadPackV2: pack generated, 1652 bytes
06:55:25.337 [info] UploadPackV2: fetch response 1674 bytes
06:55:25.340 [info] UploadPackV2: processing fetch command
06:55:25.340 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.341 [info] UploadPackV2: collected 15 objects, generating pack
06:55:25.341 [info] UploadPackV2: pack generated, 956 bytes
06:55:25.341 [info] UploadPackV2: fetch response 978 bytes
06:55:25.344 [info] UploadPackV2: processing fetch command
06:55:25.344 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.344 [info] UploadPackV2: collected 27 objects, generating pack
06:55:25.345 [info] UploadPackV2: pack generated, 1623 bytes
06:55:25.345 [info] UploadPackV2: fetch response 1645 bytes
06:55:25.349 [info] UploadPackV2: processing fetch command
06:55:25.349 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.349 [info] UploadPackV2: collected 31 objects, generating pack
06:55:25.350 [info] UploadPackV2: pack generated, 1885 bytes
06:55:25.350 [info] UploadPackV2: fetch response 1907 bytes
06:55:25.353 [info] UploadPackV2: processing fetch command
06:55:25.353 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.354 [info] UploadPackV2: collected 16 objects, generating pack
06:55:25.354 [info] UploadPackV2: pack generated, 962 bytes
06:55:25.354 [info] UploadPackV2: fetch response 984 bytes
06:55:25.357 [info] UploadPackV2: processing fetch command
06:55:25.357 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.357 [info] UploadPackV2: collected 20 objects, generating pack
06:55:25.358 [info] UploadPackV2: pack generated, 1203 bytes
06:55:25.358 [info] UploadPackV2: fetch response 1225 bytes
06:55:25.361 [info] UploadPackV2: processing fetch command
06:55:25.361 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.361 [info] UploadPackV2: collected 23 objects, generating pack
06:55:25.362 [info] UploadPackV2: pack generated, 1404 bytes
06:55:25.362 [info] UploadPackV2: fetch response 1426 bytes
06:55:25.365 [info] UploadPackV2: processing fetch command
06:55:25.365 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.366 [info] UploadPackV2: collected 26 objects, generating pack
06:55:25.366 [info] UploadPackV2: pack generated, 1620 bytes
06:55:25.366 [info] UploadPackV2: fetch response 1642 bytes
06:55:25.369 [info] UploadPackV2: processing fetch command
06:55:25.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.370 [info] UploadPackV2: collected 19 objects, generating pack
06:55:25.370 [info] UploadPackV2: pack generated, 1196 bytes
06:55:25.370 [info] UploadPackV2: fetch response 1218 bytes
06:55:25.373 [info] UploadPackV2: processing fetch command
06:55:25.373 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.373 [info] UploadPackV2: collected 7 objects, generating pack
06:55:25.373 [info] UploadPackV2: pack generated, 475 bytes
06:55:25.373 [info] UploadPackV2: fetch response 497 bytes
06:55:25.375 [info] UploadPackV2: processing fetch command
06:55:25.375 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.375 [info] UploadPackV2: collected 15 objects, generating pack
06:55:25.376 [info] UploadPackV2: pack generated, 901 bytes
06:55:25.376 [info] UploadPackV2: fetch response 923 bytes
06:55:25.378 [info] UploadPackV2: processing fetch command
06:55:25.378 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.379 [info] UploadPackV2: collected 24 objects, generating pack
06:55:25.379 [info] UploadPackV2: pack generated, 1443 bytes
06:55:25.379 [info] UploadPackV2: fetch response 1465 bytes
06:55:25.382 [info] UploadPackV2: processing fetch command
06:55:25.382 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.383 [info] UploadPackV2: collected 27 objects, generating pack
06:55:25.384 [info] UploadPackV2: pack generated, 1676 bytes
06:55:25.384 [info] UploadPackV2: fetch response 1698 bytes
06:55:25.387 [info] UploadPackV2: processing fetch command
06:55:25.387 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.388 [info] UploadPackV2: collected 19 objects, generating pack
06:55:25.388 [info] UploadPackV2: pack generated, 1196 bytes
06:55:25.388 [info] UploadPackV2: fetch response 1218 bytes
06:55:25.390 [info] UploadPackV2: processing fetch command
06:55:25.390 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.391 [info] UploadPackV2: collected 8 objects, generating pack
06:55:25.391 [info] UploadPackV2: pack generated, 482 bytes
06:55:25.391 [info] UploadPackV2: fetch response 504 bytes
06:55:25.393 [info] UploadPackV2: processing fetch command
06:55:25.393 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.393 [info] UploadPackV2: collected 27 objects, generating pack
06:55:25.394 [info] UploadPackV2: pack generated, 1678 bytes
06:55:25.394 [info] UploadPackV2: fetch response 1700 bytes
.
06:55:25.398 [info] UploadPackV2: processing fetch command
.
06:55:25.398 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:25.399 [info] UploadPackV2: collected 42 objects, generating pack
.
06:55:25.400 [info] UploadPackV2: pack generated, 2580 bytes
.
06:55:25.400 [info] UploadPackV2: fetch response 2602 bytes
.
06:55:25.404 [info] UploadPackV2: processing fetch command
.
06:55:25.404 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:25.405 [info] UploadPackV2: collected 23 objects, generating pack
.
06:55:25.405 [info] UploadPackV2: pack generated, 1406 bytes
06:55:25.405 [info] UploadPackV2: fetch response 1428 bytes
06:55:25.716 [info] UploadPackV2: processing fetch command
06:55:25.716 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:25.721 [info] UploadPackV2: reused pack 12325 bytes, 160 objects
06:55:25.721 [info] UploadPackV2: fetch response 12347 bytes
...........................
06:55:31.383 [warning] post_receive hook failed: "webhook failed"
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
..............................................................................
06:55:37.679 [info] UploadPackV2: processing fetch command
06:55:37.679 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:37.687 [info] UploadPackV2: collected 163 objects, generating pack
06:55:37.693 [info] UploadPackV2: pack generated, 15097 bytes
06:55:37.693 [info] UploadPackV2: fetch response 15119 bytes
.................................
06:55:43.698 [info] UploadPackV2: processing ls-refs command
.
06:55:43.806 [info] UploadPackV2: processing ls-refs command
06:55:43.808 [info] UploadPackV2: processing fetch command
06:55:43.808 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:43.835 [info] UploadPackV2: collected 600 objects, generating pack
06:55:43.875 [info] UploadPackV2: pack generated, 45197 bytes
06:55:43.875 [info] UploadPackV2: fetch response 45219 bytes
.
06:55:43.990 [info] UploadPackV2: processing ls-refs command
.
06:55:44.005 [info] UploadPackV2: processing fetch command
06:55:44.005 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.005 [info] UploadPackV2: collected 0 objects, generating pack
06:55:44.005 [info] UploadPackV2: pack generated, 32 bytes
06:55:44.005 [info] UploadPackV2: fetch response 54 bytes
.
06:55:44.274 [info] UploadPackV2: processing ls-refs command
06:55:44.278 [info] UploadPackV2: processing fetch command
06:55:44.279 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.289 [info] UploadPackV2: collected 240 objects, generating pack
06:55:44.308 [info] UploadPackV2: pack generated, 16258 bytes
06:55:44.308 [info] UploadPackV2: fetch response 16280 bytes
.
06:55:44.522 [info] UploadPackV2: processing ls-refs command
06:55:44.524 [info] UploadPackV2: processing fetch command
06:55:44.524 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:55:44.525 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.525 [info] UploadPackV2: pack generated, 231 bytes
06:55:44.525 [info] UploadPackV2: fetch response 327 bytes
.
06:55:44.544 [info] UploadPackV2: processing fetch command
06:55:44.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:55:44.544 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.544 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.544 [info] UploadPackV2: fetch response 205 bytes
06:55:44.544 [info] UploadPackV2: processing fetch command
06:55:44.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.544 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.545 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.545 [info] UploadPackV2: fetch response 205 bytes
06:55:44.545 [info] UploadPackV2: processing fetch command
06:55:44.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.545 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.545 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.545 [info] UploadPackV2: fetch response 205 bytes
06:55:44.545 [info] UploadPackV2: processing fetch command
06:55:44.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.545 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.545 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.545 [info] UploadPackV2: fetch response 205 bytes
06:55:44.545 [info] UploadPackV2: processing fetch command
06:55:44.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.546 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.546 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.551 [info] UploadPackV2: fetch response 205 bytes
06:55:44.551 [info] UploadPackV2: processing fetch command
06:55:44.551 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.551 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.551 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.551 [info] UploadPackV2: fetch response 205 bytes
06:55:44.551 [info] UploadPackV2: processing fetch command
06:55:44.551 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.551 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.551 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.551 [info] UploadPackV2: fetch response 205 bytes
06:55:44.552 [info] UploadPackV2: processing fetch command
06:55:44.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.552 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.552 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.552 [info] UploadPackV2: fetch response 205 bytes
06:55:44.552 [info] UploadPackV2: processing fetch command
06:55:44.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.552 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.552 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.552 [info] UploadPackV2: fetch response 205 bytes
06:55:44.552 [info] UploadPackV2: processing fetch command
06:55:44.552 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.552 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.552 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.553 [info] UploadPackV2: fetch response 205 bytes
06:55:44.553 [info] UploadPackV2: processing fetch command
06:55:44.553 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.553 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.553 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.553 [info] UploadPackV2: fetch response 205 bytes
06:55:44.553 [info] UploadPackV2: processing fetch command
06:55:44.553 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.553 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.553 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.553 [info] UploadPackV2: fetch response 205 bytes
06:55:44.553 [info] UploadPackV2: processing fetch command
06:55:44.553 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.553 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.554 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.554 [info] UploadPackV2: fetch response 205 bytes
06:55:44.554 [info] UploadPackV2: processing fetch command
06:55:44.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.554 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.554 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.554 [info] UploadPackV2: fetch response 205 bytes
06:55:44.554 [info] UploadPackV2: processing fetch command
06:55:44.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.554 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.554 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.554 [info] UploadPackV2: fetch response 205 bytes
06:55:44.554 [info] UploadPackV2: processing fetch command
06:55:44.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.555 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.555 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.555 [info] UploadPackV2: fetch response 205 bytes
06:55:44.555 [info] UploadPackV2: processing fetch command
06:55:44.555 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.555 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.555 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.555 [info] UploadPackV2: fetch response 205 bytes
06:55:44.555 [info] UploadPackV2: processing fetch command
06:55:44.555 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.555 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.555 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.555 [info] UploadPackV2: fetch response 205 bytes
06:55:44.555 [info] UploadPackV2: processing fetch command
06:55:44.556 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.556 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.556 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.556 [info] UploadPackV2: fetch response 205 bytes
06:55:44.556 [info] UploadPackV2: processing fetch command
06:55:44.556 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.556 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.556 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.556 [info] UploadPackV2: fetch response 205 bytes
06:55:44.556 [info] UploadPackV2: processing fetch command
06:55:44.556 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.556 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.556 [info] UploadPackV2: pack generated, 183 bytes
06:55:44.556 [info] UploadPackV2: fetch response 205 bytes
06:55:44.622 [info] UploadPackV2: processing ls-refs command
06:55:44.624 [info] UploadPackV2: processing fetch command
06:55:44.625 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.625 [info] UploadPackV2: collected 15 objects, generating pack
06:55:44.626 [info] UploadPackV2: pack generated, 952 bytes
06:55:44.626 [info] UploadPackV2: fetch response 974 bytes
.
06:55:44.718 [info] UploadPackV2: processing ls-refs command
06:55:44.720 [info] UploadPackV2: processing fetch command
06:55:44.720 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.720 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.721 [info] UploadPackV2: pack generated, 185 bytes
06:55:44.721 [info] UploadPackV2: fetch response 207 bytes
06:55:44.782 [info] UploadPackV2: processing ls-refs command
.
06:55:44.846 [info] UploadPackV2: processing ls-refs command
06:55:44.848 [info] UploadPackV2: processing fetch command
06:55:44.848 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:44.849 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.849 [info] UploadPackV2: pack generated, 196 bytes
06:55:44.849 [info] UploadPackV2: fetch response 218 bytes
.
06:55:44.942 [info] UploadPackV2: processing ls-refs command
06:55:44.943 [info] UploadPackV2: processing fetch command
06:55:44.943 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:55:44.944 [info] UploadPackV2: collected 3 objects, generating pack
06:55:44.944 [info] UploadPackV2: pack generated, 200 bytes
06:55:44.944 [info] UploadPackV2: fetch response 256 bytes
.....
06:55:46.906 [info] UploadPackV2: processing ls-refs command
06:55:46.908 [info] UploadPackV2: processing fetch command
06:55:46.908 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:46.908 [info] UploadPackV2: collected 3 objects, generating pack
06:55:46.909 [info] UploadPackV2: pack generated, 183 bytes
06:55:46.909 [info] UploadPackV2: fetch response 205 bytes
.
06:55:47.042 [info] UploadPackV2: processing ls-refs command
06:55:47.044 [info] UploadPackV2: processing fetch command
06:55:47.044 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:55:47.045 [info] UploadPackV2: collected 3 objects, generating pack
06:55:47.045 [info] UploadPackV2: pack generated, 183 bytes
06:55:47.045 [info] UploadPackV2: fetch response 205 bytes
...
06:56:32.378 [info] UploadPackV2: processing ls-refs command
06:56:32.380 [info] UploadPackV2: processing fetch command
06:56:32.380 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:56:32.381 [info] UploadPackV2: collected 6 objects, generating pack
06:56:32.381 [info] UploadPackV2: pack generated, 365 bytes
06:56:32.381 [info] UploadPackV2: fetch response 387 bytes
.
06:56:47.534 [info] UploadPackV2: processing ls-refs command
06:56:47.536 [info] UploadPackV2: processing fetch command
06:56:47.536 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:56:47.536 [info] UploadPackV2: collected 3 objects, generating pack
06:56:47.537 [info] UploadPackV2: pack generated, 201 bytes
06:56:47.537 [info] UploadPackV2: fetch response 223 bytes
....
06:57:47.986 [info] UploadPackV2: processing ls-refs command
06:57:47.988 [info] UploadPackV2: processing fetch command
06:57:47.988 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:57:47.989 [info] UploadPackV2: reused pack 240 bytes, 3 objects
06:57:47.989 [info] UploadPackV2: fetch response 262 bytes
..
06:58:18.262 [info] UploadPackV2: processing ls-refs command
06:58:18.264 [info] UploadPackV2: processing fetch command
06:58:18.264 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:18.264 [info] UploadPackV2: collected 6 objects, generating pack
06:58:18.264 [info] UploadPackV2: pack generated, 365 bytes
06:58:18.265 [info] UploadPackV2: fetch response 387 bytes
.
06:58:18.374 [info] UploadPackV2: processing ls-refs command
06:58:18.376 [info] UploadPackV2: processing fetch command
06:58:18.376 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:18.376 [info] UploadPackV2: collected 6 objects, generating pack
06:58:18.377 [info] UploadPackV2: pack generated, 365 bytes
06:58:18.377 [info] UploadPackV2: fetch response 387 bytes
06:58:18.394 [info] UploadPackV2: processing fetch command
06:58:18.394 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
06:58:18.394 [info] UploadPackV2: fetch response 122 bytes
.
06:58:18.474 [info] UploadPackV2: processing ls-refs command
06:58:18.475 [info] UploadPackV2: processing fetch command
06:58:18.475 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:58:18.476 [info] UploadPackV2: collected 3 objects, generating pack
06:58:18.476 [info] UploadPackV2: pack generated, 216 bytes
06:58:18.476 [info] UploadPackV2: fetch response 346 bytes
.
06:58:18.546 [info] UploadPackV2: processing ls-refs command
06:58:18.548 [info] UploadPackV2: processing fetch command
06:58:18.548 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:18.548 [info] UploadPackV2: collected 6 objects, generating pack
06:58:18.549 [info] UploadPackV2: pack generated, 365 bytes
06:58:18.549 [info] UploadPackV2: fetch response 387 bytes
06:58:18.550 [info] UploadPackV2: processing ls-refs command
06:58:18.560 [info] UploadPackV2: processing fetch command
06:58:18.560 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:18.560 [info] UploadPackV2: collected 6 objects, generating pack
06:58:18.560 [info] UploadPackV2: pack generated, 365 bytes
06:58:18.561 [info] UploadPackV2: fetch response 387 bytes
.
06:58:18.662 [info] UploadPackV2: processing ls-refs command
06:58:18.664 [info] UploadPackV2: processing fetch command
06:58:18.664 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:18.666 [info] UploadPackV2: collected 90 objects, generating pack
06:58:18.668 [info] UploadPackV2: pack generated, 5649 bytes
06:58:18.668 [info] UploadPackV2: fetch response 5671 bytes
06:58:19.154 [info] UploadPackV2: processing ls-refs command
.
06:58:19.167 [info] UploadPackV2: processing fetch command
06:58:19.167 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:19.168 [info] UploadPackV2: collected 3 objects, generating pack
.
06:58:19.168 [info] UploadPackV2: pack generated, 183 bytes
06:58:19.168 [info] UploadPackV2: fetch response 205 bytes
06:58:19.226 [info] UploadPackV2: processing ls-refs command
06:58:19.228 [info] UploadPackV2: processing fetch command
06:58:19.228 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:19.228 [info] UploadPackV2: collected 6 objects, generating pack
06:58:19.228 [info] UploadPackV2: pack generated, 366 bytes
06:58:19.229 [info] UploadPackV2: fetch response 388 bytes
06:58:19.294 [info] UploadPackV2: processing ls-refs command
06:58:19.295 [info] UploadPackV2: processing fetch command
06:58:19.295 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
06:58:19.295 [info] UploadPackV2: fetch response 32 bytes
06:58:19.295 [info] UploadPackV2: processing fetch command
06:58:19.295 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:19.296 [info] UploadPackV2: collected 3 objects, generating pack
06:58:19.296 [info] UploadPackV2: pack generated, 183 bytes
06:58:19.296 [info] UploadPackV2: fetch response 205 bytes
.
06:58:19.386 [info] UploadPackV2: processing ls-refs command
06:58:19.388 [info] UploadPackV2: processing fetch command
06:58:19.388 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:19.388 [info] UploadPackV2: collected 6 objects, generating pack
06:58:19.389 [info] UploadPackV2: pack generated, 365 bytes
06:58:19.389 [info] UploadPackV2: fetch response 387 bytes
.
06:58:34.458 [info] UploadPackV2: processing ls-refs command
06:58:34.460 [info] UploadPackV2: processing fetch command
06:58:34.460 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:34.460 [info] UploadPackV2: collected 9 objects, generating pack
06:58:34.461 [info] UploadPackV2: pack generated, 547 bytes
06:58:34.461 [info] UploadPackV2: fetch response 569 bytes
06:58:34.554 [info] UploadPackV2: processing ls-refs command
.
06:58:34.814 [info] UploadPackV2: processing ls-refs command
06:58:34.816 [info] UploadPackV2: processing fetch command
06:58:34.816 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:34.816 [info] UploadPackV2: collected 6 objects, generating pack
06:58:34.816 [info] UploadPackV2: pack generated, 365 bytes
06:58:34.816 [info] UploadPackV2: fetch response 387 bytes
06:58:38.882 [info] UploadPackV2: processing ls-refs command
............
06:58:54.062 [info] UploadPackV2: processing ls-refs command
06:58:54.064 [info] UploadPackV2: processing fetch command
06:58:54.064 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.064 [info] UploadPackV2: collected 3 objects, generating pack
06:58:54.064 [info] UploadPackV2: pack generated, 196 bytes
06:58:54.064 [info] UploadPackV2: fetch response 218 bytes
.
06:58:54.142 [info] UploadPackV2: processing ls-refs command
06:58:54.150 [info] UploadPackV2: processing fetch command
06:58:54.150 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.151 [info] UploadPackV2: collected 3 objects, generating pack
06:58:54.151 [info] UploadPackV2: pack generated, 185 bytes
06:58:54.151 [info] UploadPackV2: fetch response 207 bytes
..
06:58:54.300 [info] UploadPackV2: processing ls-refs command
06:58:54.303 [info] UploadPackV2: processing fetch command
06:58:54.303 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.304 [info] UploadPackV2: collected 15 objects, generating pack
06:58:54.304 [info] UploadPackV2: pack generated, 919 bytes
06:58:54.304 [info] UploadPackV2: fetch response 941 bytes
.
06:58:54.361 [info] UploadPackV2: processing ls-refs command
06:58:54.363 [info] UploadPackV2: processing fetch command
06:58:54.363 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.364 [info] UploadPackV2: collected 9 objects, generating pack
06:58:54.364 [info] UploadPackV2: pack generated, 549 bytes
06:58:54.364 [info] UploadPackV2: fetch response 571 bytes
06:58:54.405 [info] UploadPackV2: processing ls-refs command
.
06:58:54.509 [info] UploadPackV2: processing fetch command
06:58:54.509 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.510 [info] UploadPackV2: collected 3 objects, generating pack
06:58:54.510 [info] UploadPackV2: pack generated, 183 bytes
06:58:54.510 [info] UploadPackV2: fetch response 205 bytes
.
06:58:54.545 [info] UploadPackV2: processing ls-refs command
06:58:54.547 [info] UploadPackV2: processing fetch command
06:58:54.547 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.548 [info] UploadPackV2: collected 3 objects, generating pack
06:58:54.548 [info] UploadPackV2: pack generated, 183 bytes
06:58:54.548 [info] UploadPackV2: fetch response 205 bytes
.
06:58:54.605 [info] UploadPackV2: processing ls-refs command
06:58:54.615 [info] UploadPackV2: processing fetch command
06:58:54.616 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.616 [info] UploadPackV2: collected 6 objects, generating pack
06:58:54.616 [info] UploadPackV2: pack generated, 366 bytes
06:58:54.616 [info] UploadPackV2: fetch response 388 bytes
06:58:54.669 [info] UploadPackV2: processing ls-refs command
.
06:58:54.713 [info] UploadPackV2: processing ls-refs command
06:58:54.716 [info] UploadPackV2: processing fetch command
06:58:54.716 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:54.721 [info] UploadPackV2: collected 180 objects, generating pack
06:58:54.723 [info] UploadPackV2: pack generated, 11106 bytes
06:58:54.723 [info] UploadPackV2: fetch response 11128 bytes
.
06:58:54.757 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303394143" 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
.
06:58:54.758 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303394111" 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
06:58:54.759 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303394079" 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
.
06:58:54.759 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303394047" 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
.
06:58:54.759 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303394015" 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
.
06:58:54.759 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303393983" 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
06:58:54.760 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303393951" 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
06:58:54.766 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303393919" 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
.
06:58:54.846 [info] UploadPackV2: processing ls-refs command
06:58:54.848 [info] UploadPackV2: processing fetch command
06:58:54.848 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:58:54.848 [info] UploadPackV2: collected 3 objects, generating pack
06:58:54.848 [info] UploadPackV2: pack generated, 216 bytes
06:58:54.849 [info] UploadPackV2: fetch response 312 bytes
..
06:58:54.926 [info] UploadPackV2: processing ls-refs command
.
06:58:54.986 [info] UploadPackV2: processing ls-refs command
06:58:54.989 [info] UploadPackV2: processing fetch command
06:58:54.989 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
06:58:54.990 [info] UploadPackV2: collected 3 objects, generating pack
06:58:54.990 [info] UploadPackV2: pack generated, 381 bytes
06:58:54.990 [info] UploadPackV2: fetch response 403 bytes
.
06:58:55.070 [info] UploadPackV2: processing ls-refs command
06:58:55.072 [info] UploadPackV2: processing fetch command
06:58:55.072 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:58:55.072 [info] UploadPackV2: collected 9 objects, generating pack
06:58:55.073 [info] UploadPackV2: pack generated, 585 bytes
06:58:55.073 [info] UploadPackV2: fetch response 681 bytes
.
06:58:55.158 [info] UploadPackV2: processing ls-refs command
06:58:55.161 [info] UploadPackV2: processing fetch command
06:58:55.161 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
06:58:55.162 [info] UploadPackV2: collected 5 objects, generating pack
06:58:55.162 [info] UploadPackV2: pack generated, 319 bytes
06:58:55.162 [info] UploadPackV2: fetch response 341 bytes
.
06:58:55.242 [info] UploadPackV2: processing ls-refs command
.
06:58:55.302 [info] UploadPackV2: processing ls-refs command
06:58:55.305 [info] UploadPackV2: processing fetch command
06:58:55.305 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
06:58:55.306 [info] UploadPackV2: collected 3 objects, generating pack
06:58:55.306 [info] UploadPackV2: pack generated, 381 bytes
06:58:55.306 [info] UploadPackV2: fetch response 403 bytes
.
06:58:55.386 [info] UploadPackV2: processing ls-refs command
06:58:55.388 [info] UploadPackV2: processing fetch command
06:58:55.388 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:58:55.388 [info] UploadPackV2: collected 9 objects, generating pack
06:58:55.389 [info] UploadPackV2: pack generated, 549 bytes
06:58:55.389 [info] UploadPackV2: fetch response 571 bytes
06:58:55.408 [info] UploadPackV2: processing fetch command
06:58:55.408 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
06:58:55.408 [info] UploadPackV2: fetch response 171 bytes
.
06:58:55.462 [info] UploadPackV2: processing ls-refs command
06:58:55.464 [info] UploadPackV2: processing fetch command
06:58:55.464 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:58:55.464 [info] UploadPackV2: collected 3 objects, generating pack
06:58:55.464 [info] UploadPackV2: pack generated, 216 bytes
06:58:55.464 [info] UploadPackV2: fetch response 312 bytes
06:58:55.534 [info] UploadPackV2: processing ls-refs command
06:58:55.535 [info] UploadPackV2: processing fetch command
06:58:55.535 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:58:55.536 [info] UploadPackV2: collected 12 objects, generating pack
06:58:55.536 [info] UploadPackV2: pack generated, 768 bytes
06:58:55.536 [info] UploadPackV2: fetch response 1002 bytes
.
06:58:55.606 [info] UploadPackV2: processing ls-refs command
.
06:58:55.662 [info] UploadPackV2: processing ls-refs command
06:58:55.665 [info] UploadPackV2: processing fetch command
06:58:55.665 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:58:55.666 [info] UploadPackV2: collected 6 objects, generating pack
06:58:55.666 [info] UploadPackV2: pack generated, 513 bytes
06:58:55.666 [info] UploadPackV2: fetch response 535 bytes
..
06:58:55.738 [info] UploadPackV2: processing ls-refs command
.
06:58:55.798 [info] UploadPackV2: processing ls-refs command
06:58:55.801 [info] UploadPackV2: processing fetch command
06:58:55.801 [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
06:58:55.802 [info] UploadPackV2: collected 6 objects, generating pack
06:58:55.802 [info] UploadPackV2: pack generated, 513 bytes
06:58:55.802 [info] UploadPackV2: fetch response 535 bytes
.
06:58:55.874 [info] UploadPackV2: processing ls-refs command
06:58:55.876 [info] UploadPackV2: processing fetch command
06:58:55.876 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:58:55.877 [info] UploadPackV2: collected 3 objects, generating pack
06:58:55.877 [info] UploadPackV2: pack generated, 218 bytes
06:58:55.877 [info] UploadPackV2: fetch response 314 bytes
..........................*
06:58:56.081 [info] The function passed as a handler with ID "graph-query-test-12965" 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
*
06:58:56.083 [info] The function passed as a handler with ID "rev-list-range-test-14083" 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
*
06:58:56.103 [info] The function passed as a handler with ID "rev-list-range-test-14147" 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
*
06:58:56.110 [info] The function passed as a handler with ID "graph-query-test-13125" 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
06:58:56.111 [info] The function passed as a handler with ID "rev-list-range-test-13189" 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
*
06:58:56.113 [info] The function passed as a handler with ID "graph-query-test-13317" 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
.
06:58:56.115 [info] The function passed as a handler with ID "telemetry-test-30050" 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
.
06:58:56.115 [info] UploadPackV2: processing fetch command
.
06:58:56.115 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
.
06:58:56.116 [info] UploadPackV2: collected 3 objects, generating pack
.
06:58:56.116 [info] UploadPackV2: pack generated, 183 bytes
.
06:58:56.116 [info] UploadPackV2: fetch response 205 bytes
..........***********.
06:58:56.126 [info] The function passed as a handler with ID "telemetry-test-14179" 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
.
06:59:11.209 [info] The function passed as a handler with ID "telemetry-test-14211" 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
.
06:59:11.210 [info] UploadPackV2: processing fetch command
.
06:59:11.210 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:59:11.210 [info] UploadPackV2: collected 3 objects, generating pack
Finished in 246.5 seconds (39.0s async, 207.5s sync)
06:59:11.210 [info] UploadPackV2: pack generated, 186 bytes
Result: 1066 passed (2 properties, 1064 tests), 16 skipped, 52 excluded
06:59:11.210 [info] UploadPackV2: fetch response 208 bytes
06:59:11.210 [info] The function passed as a handler with ID "telemetry-test-14243" 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
06:59:11.211 [info] UploadPackV2: processing fetch command
06:59:11.211 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:59:11.211 [info] UploadPackV2: collected 2 objects, generating pack
06:59:11.211 [info] UploadPackV2: pack generated, 169 bytes
Exporting cover results ...
06:59:11.211 [info] UploadPackV2: fetch response 191 bytes
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"]
LCOV written to cover/lcov.info
Uploaded 1 artifact(s)