fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Started: Jul 10, 2026 at 14:58 UTC
Completed: Jul 10, 2026 at 15:02 UTC
Duration: 3m 35s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 13 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 486323, max_cases: 8
Excluding tags: [:s3]
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 "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: 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
..........................................
14:59:02.039 [info] The function passed as a handler with ID #Reference<0.2900107619.2812280833.162755> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: 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)
................................................................................................................................................................................................................................
14:59:03.901 [info] UploadPackV2: processing fetch command
14:59:03.901 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:03.904 [info] UploadPackV2: collected 9 objects, streaming pack
14:59:03.905 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
14:59:03.905 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
14:59:03.916 [info] UploadPackV2: processing fetch command
14:59:03.916 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:03.920 [info] UploadPackV2: collected 90 objects, generating pack
14:59:03.922 [info] UploadPackV2: pack generated, 5946 bytes
.
14:59:03.923 [info] UploadPackV2: fetch response 5968 bytes
14:59:03.935 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
14:59:03.939 [info] UploadPackV2: processing fetch command
.
14:59:03.939 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:03.941 [info] UploadPackV2: collected 3 objects, generating pack
.
14:59:03.941 [info] UploadPackV2: pack generated, 191 bytes
.
14:59:03.942 [info] UploadPackV2: fetch response 213 bytes
14:59:03.943 [info] UploadPackV2: processing fetch command
14:59:03.943 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:03.943 [info] UploadPackV2: collected 3 objects, generating pack
14:59:03.944 [info] UploadPackV2: pack generated, 191 bytes
14:59:03.944 [info] UploadPackV2: fetch response 213 bytes
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)
.........
14:59:04.131 [info] UploadPackV2: processing fetch command
14:59:04.132 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:04.141 [info] UploadPackV2: collected 32 objects, generating pack
....
14:59:04.337 [info] UploadPackV2: pack generated, 2459815 bytes
14:59:04.343 [info] UploadPackV2: fetch response 2460022 bytes
14:59:04.344 [info] UploadPackV2: processing fetch command
14:59:04.344 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:04.354 [info] UploadPackV2: collected 32 objects, streaming pack
....
14:59:04.530 [info] UploadPackV2: streamed pack 2459815 bytes, 32 objects
.
14:59:04.530 [info] UploadPackV2: fetch streamed 2459815 pack bytes, 32 objects
.
14:59:04.541 [info] UploadPackV2: processing fetch command
14:59:04.541 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:04.546 [info] UploadPackV2: collected 0 objects, generating pack
14:59:04.546 [info] UploadPackV2: pack generated, 32 bytes
.
14:59:04.549 [info] UploadPackV2: fetch response 54 bytes
.
14:59:04.562 [info] UploadPackV2: processing ls-refs command
..
14:59:04.608 [info] UploadPackV2: processing fetch command
14:59:04.608 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
14:59:04.631 [info] UploadPackV2: collected 600 objects, generating pack
.
14:59:04.641 [info] UploadPackV2: pack generated, 39862 bytes
14:59:04.641 [info] UploadPackV2: fetch response 39884 bytes
........
14:59:04.908 [info] UploadPackV2: processing ls-refs command
14:59:04.909 [info] UploadPackV2: processing fetch command
14:59:04.909 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:04.909 [info] UploadPackV2: collected 3 objects, generating pack
14:59:04.909 [info] UploadPackV2: pack generated, 210 bytes
14:59:04.909 [info] UploadPackV2: fetch response 232 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
.....
14:59:05.145 [info] UploadPackV2: processing fetch command
14:59:05.145 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:05.146 [info] UploadPackV2: collected 15 objects, generating pack
14:59:05.149 [info] UploadPackV2: pack generated, 984 bytes
14:59:05.149 [info] UploadPackV2: fetch response 1006 bytes
14:59:05.150 [info] UploadPackV2: processing fetch command
14:59:05.150 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:05.158 [info] UploadPackV2: collected 15 objects, streaming pack
14:59:05.168 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
14:59:05.168 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.....
14:59:05.290 [info] UploadPackV2: processing fetch command
14:59:05.290 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
14:59:05.370 [info] UploadPackV2: collected 700 objects, generating pack
14:59:05.397 [info] UploadPackV2: pack generated, 48139 bytes
14:59:05.397 [info] UploadPackV2: fetch response 48161 bytes
....
14:59:05.499 [info] UploadPackV2: processing fetch command
14:59:05.499 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:05.502 [info] UploadPackV2: collected 3 objects, generating pack
.
14:59:05.502 [info] UploadPackV2: pack generated, 195 bytes
.
14:59:05.503 [info] UploadPackV2: fetch response 217 bytes
.
14:59:05.506 [info] UploadPackV2: processing fetch command
14:59:05.506 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:05.506 [info] UploadPackV2: collected 3 objects, generating pack
14:59:05.507 [info] UploadPackV2: pack generated, 195 bytes
14:59:05.507 [info] UploadPackV2: fetch response 217 bytes
14:59:05.511 [info] UploadPackV2: processing fetch command
14:59:05.512 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:05.512 [info] UploadPackV2: collected 6 objects, generating pack
.
14:59:05.513 [info] UploadPackV2: pack generated, 414 bytes
14:59:05.513 [info] UploadPackV2: fetch response 436 bytes
...
14:59:05.731 [info] UploadPackV2: processing fetch command
.
14:59:05.731 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
................
14:59:05.820 [info] UploadPackV2: collected 32 objects, streaming pack
................................
14:59:06.052 [info] UploadPackV2: streamed pack 2459748 bytes, 32 objects
14:59:06.052 [info] UploadPackV2: fetch streamed 2459748 pack bytes, 32 objects
.........
14:59:06.446 [info] UploadPackV2: processing fetch command
.
14:59:06.447 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:06.447 [info] UploadPackV2: collected 3 objects, streaming pack
14:59:06.448 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
14:59:06.448 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
14:59:06.449 [info] UploadPackV2: processing ls-refs command
14:59:06.449 [info] UploadPackV2: processing fetch command
14:59:06.449 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:06.449 [info] UploadPackV2: collected 3 objects, generating pack
14:59:06.450 [info] UploadPackV2: pack generated, 206 bytes
14:59:06.450 [info] UploadPackV2: fetch response 228 bytes
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
14:59:06.457 [info] UploadPackV2: processing fetch command
14:59:06.457 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:06.458 [info] UploadPackV2: collected 3 objects, streaming pack
.
14:59:06.467 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
14:59:06.467 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
14:59:06.472 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
14:59:06.475 [info] UploadPackV2: processing ls-refs command
.
14:59:06.482 [info] UploadPackV2: processing fetch command
.
14:59:06.483 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
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
.
14:59:06.483 [info] UploadPackV2: fetch response 73 bytes
.
14:59:06.484 [info] UploadPackV2: processing fetch command
.
14:59:06.484 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
14:59:06.485 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
14:59:06.487 [info] UploadPackV2: processing fetch command
.
14:59:06.487 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:06.490 [info] UploadPackV2: collected 3 objects, generating pack
14:59:06.490 [info] UploadPackV2: pack generated, 223 bytes
14:59:06.490 [info] UploadPackV2: fetch response 245 bytes
14:59:06.492 [info] UploadPackV2: processing ls-refs command
14:59:06.493 [info] UploadPackV2: processing ls-refs command
14:59:06.499 [info] UploadPackV2: processing fetch command
14:59:06.499 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:06.501 [info] UploadPackV2: collected 15 objects, generating pack
14:59:06.502 [info] UploadPackV2: pack generated, 984 bytes
14:59:06.502 [info] UploadPackV2: fetch response 1006 bytes
14:59:06.505 [info] UploadPackV2: processing fetch command
14:59:06.505 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:06.507 [info] UploadPackV2: collected 3 objects, generating pack
14:59:06.507 [info] UploadPackV2: pack generated, 191 bytes
14:59:06.507 [info] UploadPackV2: fetch response 213 bytes
14:59:06.508 [info] UploadPackV2: processing fetch command
14:59:06.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:06.509 [info] UploadPackV2: collected 3 objects, generating pack
14:59:06.509 [info] UploadPackV2: pack generated, 194 bytes
14:59:06.509 [info] UploadPackV2: fetch response 216 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: the variable "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
............................................
14:59:07.712 [info] UploadPackV2: processing fetch command
14:59:07.712 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.721 [info] UploadPackV2: collected 35 objects, generating pack
14:59:07.724 [info] UploadPackV2: pack generated, 2509 bytes
14:59:07.724 [info] UploadPackV2: fetch response 2531 bytes
14:59:07.775 [info] UploadPackV2: processing fetch command
14:59:07.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.776 [info] UploadPackV2: collected 14 objects, generating pack
14:59:07.777 [info] UploadPackV2: pack generated, 1064 bytes
14:59:07.777 [info] UploadPackV2: fetch response 1086 bytes
14:59:07.811 [info] UploadPackV2: processing fetch command
14:59:07.812 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.813 [info] UploadPackV2: collected 25 objects, generating pack
14:59:07.813 [info] UploadPackV2: pack generated, 1871 bytes
14:59:07.813 [info] UploadPackV2: fetch response 1893 bytes
14:59:07.836 [info] UploadPackV2: processing fetch command
14:59:07.836 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.842 [info] UploadPackV2: collected 29 objects, generating pack
14:59:07.843 [info] UploadPackV2: pack generated, 2089 bytes
14:59:07.843 [info] UploadPackV2: fetch response 2111 bytes
14:59:07.862 [info] UploadPackV2: processing fetch command
14:59:07.862 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.863 [info] UploadPackV2: collected 3 objects, generating pack
14:59:07.864 [info] UploadPackV2: pack generated, 214 bytes
14:59:07.864 [info] UploadPackV2: fetch response 236 bytes
14:59:07.882 [info] UploadPackV2: processing fetch command
14:59:07.882 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.888 [info] UploadPackV2: collected 28 objects, generating pack
14:59:07.890 [info] UploadPackV2: pack generated, 2085 bytes
14:59:07.891 [info] UploadPackV2: fetch response 2107 bytes
14:59:07.928 [info] UploadPackV2: processing fetch command
14:59:07.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.935 [info] UploadPackV2: collected 12 objects, generating pack
14:59:07.936 [info] UploadPackV2: pack generated, 854 bytes
14:59:07.937 [info] UploadPackV2: fetch response 876 bytes
14:59:07.969 [info] UploadPackV2: processing fetch command
14:59:07.970 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:07.976 [info] UploadPackV2: collected 17 objects, generating pack
14:59:07.976 [info] UploadPackV2: pack generated, 1276 bytes
14:59:07.976 [info] UploadPackV2: fetch response 1298 bytes
14:59:08.001 [info] UploadPackV2: processing fetch command
14:59:08.001 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.025 [info] UploadPackV2: collected 21 objects, generating pack
14:59:08.026 [info] UploadPackV2: pack generated, 1463 bytes
14:59:08.027 [info] UploadPackV2: fetch response 1485 bytes
14:59:08.052 [info] UploadPackV2: processing fetch command
14:59:08.053 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
14:59:08.064 [info] UploadPackV2: collected 12 objects, generating pack
14:59:08.065 [info] UploadPackV2: pack generated, 854 bytes
14:59:08.065 [info] UploadPackV2: fetch response 876 bytes
14:59:08.077 [info] UploadPackV2: processing fetch command
14:59:08.078 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.079 [info] UploadPackV2: collected 9 objects, generating pack
14:59:08.079 [info] UploadPackV2: pack generated, 642 bytes
14:59:08.079 [info] UploadPackV2: fetch response 664 bytes
14:59:08.083 [info] UploadPackV2: processing fetch command
14:59:08.083 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.085 [info] UploadPackV2: collected 6 objects, generating pack
14:59:08.086 [info] UploadPackV2: pack generated, 428 bytes
14:59:08.086 [info] UploadPackV2: fetch response 450 bytes
14:59:08.092 [info] UploadPackV2: processing fetch command
14:59:08.093 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.095 [info] UploadPackV2: collected 6 objects, generating pack
14:59:08.095 [info] UploadPackV2: pack generated, 428 bytes
14:59:08.095 [info] UploadPackV2: fetch response 450 bytes
14:59:08.099 [info] UploadPackV2: processing fetch command
14:59:08.099 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.099 [info] UploadPackV2: collected 11 objects, generating pack
14:59:08.099 [info] UploadPackV2: pack generated, 851 bytes
14:59:08.099 [info] UploadPackV2: fetch response 873 bytes
14:59:08.105 [info] UploadPackV2: processing fetch command
14:59:08.105 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.106 [info] UploadPackV2: collected 26 objects, generating pack
14:59:08.107 [info] UploadPackV2: pack generated, 1885 bytes
14:59:08.107 [info] UploadPackV2: fetch response 1907 bytes
14:59:08.113 [info] UploadPackV2: processing fetch command
14:59:08.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.114 [info] UploadPackV2: collected 12 objects, generating pack
14:59:08.114 [info] UploadPackV2: pack generated, 854 bytes
14:59:08.114 [info] UploadPackV2: fetch response 876 bytes
14:59:08.118 [info] UploadPackV2: processing fetch command
14:59:08.118 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.118 [info] UploadPackV2: collected 8 objects, generating pack
14:59:08.118 [info] UploadPackV2: pack generated, 636 bytes
14:59:08.118 [info] UploadPackV2: fetch response 658 bytes
14:59:08.121 [info] UploadPackV2: processing fetch command
14:59:08.121 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.121 [info] UploadPackV2: collected 14 objects, generating pack
14:59:08.122 [info] UploadPackV2: pack generated, 1062 bytes
14:59:08.122 [info] UploadPackV2: fetch response 1084 bytes
14:59:08.128 [info] UploadPackV2: processing fetch command
14:59:08.128 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.129 [info] UploadPackV2: collected 18 objects, generating pack
14:59:08.130 [info] UploadPackV2: pack generated, 1281 bytes
14:59:08.130 [info] UploadPackV2: fetch response 1303 bytes
14:59:08.135 [info] UploadPackV2: processing fetch command
14:59:08.135 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.136 [info] UploadPackV2: collected 9 objects, generating pack
14:59:08.136 [info] UploadPackV2: pack generated, 642 bytes
14:59:08.136 [info] UploadPackV2: fetch response 664 bytes
14:59:08.141 [info] UploadPackV2: processing fetch command
14:59:08.141 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.142 [info] UploadPackV2: collected 20 objects, generating pack
14:59:08.143 [info] UploadPackV2: pack generated, 1492 bytes
14:59:08.143 [info] UploadPackV2: fetch response 1514 bytes
14:59:08.149 [info] UploadPackV2: processing fetch command
14:59:08.270 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.278 [info] UploadPackV2: collected 20 objects, generating pack
14:59:08.279 [info] UploadPackV2: pack generated, 1443 bytes
14:59:08.279 [info] UploadPackV2: fetch response 1465 bytes
14:59:08.353 [info] UploadPackV2: processing fetch command
14:59:08.354 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.359 [info] UploadPackV2: collected 38 objects, generating pack
14:59:08.360 [info] UploadPackV2: pack generated, 2731 bytes
14:59:08.360 [info] UploadPackV2: fetch response 2753 bytes
14:59:08.375 [info] UploadPackV2: processing fetch command
14:59:08.375 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.379 [info] UploadPackV2: collected 20 objects, generating pack
14:59:08.380 [info] UploadPackV2: pack generated, 1490 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
│
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
14:59:08.381 [info] UploadPackV2: fetch response 1512 bytes
14:59:08.394 [info] UploadPackV2: processing fetch command
14:59:08.394 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.395 [info] UploadPackV2: collected 18 objects, generating pack
14:59:08.395 [info] UploadPackV2: pack generated, 1281 bytes
14:59:08.395 [info] UploadPackV2: fetch response 1303 bytes
14:59:08.409 [info] UploadPackV2: processing fetch command
14:59:08.409 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.410 [info] UploadPackV2: collected 21 objects, generating pack
14:59:08.411 [info] UploadPackV2: pack generated, 1463 bytes
14:59:08.411 [info] UploadPackV2: fetch response 1485 bytes
14:59:08.417 [info] UploadPackV2: processing fetch command
14:59:08.417 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.418 [info] UploadPackV2: collected 17 objects, generating pack
14:59:08.419 [info] UploadPackV2: pack generated, 1248 bytes
14:59:08.419 [info] UploadPackV2: fetch response 1270 bytes
14:59:08.426 [info] UploadPackV2: processing fetch command
14:59:08.427 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.427 [info] UploadPackV2: collected 6 objects, generating pack
14:59:08.427 [info] UploadPackV2: pack generated, 428 bytes
14:59:08.427 [info] UploadPackV2: fetch response 450 bytes
14:59:08.430 [info] UploadPackV2: processing fetch command
14:59:08.430 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.431 [info] UploadPackV2: collected 8 objects, generating pack
14:59:08.431 [info] UploadPackV2: pack generated, 636 bytes
14:59:08.431 [info] UploadPackV2: fetch response 658 bytes
14:59:08.439 [info] UploadPackV2: processing fetch command
14:59:08.439 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.440 [info] UploadPackV2: collected 20 objects, generating pack
14:59:08.441 [info] UploadPackV2: pack generated, 1490 bytes
14:59:08.441 [info] UploadPackV2: fetch response 1512 bytes
14:59:08.449 [info] UploadPackV2: processing fetch command
14:59:08.449 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.450 [info] UploadPackV2: collected 15 objects, generating pack
14:59:08.451 [info] UploadPackV2: pack generated, 1068 bytes
14:59:08.451 [info] UploadPackV2: fetch response 1090 bytes
14:59:08.456 [info] UploadPackV2: processing fetch command
14:59:08.457 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.457 [info] UploadPackV2: collected 20 objects, generating pack
14:59:08.459 [info] UploadPackV2: pack generated, 1492 bytes
14:59:08.459 [info] UploadPackV2: fetch response 1514 bytes
14:59:08.464 [info] UploadPackV2: processing fetch command
14:59:08.464 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.464 [info] UploadPackV2: collected 6 objects, generating pack
14:59:08.465 [info] UploadPackV2: pack generated, 428 bytes
14:59:08.465 [info] UploadPackV2: fetch response 450 bytes
14:59:08.468 [info] UploadPackV2: processing fetch command
14:59:08.468 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.468 [info] UploadPackV2: collected 11 objects, generating pack
14:59:08.469 [info] UploadPackV2: pack generated, 818 bytes
14:59:08.469 [info] UploadPackV2: fetch response 840 bytes
14:59:08.474 [info] UploadPackV2: processing fetch command
14:59:08.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.545 [info] UploadPackV2: collected 17 objects, generating pack
.
14:59:08.546 [info] UploadPackV2: pack generated, 1276 bytes
14:59:08.547 [info] UploadPackV2: fetch response 1298 bytes
14:59:08.555 [info] UploadPackV2: processing fetch command
14:59:08.555 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.556 [info] UploadPackV2: collected 15 objects, generating pack
14:59:08.557 [info] UploadPackV2: pack generated, 1035 bytes
14:59:08.557 [info] UploadPackV2: fetch response 1057 bytes
14:59:08.561 [info] UploadPackV2: processing fetch command
14:59:08.561 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.562 [info] UploadPackV2: collected 3 objects, generating pack
14:59:08.562 [info] UploadPackV2: pack generated, 214 bytes
14:59:08.562 [info] UploadPackV2: fetch response 236 bytes
14:59:08.564 [info] UploadPackV2: processing fetch command
14:59:08.564 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.565 [info] UploadPackV2: collected 3 objects, generating pack
14:59:08.565 [info] UploadPackV2: pack generated, 214 bytes
14:59:08.565 [info] UploadPackV2: fetch response 236 bytes
14:59:08.570 [info] UploadPackV2: processing fetch command
14:59:08.570 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:08.571 [info] UploadPackV2: collected 20 objects, generating pack
14:59:08.572 [info] UploadPackV2: pack generated, 1447 bytes
14:59:08.572 [info] UploadPackV2: fetch response 1469 bytes
14:59:08.577 [info] UploadPackV2: processing fetch command
14:59:08.577 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
14:59:08.577 [info] UploadPackV2: collected 3 objects, generating pack
14:59:08.577 [info] UploadPackV2: pack generated, 214 bytes
14:59:08.577 [info] UploadPackV2: fetch response 236 bytes
14:59:08.585 [info] UploadPackV2: processing fetch command
14:59:08.585 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.587 [info] UploadPackV2: collected 47 objects, generating pack
14:59:08.590 [info] UploadPackV2: pack generated, 2821 bytes
14:59:08.590 [info] UploadPackV2: fetch response 2843 bytes
14:59:08.601 [info] UploadPackV2: processing fetch command
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
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
14:59:08.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.603 [info] UploadPackV2: collected 19 objects, generating pack
14:59:08.604 [info] UploadPackV2: pack generated, 1196 bytes
14:59:08.605 [info] UploadPackV2: fetch response 1218 bytes
14:59:08.613 [info] UploadPackV2: processing fetch command
14:59:08.613 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.615 [info] UploadPackV2: collected 34 objects, generating pack
14:59:08.616 [info] UploadPackV2: pack generated, 2099 bytes
14:59:08.616 [info] UploadPackV2: fetch response 2121 bytes
14:59:08.624 [info] UploadPackV2: processing fetch command
14:59:08.624 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.626 [info] UploadPackV2: collected 39 objects, generating pack
14:59:08.628 [info] UploadPackV2: pack generated, 2347 bytes
14:59:08.628 [info] UploadPackV2: fetch response 2369 bytes
14:59:08.633 [info] UploadPackV2: processing fetch command
.
14:59:08.633 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.634 [info] UploadPackV2: collected 4 objects, generating pack
14:59:08.634 [info] UploadPackV2: pack generated, 241 bytes
14:59:08.634 [info] UploadPackV2: fetch response 263 bytes
14:59:08.639 [info] UploadPackV2: processing fetch command
14:59:08.667 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.684 [info] UploadPackV2: collected 38 objects, generating pack
14:59:08.686 [info] UploadPackV2: pack generated, 2340 bytes
14:59:08.686 [info] UploadPackV2: fetch response 2362 bytes
14:59:08.705 [info] UploadPackV2: processing fetch command
14:59:08.706 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.717 [info] UploadPackV2: collected 16 objects, generating pack
14:59:08.717 [info] UploadPackV2: pack generated, 962 bytes
14:59:08.718 [info] UploadPackV2: fetch response 984 bytes
14:59:08.728 [info] UploadPackV2: processing fetch command
14:59:08.728 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.729 [info] UploadPackV2: collected 23 objects, generating pack
14:59:08.730 [info] UploadPackV2: pack generated, 1435 bytes
.
14:59:08.730 [info] UploadPackV2: fetch response 1457 bytes
.
14:59:08.737 [info] UploadPackV2: processing fetch command
.
14:59:08.738 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:08.743 [info] UploadPackV2: collected 28 objects, generating pack
.
14:59:08.743 [info] UploadPackV2: pack generated, 1652 bytes
14:59:08.744 [info] UploadPackV2: fetch response 1674 bytes
14:59:08.760 [info] UploadPackV2: processing fetch command
14:59:08.760 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.762 [info] UploadPackV2: collected 16 objects, generating pack
14:59:08.763 [info] UploadPackV2: pack generated, 962 bytes
14:59:08.763 [info] UploadPackV2: fetch response 984 bytes
14:59:08.765 [info] UploadPackV2: processing fetch command
14:59:08.765 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.767 [info] UploadPackV2: collected 12 objects, generating pack
14:59:08.767 [info] UploadPackV2: pack generated, 723 bytes
14:59:08.767 [info] UploadPackV2: fetch response 745 bytes
14:59:08.769 [info] UploadPackV2: processing fetch command
14:59:08.769 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.769 [info] UploadPackV2: collected 8 objects, generating pack
14:59:08.769 [info] UploadPackV2: pack generated, 482 bytes
14:59:08.769 [info] UploadPackV2: fetch response 504 bytes
14:59:08.771 [info] UploadPackV2: processing fetch command
14:59:08.771 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.771 [info] UploadPackV2: collected 8 objects, generating pack
14:59:08.772 [info] UploadPackV2: pack generated, 482 bytes
14:59:08.772 [info] UploadPackV2: fetch response 504 bytes
14:59:08.775 [info] UploadPackV2: processing fetch command
14:59:08.775 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.775 [info] UploadPackV2: collected 15 objects, generating pack
14:59:08.776 [info] UploadPackV2: pack generated, 956 bytes
14:59:08.776 [info] UploadPackV2: fetch response 978 bytes
14:59:08.780 [info] UploadPackV2: processing fetch command
14:59:08.780 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.781 [info] UploadPackV2: collected 35 objects, generating pack
14:59:08.782 [info] UploadPackV2: pack generated, 2125 bytes
14:59:08.782 [info] UploadPackV2: fetch response 2147 bytes
14:59:08.797 [info] UploadPackV2: processing fetch command
14:59:08.798 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.798 [info] UploadPackV2: collected 16 objects, generating pack
14:59:08.799 [info] UploadPackV2: pack generated, 962 bytes
14:59:08.800 [info] UploadPackV2: fetch response 984 bytes
14:59:08.804 [info] UploadPackV2: processing fetch command
14:59:08.804 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.805 [info] UploadPackV2: collected 11 objects, generating pack
14:59:08.805 [info] UploadPackV2: pack generated, 714 bytes
.
14:59:08.806 [info] UploadPackV2: fetch response 736 bytes
.
14:59:08.808 [info] UploadPackV2: processing fetch command
.
14:59:08.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:08.809 [info] UploadPackV2: collected 19 objects, generating pack
.
14:59:08.809 [info] UploadPackV2: pack generated, 1194 bytes
.
14:59:08.810 [info] UploadPackV2: fetch response 1216 bytes
.
14:59:08.813 [info] UploadPackV2: processing fetch command
.
14:59:08.942 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:08.944 [info] UploadPackV2: collected 24 objects, generating pack
.
14:59:08.944 [info] UploadPackV2: pack generated, 1443 bytes
.
14:59:08.944 [info] UploadPackV2: fetch response 1465 bytes
14:59:08.949 [info] UploadPackV2: processing fetch command
14:59:08.949 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.950 [info] UploadPackV2: collected 12 objects, generating pack
14:59:08.950 [info] UploadPackV2: pack generated, 723 bytes
14:59:08.950 [info] UploadPackV2: fetch response 745 bytes
14:59:08.956 [info] UploadPackV2: processing fetch command
14:59:08.956 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.957 [info] UploadPackV2: collected 27 objects, generating pack
14:59:08.958 [info] UploadPackV2: pack generated, 1678 bytes
14:59:08.958 [info] UploadPackV2: fetch response 1700 bytes
14:59:08.963 [info] UploadPackV2: processing fetch command
14:59:08.964 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.965 [info] UploadPackV2: collected 27 objects, generating pack
14:59:08.966 [info] UploadPackV2: pack generated, 1620 bytes
14:59:08.966 [info] UploadPackV2: fetch response 1642 bytes
14:59:08.977 [info] UploadPackV2: processing fetch command
14:59:08.977 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.979 [info] UploadPackV2: collected 51 objects, generating pack
14:59:08.980 [info] UploadPackV2: pack generated, 3070 bytes
14:59:08.980 [info] UploadPackV2: fetch response 3092 bytes
14:59:08.988 [info] UploadPackV2: processing fetch command
14:59:08.988 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.989 [info] UploadPackV2: collected 27 objects, generating pack
14:59:08.990 [info] UploadPackV2: pack generated, 1676 bytes
14:59:08.990 [info] UploadPackV2: fetch response 1698 bytes
14:59:08.994 [info] UploadPackV2: processing fetch command
14:59:08.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:08.995 [info] UploadPackV2: collected 24 objects, generating pack
14:59:08.996 [info] UploadPackV2: pack generated, 1443 bytes
14:59:08.996 [info] UploadPackV2: fetch response 1465 bytes
14:59:09.002 [info] UploadPackV2: processing fetch command
14:59:09.002 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.007 [info] UploadPackV2: collected 28 objects, generating pack
14:59:09.008 [info] UploadPackV2: pack generated, 1652 bytes
14:59:09.008 [info] UploadPackV2: fetch response 1674 bytes
.
14:59:09.023 [info] UploadPackV2: processing fetch command
14:59:09.023 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.026 [info] UploadPackV2: collected 23 objects, generating pack
14:59:09.027 [info] UploadPackV2: pack generated, 1407 bytes
14:59:09.027 [info] UploadPackV2: fetch response 1429 bytes
14:59:09.032 [info] UploadPackV2: processing fetch command
14:59:09.032 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.033 [info] UploadPackV2: collected 8 objects, generating pack
.
14:59:09.033 [info] UploadPackV2: pack generated, 482 bytes
14:59:09.034 [info] UploadPackV2: fetch response 504 bytes
14:59:09.038 [info] UploadPackV2: processing fetch command
.
14:59:09.038 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.039 [info] UploadPackV2: collected 11 objects, generating pack
.
14:59:09.039 [info] UploadPackV2: pack generated, 714 bytes
14:59:09.040 [info] UploadPackV2: fetch response 736 bytes
14:59:09.047 [info] UploadPackV2: processing fetch command
14:59:09.047 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.048 [info] UploadPackV2: collected 27 objects, generating pack
.
14:59:09.050 [info] UploadPackV2: pack generated, 1676 bytes
.
14:59:09.051 [info] UploadPackV2: fetch response 1698 bytes
.
14:59:09.060 [info] UploadPackV2: processing fetch command
.
14:59:09.060 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.061 [info] UploadPackV2: collected 20 objects, generating pack
14:59:09.062 [info] UploadPackV2: pack generated, 1203 bytes
14:59:09.062 [info] UploadPackV2: fetch response 1225 bytes
14:59:09.068 [info] UploadPackV2: processing fetch command
14:59:09.068 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.076 [info] UploadPackV2: collected 27 objects, generating pack
14:59:09.077 [info] UploadPackV2: pack generated, 1678 bytes
14:59:09.077 [info] UploadPackV2: fetch response 1700 bytes
14:59:09.098 [info] UploadPackV2: processing fetch command
14:59:09.098 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.104 [info] UploadPackV2: collected 8 objects, generating pack
14:59:09.105 [info] UploadPackV2: pack generated, 482 bytes
14:59:09.105 [info] UploadPackV2: fetch response 504 bytes
14:59:09.112 [info] UploadPackV2: processing fetch command
14:59:09.168 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.170 [info] UploadPackV2: collected 15 objects, generating pack
14:59:09.170 [info] UploadPackV2: pack generated, 923 bytes
14:59:09.170 [info] UploadPackV2: fetch response 945 bytes
14:59:09.177 [info] UploadPackV2: processing fetch command
14:59:09.177 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.180 [info] UploadPackV2: collected 23 objects, generating pack
14:59:09.181 [info] UploadPackV2: pack generated, 1435 bytes
14:59:09.181 [info] UploadPackV2: fetch response 1457 bytes
14:59:09.194 [info] UploadPackV2: processing fetch command
14:59:09.194 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.195 [info] UploadPackV2: collected 20 objects, generating pack
14:59:09.196 [info] UploadPackV2: pack generated, 1170 bytes
14:59:09.196 [info] UploadPackV2: fetch response 1192 bytes
14:59:09.200 [info] UploadPackV2: processing fetch command
14:59:09.200 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.201 [info] UploadPackV2: collected 4 objects, generating pack
14:59:09.201 [info] UploadPackV2: pack generated, 241 bytes
14:59:09.201 [info] UploadPackV2: fetch response 263 bytes
14:59:09.204 [info] UploadPackV2: processing fetch command
14:59:09.204 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.207 [info] UploadPackV2: collected 4 objects, generating pack
14:59:09.207 [info] UploadPackV2: pack generated, 241 bytes
14:59:09.207 [info] UploadPackV2: fetch response 263 bytes
.
14:59:09.209 [info] UploadPackV2: processing fetch command
14:59:09.210 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.211 [info] UploadPackV2: collected 27 objects, generating pack
14:59:09.214 [info] UploadPackV2: pack generated, 1624 bytes
14:59:09.214 [info] UploadPackV2: fetch response 1646 bytes
14:59:09.218 [info] UploadPackV2: processing fetch command
14:59:09.218 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.218 [info] UploadPackV2: collected 4 objects, generating pack
14:59:09.219 [info] UploadPackV2: pack generated, 241 bytes
14:59:09.219 [info] UploadPackV2: fetch response 263 bytes
14:59:09.225 [info] UploadPackV2: processing fetch command
14:59:09.225 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.226 [info] UploadPackV2: collected 19 objects, generating pack
14:59:09.227 [info] UploadPackV2: pack generated, 1194 bytes
14:59:09.227 [info] UploadPackV2: fetch response 1216 bytes
14:59:09.232 [info] UploadPackV2: processing fetch command
14:59:09.232 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.233 [info] UploadPackV2: collected 12 objects, generating pack
14:59:09.233 [info] UploadPackV2: pack generated, 723 bytes
14:59:09.234 [info] UploadPackV2: fetch response 745 bytes
14:59:09.241 [info] UploadPackV2: processing fetch command
14:59:09.242 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.243 [info] UploadPackV2: collected 15 objects, generating pack
14:59:09.290 [info] UploadPackV2: pack generated, 923 bytes
14:59:09.291 [info] UploadPackV2: fetch response 945 bytes
14:59:09.301 [info] UploadPackV2: processing fetch command
14:59:09.301 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.302 [info] UploadPackV2: collected 23 objects, generating pack
14:59:09.303 [info] UploadPackV2: pack generated, 1435 bytes
14:59:09.303 [info] UploadPackV2: fetch response 1457 bytes
14:59:09.308 [info] UploadPackV2: processing fetch command
14:59:09.308 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.309 [info] UploadPackV2: collected 20 objects, generating pack
14:59:09.309 [info] UploadPackV2: pack generated, 1203 bytes
14:59:09.310 [info] UploadPackV2: fetch response 1225 bytes
14:59:09.317 [info] UploadPackV2: processing fetch command
14:59:09.318 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.322 [info] UploadPackV2: collected 11 objects, generating pack
14:59:09.323 [info] UploadPackV2: pack generated, 714 bytes
14:59:09.323 [info] UploadPackV2: fetch response 736 bytes
14:59:09.326 [info] UploadPackV2: processing fetch command
14:59:09.326 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.328 [info] UploadPackV2: collected 27 objects, generating pack
14:59:09.329 [info] UploadPackV2: pack generated, 1678 bytes
14:59:09.329 [info] UploadPackV2: fetch response 1700 bytes
14:59:09.333 [info] UploadPackV2: processing fetch command
14:59:09.333 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.335 [info] UploadPackV2: collected 24 objects, generating pack
14:59:09.336 [info] UploadPackV2: pack generated, 1443 bytes
14:59:09.336 [info] UploadPackV2: fetch response 1465 bytes
14:59:09.347 [info] UploadPackV2: processing fetch command
14:59:09.347 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.349 [info] UploadPackV2: collected 23 objects, generating pack
14:59:09.352 [info] UploadPackV2: pack generated, 1385 bytes
14:59:09.352 [info] UploadPackV2: fetch response 1407 bytes
14:59:09.377 [info] UploadPackV2: processing fetch command
14:59:09.377 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.379 [info] UploadPackV2: collected 24 objects, generating pack
14:59:09.381 [info] UploadPackV2: pack generated, 1443 bytes
14:59:09.381 [info] UploadPackV2: fetch response 1465 bytes
14:59:09.391 [info] UploadPackV2: processing fetch command
14:59:09.392 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.392 [info] UploadPackV2: collected 7 objects, generating pack
14:59:09.393 [info] UploadPackV2: pack generated, 475 bytes
14:59:09.393 [info] UploadPackV2: fetch response 497 bytes
14:59:09.409 [info] UploadPackV2: processing fetch command
14:59:09.409 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.417 [info] UploadPackV2: collected 30 objects, generating pack
14:59:09.421 [info] UploadPackV2: pack generated, 1860 bytes
14:59:09.421 [info] UploadPackV2: fetch response 1882 bytes
14:59:09.456 [info] UploadPackV2: processing fetch command
14:59:09.456 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.470 [info] UploadPackV2: collected 39 objects, generating pack
14:59:09.471 [info] UploadPackV2: pack generated, 2347 bytes
14:59:09.471 [info] UploadPackV2: fetch response 2369 bytes
14:59:09.476 [info] UploadPackV2: processing fetch command
14:59:09.476 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.477 [info] UploadPackV2: collected 11 objects, generating pack
.
14:59:09.477 [info] UploadPackV2: pack generated, 714 bytes
14:59:09.477 [info] UploadPackV2: fetch response 736 bytes
14:59:09.482 [info] UploadPackV2: processing fetch command
14:59:09.483 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.483 [info] UploadPackV2: collected 12 objects, generating pack
14:59:09.483 [info] UploadPackV2: pack generated, 723 bytes
.
14:59:09.483 [info] UploadPackV2: fetch response 745 bytes
14:59:09.493 [info] UploadPackV2: processing fetch command
14:59:09.493 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.500 [info] UploadPackV2: collected 31 objects, generating pack
14:59:09.501 [info] UploadPackV2: pack generated, 1866 bytes
14:59:09.501 [info] UploadPackV2: fetch response 1888 bytes
14:59:09.509 [info] UploadPackV2: processing fetch command
14:59:09.509 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.510 [info] UploadPackV2: collected 27 objects, generating pack
14:59:09.511 [info] UploadPackV2: pack generated, 1676 bytes
14:59:09.511 [info] UploadPackV2: fetch response 1698 bytes
14:59:09.525 [info] UploadPackV2: processing fetch command
14:59:09.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.525 [info] UploadPackV2: collected 16 objects, generating pack
14:59:09.526 [info] UploadPackV2: pack generated, 962 bytes
14:59:09.526 [info] UploadPackV2: fetch response 984 bytes
14:59:09.530 [info] UploadPackV2: processing fetch command
14:59:09.531 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.531 [info] UploadPackV2: collected 4 objects, generating pack
14:59:09.531 [info] UploadPackV2: pack generated, 241 bytes
14:59:09.531 [info] UploadPackV2: fetch response 263 bytes
14:59:09.536 [info] UploadPackV2: processing fetch command
14:59:09.536 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.538 [info] UploadPackV2: collected 43 objects, generating pack
14:59:09.539 [info] UploadPackV2: pack generated, 2605 bytes
14:59:09.539 [info] UploadPackV2: fetch response 2627 bytes
14:59:09.544 [info] UploadPackV2: processing fetch command
14:59:09.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.545 [info] UploadPackV2: collected 4 objects, generating pack
14:59:09.545 [info] UploadPackV2: pack generated, 241 bytes
14:59:09.545 [info] UploadPackV2: fetch response 263 bytes
14:59:09.547 [info] UploadPackV2: processing fetch command
14:59:09.547 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.547 [info] UploadPackV2: collected 4 objects, generating pack
14:59:09.548 [info] UploadPackV2: pack generated, 241 bytes
.
14:59:09.548 [info] UploadPackV2: fetch response 263 bytes
14:59:09.552 [info] UploadPackV2: processing fetch command
.
14:59:09.552 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.555 [info] UploadPackV2: collected 35 objects, generating pack
14:59:09.556 [info] UploadPackV2: pack generated, 2100 bytes
14:59:09.556 [info] UploadPackV2: fetch response 2122 bytes
14:59:09.564 [info] UploadPackV2: processing fetch command
14:59:09.564 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.566 [info] UploadPackV2: collected 47 objects, generating pack
14:59:09.567 [info] UploadPackV2: pack generated, 2848 bytes
14:59:09.567 [info] UploadPackV2: fetch response 2870 bytes
14:59:09.575 [info] UploadPackV2: processing fetch command
14:59:09.575 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.576 [info] UploadPackV2: collected 35 objects, generating pack
14:59:09.577 [info] UploadPackV2: pack generated, 2128 bytes
14:59:09.577 [info] UploadPackV2: fetch response 2150 bytes
14:59:09.583 [info] UploadPackV2: processing fetch command
.
14:59:09.583 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.583 [info] UploadPackV2: collected 11 objects, generating pack
14:59:09.584 [info] UploadPackV2: pack generated, 717 bytes
14:59:09.584 [info] UploadPackV2: fetch response 739 bytes
14:59:09.589 [info] UploadPackV2: processing fetch command
14:59:09.589 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.592 [info] UploadPackV2: collected 43 objects, generating pack
14:59:09.593 [info] UploadPackV2: pack generated, 2605 bytes
14:59:09.593 [info] UploadPackV2: fetch response 2627 bytes
14:59:09.600 [info] UploadPackV2: processing fetch command
14:59:09.765 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.768 [info] UploadPackV2: collected 19 objects, generating pack
14:59:09.769 [info] UploadPackV2: pack generated, 1194 bytes
14:59:09.769 [info] UploadPackV2: fetch response 1216 bytes
14:59:09.773 [info] UploadPackV2: processing fetch command
.
14:59:09.773 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.773 [info] UploadPackV2: collected 7 objects, generating pack
14:59:09.773 [info] UploadPackV2: pack generated, 475 bytes
14:59:09.773 [info] UploadPackV2: fetch response 497 bytes
14:59:09.777 [info] UploadPackV2: processing fetch command
14:59:09.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.779 [info] UploadPackV2: collected 27 objects, generating pack
14:59:09.779 [info] UploadPackV2: pack generated, 1678 bytes
14:59:09.779 [info] UploadPackV2: fetch response 1700 bytes
14:59:09.783 [info] UploadPackV2: processing fetch command
14:59:09.784 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.784 [info] UploadPackV2: collected 20 objects, generating pack
14:59:09.785 [info] UploadPackV2: pack generated, 1203 bytes
14:59:09.786 [info] UploadPackV2: fetch response 1225 bytes
14:59:09.795 [info] UploadPackV2: processing fetch command
14:59:09.795 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:09.797 [info] UploadPackV2: collected 63 objects, generating pack
14:59:09.799 [info] UploadPackV2: pack generated, 3783 bytes
.
14:59:09.799 [info] UploadPackV2: fetch response 3805 bytes
.
14:59:09.807 [info] UploadPackV2: processing fetch command
.
14:59:09.807 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
14:59:09.808 [info] UploadPackV2: collected 42 objects, generating pack
.
14:59:09.809 [info] UploadPackV2: pack generated, 2576 bytes
.
14:59:09.809 [info] UploadPackV2: fetch response 2598 bytes
.
14:59:09.815 [info] UploadPackV2: processing fetch command
.
14:59:09.815 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.816 [info] UploadPackV2: collected 16 objects, generating pack
.
14:59:09.817 [info] UploadPackV2: pack generated, 932 bytes
.
14:59:09.817 [info] UploadPackV2: fetch response 954 bytes
.
14:59:09.820 [info] UploadPackV2: processing fetch command
.
14:59:09.820 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.821 [info] UploadPackV2: collected 20 objects, generating pack
.
14:59:09.821 [info] UploadPackV2: pack generated, 1203 bytes
.
14:59:09.822 [info] UploadPackV2: fetch response 1225 bytes
.
14:59:09.828 [info] UploadPackV2: processing fetch command
.
14:59:09.828 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.829 [info] UploadPackV2: collected 20 objects, generating pack
.
14:59:09.829 [info] UploadPackV2: pack generated, 1203 bytes
.
14:59:09.829 [info] UploadPackV2: fetch response 1225 bytes
.
14:59:09.834 [info] UploadPackV2: processing fetch command
.
14:59:09.834 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.836 [info] UploadPackV2: collected 16 objects, generating pack
.
14:59:09.837 [info] UploadPackV2: pack generated, 962 bytes
..
14:59:09.837 [info] UploadPackV2: fetch response 984 bytes
.
14:59:09.840 [info] UploadPackV2: processing fetch command
...
14:59:09.840 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
14:59:09.841 [info] UploadPackV2: collected 16 objects, generating pack
..
14:59:09.841 [info] UploadPackV2: pack generated, 932 bytes
.
14:59:09.841 [info] UploadPackV2: fetch response 954 bytes
.
14:59:09.847 [info] UploadPackV2: processing fetch command
.
14:59:09.995 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:59:09.999 [info] UploadPackV2: collected 35 objects, generating pack
.
14:59:10.000 [info] UploadPackV2: pack generated, 2107 bytes
.
14:59:10.000 [info] UploadPackV2: fetch response 2129 bytes
.
14:59:10.029 [info] UploadPackV2: processing fetch command
.
14:59:10.029 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:10.032 [info] UploadPackV2: collected 12 objects, generating pack
14:59:10.033 [info] UploadPackV2: pack generated, 723 bytes
14:59:10.033 [info] UploadPackV2: fetch response 745 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
..................................................................................................................................................
14:59:10.769 [warning] post_receive hook failed: "webhook failed"
.
14:59:10.772 [info] The function passed as a handler with ID #Reference<0.2900107619.2812542978.13581> 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
-: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
.............................................................................................................................................................
14:59:11.306 [info] UploadPackV2: processing fetch command
14:59:11.306 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:11.311 [info] UploadPackV2: reused pack 12430 bytes, 160 objects
14:59:11.311 [info] UploadPackV2: fetch response 12452 bytes
...................................................................
14:59:11.641 [info] The function passed as a handler with ID "test-#Reference<0.2900107619.2812542977.51319>" 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
.............
14:59:12.308 [info] UploadPackV2: processing fetch command
14:59:12.308 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:12.313 [info] UploadPackV2: reused pack 12218 bytes, 160 objects
14:59:12.313 [info] UploadPackV2: fetch response 12240 bytes
....
14:59:12.548 [info] The function passed as a handler with ID "test-fail-#Reference<0.2900107619.2812542978.41758>" 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
...................
14:59:13.116 [info] UploadPackV2: processing fetch command
14:59:13.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:13.128 [info] UploadPackV2: collected 163 objects, generating pack
14:59:13.136 [info] UploadPackV2: pack generated, 15093 bytes
14:59:13.136 [info] UploadPackV2: fetch response 15115 bytes
.......................................
14:59:18.470 [info] UploadPackV2: processing ls-refs command
14:59:18.471 [info] UploadPackV2: processing fetch command
14:59:18.471 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:18.472 [info] UploadPackV2: collected 3 objects, generating pack
14:59:18.472 [info] UploadPackV2: pack generated, 216 bytes
14:59:18.472 [info] UploadPackV2: fetch response 312 bytes
14:59:18.530 [info] UploadPackV2: processing ls-refs command
14:59:18.530 [info] UploadPackV2: processing fetch command
14:59:18.531 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:18.531 [info] UploadPackV2: collected 12 objects, generating pack
14:59:18.531 [info] UploadPackV2: pack generated, 768 bytes
14:59:18.531 [info] UploadPackV2: fetch response 1002 bytes
.
14:59:18.590 [info] UploadPackV2: processing ls-refs command
14:59:18.591 [info] UploadPackV2: processing fetch command
14:59:18.591 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:18.592 [info] UploadPackV2: collected 9 objects, generating pack
14:59:18.592 [info] UploadPackV2: pack generated, 549 bytes
14:59:18.592 [info] UploadPackV2: fetch response 571 bytes
14:59:18.608 [info] UploadPackV2: processing fetch command
14:59:18.608 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:59:18.608 [info] UploadPackV2: fetch response 171 bytes
.
14:59:18.658 [info] UploadPackV2: processing ls-refs command
14:59:18.661 [info] UploadPackV2: processing fetch command
14:59:18.661 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
14:59:18.661 [info] UploadPackV2: collected 3 objects, generating pack
14:59:18.662 [info] UploadPackV2: pack generated, 381 bytes
14:59:18.662 [info] UploadPackV2: fetch response 403 bytes
.
14:59:18.726 [info] UploadPackV2: processing ls-refs command
14:59:18.728 [info] UploadPackV2: processing fetch command
14:59:18.729 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:18.729 [info] UploadPackV2: collected 6 objects, generating pack
14:59:18.729 [info] UploadPackV2: pack generated, 513 bytes
14:59:18.729 [info] UploadPackV2: fetch response 535 bytes
..
14:59:18.790 [info] UploadPackV2: processing ls-refs command
.
14:59:18.834 [info] UploadPackV2: processing ls-refs command
.
14:59:18.886 [info] UploadPackV2: processing ls-refs command
14:59:18.887 [info] UploadPackV2: processing fetch command
14:59:18.887 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:18.888 [info] UploadPackV2: collected 3 objects, generating pack
14:59:18.888 [info] UploadPackV2: pack generated, 218 bytes
14:59:18.888 [info] UploadPackV2: fetch response 314 bytes
.
14:59:18.954 [info] UploadPackV2: processing ls-refs command
14:59:18.957 [info] UploadPackV2: processing fetch command
14:59:18.957 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
14:59:18.957 [info] UploadPackV2: collected 5 objects, generating pack
14:59:18.958 [info] UploadPackV2: pack generated, 319 bytes
14:59:18.958 [info] UploadPackV2: fetch response 341 bytes
.
14:59:19.022 [info] UploadPackV2: processing ls-refs command
14:59:19.025 [info] UploadPackV2: processing fetch command
14:59:19.025 [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
14:59:19.025 [info] UploadPackV2: collected 6 objects, generating pack
14:59:19.026 [info] UploadPackV2: pack generated, 513 bytes
14:59:19.026 [info] UploadPackV2: fetch response 535 bytes
..
14:59:19.094 [info] UploadPackV2: processing ls-refs command
.
14:59:19.146 [info] UploadPackV2: processing ls-refs command
14:59:19.147 [info] UploadPackV2: processing fetch command
14:59:19.147 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:19.148 [info] UploadPackV2: collected 9 objects, generating pack
14:59:19.148 [info] UploadPackV2: pack generated, 585 bytes
14:59:19.148 [info] UploadPackV2: fetch response 681 bytes
.
14:59:19.214 [info] UploadPackV2: processing ls-refs command
14:59:19.215 [info] UploadPackV2: processing fetch command
14:59:19.215 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:19.216 [info] UploadPackV2: collected 3 objects, generating pack
14:59:19.216 [info] UploadPackV2: pack generated, 216 bytes
14:59:19.216 [info] UploadPackV2: fetch response 312 bytes
.
14:59:19.282 [info] UploadPackV2: processing ls-refs command
14:59:19.285 [info] UploadPackV2: processing fetch command
14:59:19.285 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
14:59:19.286 [info] UploadPackV2: collected 3 objects, generating pack
14:59:19.286 [info] UploadPackV2: pack generated, 381 bytes
14:59:19.286 [info] UploadPackV2: fetch response 403 bytes
.
14:59:19.350 [info] UploadPackV2: processing ls-refs command
.
14:59:19.402 [info] UploadPackV2: processing ls-refs command
14:59:19.403 [info] UploadPackV2: processing fetch command
14:59:19.403 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:19.404 [info] UploadPackV2: collected 15 objects, generating pack
14:59:19.404 [info] UploadPackV2: pack generated, 952 bytes
14:59:19.404 [info] UploadPackV2: fetch response 974 bytes
.
14:59:19.470 [info] UploadPackV2: processing ls-refs command
14:59:19.471 [info] UploadPackV2: processing fetch command
14:59:19.471 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:19.472 [info] UploadPackV2: collected 3 objects, generating pack
14:59:19.472 [info] UploadPackV2: pack generated, 196 bytes
14:59:19.472 [info] UploadPackV2: fetch response 218 bytes
.
14:59:19.542 [info] UploadPackV2: processing ls-refs command
14:59:19.543 [info] UploadPackV2: processing fetch command
14:59:19.543 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:19.543 [info] UploadPackV2: collected 3 objects, generating pack
14:59:19.543 [info] UploadPackV2: pack generated, 200 bytes
14:59:19.543 [info] UploadPackV2: fetch response 256 bytes
.
14:59:19.598 [info] UploadPackV2: processing ls-refs command
14:59:19.599 [info] UploadPackV2: processing fetch command
14:59:19.599 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:19.600 [info] UploadPackV2: collected 3 objects, generating pack
14:59:19.600 [info] UploadPackV2: pack generated, 185 bytes
14:59:19.600 [info] UploadPackV2: fetch response 207 bytes
14:59:19.658 [info] UploadPackV2: processing ls-refs command
.
14:59:19.662 [info] UploadPackV2: processing fetch command
14:59:19.662 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:19.663 [info] UploadPackV2: collected 3 objects, generating pack
14:59:19.663 [info] UploadPackV2: pack generated, 183 bytes
14:59:19.663 [info] UploadPackV2: fetch response 205 bytes
.
14:59:19.730 [info] UploadPackV2: processing ls-refs command
14:59:19.731 [info] UploadPackV2: processing fetch command
14:59:19.731 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:19.732 [info] UploadPackV2: collected 6 objects, generating pack
14:59:19.732 [info] UploadPackV2: pack generated, 365 bytes
14:59:19.732 [info] UploadPackV2: fetch response 387 bytes
.
14:59:34.806 [info] UploadPackV2: processing ls-refs command
14:59:34.807 [info] UploadPackV2: processing fetch command
14:59:34.807 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:34.807 [info] UploadPackV2: collected 3 objects, generating pack
14:59:34.808 [info] UploadPackV2: pack generated, 216 bytes
14:59:34.808 [info] UploadPackV2: fetch response 346 bytes
.
14:59:34.874 [info] UploadPackV2: processing ls-refs command
14:59:34.875 [info] UploadPackV2: processing fetch command
14:59:34.875 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:34.876 [info] UploadPackV2: collected 6 objects, generating pack
14:59:34.876 [info] UploadPackV2: pack generated, 366 bytes
14:59:34.876 [info] UploadPackV2: fetch response 388 bytes
14:59:34.934 [info] UploadPackV2: processing ls-refs command
14:59:34.935 [info] UploadPackV2: processing fetch command
14:59:34.935 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:59:34.935 [info] UploadPackV2: fetch response 32 bytes
14:59:34.935 [info] UploadPackV2: processing fetch command
14:59:34.935 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:34.936 [info] UploadPackV2: collected 3 objects, generating pack
14:59:34.936 [info] UploadPackV2: pack generated, 183 bytes
14:59:34.936 [info] UploadPackV2: fetch response 205 bytes
.
14:59:35.074 [info] UploadPackV2: processing ls-refs command
14:59:35.075 [info] UploadPackV2: processing fetch command
14:59:35.075 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:35.076 [info] UploadPackV2: collected 6 objects, generating pack
14:59:35.076 [info] UploadPackV2: pack generated, 365 bytes
14:59:35.076 [info] UploadPackV2: fetch response 387 bytes
14:59:37.022 [info] UploadPackV2: processing ls-refs command
.
14:59:37.082 [info] UploadPackV2: processing ls-refs command
14:59:37.083 [info] UploadPackV2: processing fetch command
14:59:37.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.084 [info] UploadPackV2: collected 9 objects, generating pack
14:59:37.084 [info] UploadPackV2: pack generated, 547 bytes
14:59:37.084 [info] UploadPackV2: fetch response 569 bytes
14:59:37.170 [info] UploadPackV2: processing ls-refs command
.
14:59:37.226 [info] UploadPackV2: processing ls-refs command
14:59:37.227 [info] UploadPackV2: processing fetch command
14:59:37.227 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.228 [info] UploadPackV2: collected 6 objects, generating pack
14:59:37.228 [info] UploadPackV2: pack generated, 365 bytes
14:59:37.228 [info] UploadPackV2: fetch response 387 bytes
14:59:37.230 [info] UploadPackV2: processing ls-refs command
14:59:37.236 [info] UploadPackV2: processing fetch command
14:59:37.236 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.236 [info] UploadPackV2: collected 6 objects, generating pack
14:59:37.237 [info] UploadPackV2: pack generated, 365 bytes
14:59:37.237 [info] UploadPackV2: fetch response 387 bytes
.
14:59:37.306 [info] UploadPackV2: processing ls-refs command
14:59:37.307 [info] UploadPackV2: processing fetch command
14:59:37.307 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.308 [info] UploadPackV2: collected 6 objects, generating pack
14:59:37.308 [info] UploadPackV2: pack generated, 365 bytes
14:59:37.308 [info] UploadPackV2: fetch response 387 bytes
14:59:37.323 [info] UploadPackV2: processing fetch command
14:59:37.323 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:59:37.323 [info] UploadPackV2: fetch response 122 bytes
.
14:59:37.390 [info] UploadPackV2: processing ls-refs command
14:59:37.391 [info] UploadPackV2: processing fetch command
14:59:37.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.394 [info] UploadPackV2: collected 90 objects, generating pack
14:59:37.395 [info] UploadPackV2: pack generated, 5649 bytes
14:59:37.395 [info] UploadPackV2: fetch response 5671 bytes
14:59:37.646 [info] UploadPackV2: processing ls-refs command
...................***
14:59:37.745 [info] UploadPackV2: processing fetch command
14:59:37.745 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.745 [info] UploadPackV2: collected 3 objects, generating pack
14:59:37.745 [info] UploadPackV2: pack generated, 183 bytes
14:59:37.746 [info] UploadPackV2: fetch response 205 bytes
.
14:59:37.769 [info] UploadPackV2: processing ls-refs command
14:59:37.772 [info] UploadPackV2: processing fetch command
14:59:37.772 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.773 [info] UploadPackV2: collected 15 objects, generating pack
14:59:37.773 [info] UploadPackV2: pack generated, 919 bytes
14:59:37.773 [info] UploadPackV2: fetch response 941 bytes
.
14:59:37.817 [info] UploadPackV2: processing ls-refs command
14:59:37.819 [info] UploadPackV2: processing fetch command
14:59:37.819 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.820 [info] UploadPackV2: collected 3 objects, generating pack
14:59:37.820 [info] UploadPackV2: pack generated, 183 bytes
14:59:37.820 [info] UploadPackV2: fetch response 205 bytes
.
14:59:37.859 [info] UploadPackV2: processing ls-refs command
14:59:37.862 [info] UploadPackV2: processing fetch command
14:59:37.862 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.867 [info] UploadPackV2: collected 180 objects, generating pack
14:59:37.869 [info] UploadPackV2: pack generated, 11106 bytes
14:59:37.869 [info] UploadPackV2: fetch response 11128 bytes
.
14:59:37.905 [info] UploadPackV2: processing ls-refs command
14:59:37.907 [info] UploadPackV2: processing fetch command
14:59:37.908 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.908 [info] UploadPackV2: collected 6 objects, generating pack
14:59:37.908 [info] UploadPackV2: pack generated, 366 bytes
14:59:37.909 [info] UploadPackV2: fetch response 388 bytes
14:59:37.934 [info] UploadPackV2: processing ls-refs command
..
14:59:37.990 [info] UploadPackV2: processing ls-refs command
14:59:37.993 [info] UploadPackV2: processing fetch command
14:59:37.993 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:37.994 [info] UploadPackV2: collected 9 objects, generating pack
14:59:37.994 [info] UploadPackV2: pack generated, 549 bytes
14:59:37.994 [info] UploadPackV2: fetch response 571 bytes
14:59:38.019 [info] UploadPackV2: processing ls-refs command
...
14:59:38.027 [info] The function passed as a handler with ID "graph-query-test-10916" 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
...
14:59:38.031 [info] The function passed as a handler with ID "graph-query-test-8773" 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
....
14:59:38.035 [info] The function passed as a handler with ID "graph-query-test-17635" 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
.....**
14:59:38.054 [info] UploadPackV2: processing fetch command
14:59:38.054 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.054 [info] UploadPackV2: collected 0 objects, generating pack
14:59:38.054 [info] UploadPackV2: pack generated, 32 bytes
14:59:38.054 [info] UploadPackV2: fetch response 54 bytes
.
14:59:38.350 [info] UploadPackV2: processing ls-refs command
14:59:38.351 [info] UploadPackV2: processing fetch command
14:59:38.351 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.373 [info] UploadPackV2: collected 600 objects, generating pack
14:59:38.391 [info] UploadPackV2: pack generated, 45197 bytes
14:59:38.391 [info] UploadPackV2: fetch response 45219 bytes
.
14:59:38.478 [info] UploadPackV2: processing ls-refs command
14:59:38.479 [info] UploadPackV2: processing fetch command
14:59:38.479 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.485 [info] UploadPackV2: collected 240 objects, generating pack
14:59:38.489 [info] UploadPackV2: pack generated, 16258 bytes
14:59:38.489 [info] UploadPackV2: fetch response 16280 bytes
.
14:59:38.507 [info] UploadPackV2: processing fetch command
14:59:38.507 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.508 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.508 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.508 [info] UploadPackV2: fetch response 205 bytes
14:59:38.508 [info] UploadPackV2: processing fetch command
14:59:38.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.508 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.508 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.508 [info] UploadPackV2: fetch response 205 bytes
14:59:38.508 [info] UploadPackV2: processing fetch command
14:59:38.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.509 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.509 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.509 [info] UploadPackV2: fetch response 205 bytes
14:59:38.509 [info] UploadPackV2: processing fetch command
14:59:38.509 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.510 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.510 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.510 [info] UploadPackV2: fetch response 205 bytes
14:59:38.510 [info] UploadPackV2: processing fetch command
14:59:38.510 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.510 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.510 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.510 [info] UploadPackV2: fetch response 205 bytes
14:59:38.510 [info] UploadPackV2: processing fetch command
14:59:38.510 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.510 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.510 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.511 [info] UploadPackV2: fetch response 205 bytes
14:59:38.511 [info] UploadPackV2: processing fetch command
14:59:38.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.511 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.511 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.511 [info] UploadPackV2: fetch response 205 bytes
14:59:38.511 [info] UploadPackV2: processing fetch command
14:59:38.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.511 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.511 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.511 [info] UploadPackV2: fetch response 205 bytes
14:59:38.511 [info] UploadPackV2: processing fetch command
14:59:38.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.512 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.512 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.512 [info] UploadPackV2: fetch response 205 bytes
14:59:38.512 [info] UploadPackV2: processing fetch command
14:59:38.512 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.512 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.512 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.512 [info] UploadPackV2: fetch response 205 bytes
14:59:38.512 [info] UploadPackV2: processing fetch command
14:59:38.512 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.512 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.513 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.513 [info] UploadPackV2: fetch response 205 bytes
14:59:38.513 [info] UploadPackV2: processing fetch command
14:59:38.513 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.513 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.513 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.513 [info] UploadPackV2: fetch response 205 bytes
14:59:38.513 [info] UploadPackV2: processing fetch command
14:59:38.513 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.513 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.514 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.514 [info] UploadPackV2: fetch response 205 bytes
14:59:38.514 [info] UploadPackV2: processing fetch command
14:59:38.514 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.514 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.514 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.514 [info] UploadPackV2: fetch response 205 bytes
14:59:38.514 [info] UploadPackV2: processing fetch command
14:59:38.514 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.514 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.514 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.514 [info] UploadPackV2: fetch response 205 bytes
14:59:38.515 [info] UploadPackV2: processing fetch command
14:59:38.515 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.515 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.515 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.515 [info] UploadPackV2: fetch response 205 bytes
14:59:38.515 [info] UploadPackV2: processing fetch command
14:59:38.515 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.516 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.516 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.516 [info] UploadPackV2: fetch response 205 bytes
14:59:38.516 [info] UploadPackV2: processing fetch command
14:59:38.516 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.516 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.516 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.516 [info] UploadPackV2: fetch response 205 bytes
14:59:38.516 [info] UploadPackV2: processing fetch command
14:59:38.516 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.516 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.516 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.516 [info] UploadPackV2: fetch response 205 bytes
14:59:38.516 [info] UploadPackV2: processing fetch command
14:59:38.517 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.517 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.517 [info] UploadPackV2: pack generated, 183 bytes
.
14:59:38.517 [info] UploadPackV2: fetch response 205 bytes
14:59:38.517 [info] UploadPackV2: processing fetch command
14:59:38.517 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.517 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.517 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.517 [info] UploadPackV2: fetch response 205 bytes
14:59:38.626 [info] UploadPackV2: processing ls-refs command
14:59:38.627 [info] UploadPackV2: processing fetch command
14:59:38.627 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:38.628 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.628 [info] UploadPackV2: pack generated, 231 bytes
14:59:38.628 [info] UploadPackV2: fetch response 327 bytes
.
14:59:38.686 [info] UploadPackV2: processing ls-refs command
.
14:59:38.742 [info] UploadPackV2: processing ls-refs command
.
14:59:38.750 [info] The function passed as a handler with ID "telemetry-test-20642" 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
14:59:38.750 [info] UploadPackV2: processing fetch command
14:59:38.751 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:59:38.751 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.751 [info] UploadPackV2: pack generated, 183 bytes
14:59:38.751 [info] UploadPackV2: fetch response 205 bytes
.
14:59:38.751 [info] The function passed as a handler with ID "telemetry-test-20674" 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
14:59:38.752 [info] UploadPackV2: processing fetch command
14:59:38.752 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:38.752 [info] UploadPackV2: collected 3 objects, generating pack
14:59:38.752 [info] UploadPackV2: pack generated, 186 bytes
.
14:59:38.752 [info] UploadPackV2: fetch response 208 bytes
14:59:38.752 [info] The function passed as a handler with ID "telemetry-test-20706" 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
14:59:38.753 [info] UploadPackV2: processing fetch command
14:59:38.753 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:59:38.753 [info] UploadPackV2: collected 2 objects, generating pack
14:59:38.753 [info] UploadPackV2: pack generated, 169 bytes
14:59:38.753 [info] UploadPackV2: fetch response 191 bytes
.
14:59:38.756 [info] The function passed as a handler with ID "telemetry-test-20738" 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
...............***********
14:59:55.130 [info] UploadPackV2: processing ls-refs command
14:59:55.131 [info] UploadPackV2: processing fetch command
14:59:55.131 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:59:55.132 [info] UploadPackV2: collected 6 objects, generating pack
14:59:55.132 [info] UploadPackV2: pack generated, 365 bytes
14:59:55.132 [info] UploadPackV2: fetch response 387 bytes
...
15:00:25.366 [info] UploadPackV2: processing ls-refs command
15:00:25.367 [info] UploadPackV2: processing fetch command
15:00:25.368 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:00:25.368 [info] UploadPackV2: collected 3 objects, generating pack
15:00:25.368 [info] UploadPackV2: pack generated, 183 bytes
15:00:25.369 [info] UploadPackV2: fetch response 205 bytes
...
15:01:10.646 [info] UploadPackV2: processing ls-refs command
15:01:10.648 [info] UploadPackV2: processing fetch command
15:01:10.648 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:01:10.649 [info] UploadPackV2: collected 6 objects, generating pack
15:01:10.649 [info] UploadPackV2: pack generated, 365 bytes
15:01:10.649 [info] UploadPackV2: fetch response 387 bytes
...
15:01:55.930 [info] UploadPackV2: processing ls-refs command
15:01:55.931 [info] UploadPackV2: processing fetch command
15:01:55.931 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:01:55.932 [info] UploadPackV2: collected 3 objects, generating pack
15:01:55.932 [info] UploadPackV2: pack generated, 201 bytes
15:01:55.932 [info] UploadPackV2: fetch response 223 bytes
.
15:02:11.058 [info] UploadPackV2: processing ls-refs command
15:02:11.059 [info] UploadPackV2: processing fetch command
15:02:11.060 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:02:11.060 [info] UploadPackV2: collected 3 objects, generating pack
15:02:11.060 [info] UploadPackV2: pack generated, 183 bytes
15:02:11.060 [info] UploadPackV2: fetch response 205 bytes
..
15:02:26.242 [info] UploadPackV2: processing ls-refs command
15:02:26.244 [info] UploadPackV2: processing fetch command
15:02:26.244 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:02:26.244 [info] UploadPackV2: collected 3 objects, generating pack
15:02:26.244 [info] UploadPackV2: pack generated, 196 bytes
15:02:26.244 [info] UploadPackV2: fetch response 218 bytes
.
15:02:26.310 [info] UploadPackV2: processing ls-refs command
15:02:26.311 [info] UploadPackV2: processing fetch command
15:02:26.312 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:02:26.312 [info] UploadPackV2: collected 3 objects, generating pack
15:02:26.312 [info] UploadPackV2: pack generated, 185 bytes
15:02:26.312 [info] UploadPackV2: fetch response 207 bytes
.*****
15:02:26.328 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303414332" 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
15:02:26.328 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303414300" 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
.
15:02:26.329 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303414268" 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
15:02:26.329 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303397407" 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
.
15:02:26.330 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303414236" 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
15:02:26.330 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303414204" 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
.
15:02:26.331 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303414172" 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
15:02:26.331 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303414140" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
Finished in 206.7 seconds (18.8s async, 187.9s sync)
Result: 1083 passed (15 properties, 1068 tests), 21 skipped, 59 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info