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 15:08 UTC Completed: Jul 10, 2026 at 15:11 UTC Duration: 3m 30s
Exit code: 0

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 7 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 775263, max_cases: 8
Excluding tags: [:s3]
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: 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
.........................................................
15:08:11.710 [info] The function passed as a handler with ID #Reference<0.2785181068.398458884.67133> 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:08:11.701 [info] The function passed as a handler with ID #Reference<0.2785181068.398458884.66851> 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 "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: 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)
.....................................
15:08:12.085 [warning] post_receive hook failed: "webhook failed"
warning: module attribute @git_lfs_available was set but never used
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: the variable "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: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: the variable "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
............................................................................................................................................................................................................................................................................................................................................................................................
15:08:14.584 [info] The function passed as a handler with ID "test-#Reference<0.2785181068.398458884.108134>" 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:08:14.585 [info] The function passed as a handler with ID "test-fail-#Reference<0.2785181068.398458884.108154>" 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:08:14.605 [info] UploadPackV2: processing fetch command
.
15:08:14.605 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.606 [info] UploadPackV2: collected 19 objects, generating pack
.
15:08:14.607 [info] UploadPackV2: pack generated, 1194 bytes
.
15:08:14.607 [info] UploadPackV2: fetch response 1216 bytes
.
15:08:14.616 [info] UploadPackV2: processing fetch command
.
15:08:14.616 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.617 [info] UploadPackV2: collected 11 objects, generating pack
.
15:08:14.617 [info] UploadPackV2: pack generated, 714 bytes
.
15:08:14.617 [info] UploadPackV2: fetch response 736 bytes
.
15:08:14.621 [info] UploadPackV2: processing fetch command
.
15:08:14.621 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.623 [info] UploadPackV2: collected 23 objects, generating pack
.
15:08:14.624 [info] UploadPackV2: pack generated, 1385 bytes
.
15:08:14.624 [info] UploadPackV2: fetch response 1407 bytes
.
15:08:14.639 [info] UploadPackV2: processing fetch command
..
15:08:14.639 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.640 [info] UploadPackV2: collected 20 objects, generating pack
.
15:08:14.640 [info] UploadPackV2: pack generated, 1203 bytes
.
15:08:14.641 [info] UploadPackV2: fetch response 1225 bytes
.
15:08:14.650 [info] UploadPackV2: processing fetch command
.
15:08:14.650 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.651 [info] UploadPackV2: collected 7 objects, generating pack
.
15:08:14.651 [info] UploadPackV2: pack generated, 475 bytes
.
15:08:14.651 [info] UploadPackV2: fetch response 497 bytes
.
15:08:14.654 [info] UploadPackV2: processing fetch command
.
15:08:14.654 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.655 [info] UploadPackV2: collected 19 objects, generating pack
.
15:08:14.655 [info] UploadPackV2: pack generated, 1196 bytes
.
15:08:14.655 [info] UploadPackV2: fetch response 1218 bytes
15:08:14.659 [info] UploadPackV2: processing fetch command
.
15:08:14.659 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.660 [info] UploadPackV2: collected 4 objects, generating pack
.
15:08:14.660 [info] UploadPackV2: pack generated, 241 bytes
.
15:08:14.660 [info] UploadPackV2: fetch response 263 bytes
.
15:08:14.665 [info] UploadPackV2: processing fetch command
.
15:08:14.665 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.666 [info] UploadPackV2: collected 28 objects, generating pack
.
15:08:14.667 [info] UploadPackV2: pack generated, 1652 bytes
.
15:08:14.667 [info] UploadPackV2: fetch response 1674 bytes
.
15:08:14.673 [info] UploadPackV2: processing fetch command
.
15:08:14.673 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.676 [info] UploadPackV2: collected 44 objects, generating pack
.
15:08:14.677 [info] UploadPackV2: pack generated, 2614 bytes
.
15:08:14.677 [info] UploadPackV2: fetch response 2636 bytes
.
15:08:14.685 [info] UploadPackV2: processing fetch command
.
15:08:14.685 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.687 [info] UploadPackV2: collected 28 objects, generating pack
.
15:08:14.688 [info] UploadPackV2: pack generated, 1652 bytes
.
15:08:14.688 [info] UploadPackV2: fetch response 1674 bytes
.
15:08:14.695 [info] UploadPackV2: processing fetch command
.
15:08:14.695 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.697 [info] UploadPackV2: collected 39 objects, generating pack
.
15:08:14.698 [info] UploadPackV2: pack generated, 2343 bytes
.
15:08:14.698 [info] UploadPackV2: fetch response 2365 bytes
.
15:08:14.705 [info] UploadPackV2: processing fetch command
.
15:08:14.705 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.706 [info] UploadPackV2: collected 39 objects, generating pack
.
15:08:14.708 [info] UploadPackV2: pack generated, 2337 bytes
.
15:08:14.708 [info] UploadPackV2: fetch response 2359 bytes
.
15:08:14.714 [info] UploadPackV2: processing fetch command
.
15:08:14.714 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.715 [info] UploadPackV2: collected 20 objects, generating pack
.
15:08:14.716 [info] UploadPackV2: pack generated, 1171 bytes
.
15:08:14.716 [info] UploadPackV2: fetch response 1193 bytes
.
15:08:14.721 [info] UploadPackV2: processing fetch command
.
15:08:14.722 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.723 [info] UploadPackV2: collected 19 objects, generating pack
.
15:08:14.723 [info] UploadPackV2: pack generated, 1196 bytes
.
15:08:14.723 [info] UploadPackV2: fetch response 1218 bytes
.
15:08:14.731 [info] UploadPackV2: processing fetch command
.
15:08:14.731 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.733 [info] UploadPackV2: collected 23 objects, generating pack
.
15:08:14.734 [info] UploadPackV2: pack generated, 1405 bytes
15:08:14.734 [info] UploadPackV2: fetch response 1427 bytes
15:08:14.741 [info] UploadPackV2: processing fetch command
15:08:14.742 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:14.743 [info] UploadPackV2: collected 19 objects, generating pack
15:08:14.744 [info] UploadPackV2: pack generated, 1196 bytes
15:08:14.744 [info] UploadPackV2: fetch response 1218 bytes
15:08:14.750 [info] UploadPackV2: processing fetch command
15:08:14.750 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.752 [info] UploadPackV2: collected 38 objects, generating pack
15:08:14.753 [info] UploadPackV2: pack generated, 2344 bytes
.
15:08:14.753 [info] UploadPackV2: fetch response 2366 bytes
.
15:08:14.764 [info] UploadPackV2: processing fetch command
.
15:08:14.764 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.772 [info] UploadPackV2: collected 27 objects, generating pack
.
15:08:14.773 [info] UploadPackV2: pack generated, 1676 bytes
.
15:08:14.773 [info] UploadPackV2: fetch response 1698 bytes
.
15:08:14.787 [info] UploadPackV2: processing fetch command
.
15:08:14.787 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:14.790 [info] UploadPackV2: collected 50 objects, generating pack
.
15:08:14.954 [info] UploadPackV2: pack generated, 3058 bytes
.
15:08:14.955 [info] UploadPackV2: fetch response 3080 bytes
15:08:14.976 [info] UploadPackV2: processing fetch command
15:08:14.976 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:14.985 [info] UploadPackV2: collected 51 objects, generating pack
15:08:14.987 [info] UploadPackV2: pack generated, 3055 bytes
15:08:14.987 [info] UploadPackV2: fetch response 3077 bytes
15:08:15.000 [info] UploadPackV2: processing fetch command
15:08:15.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.004 [info] UploadPackV2: collected 11 objects, generating pack
15:08:15.004 [info] UploadPackV2: pack generated, 717 bytes
15:08:15.004 [info] UploadPackV2: fetch response 739 bytes
15:08:15.007 [info] UploadPackV2: processing fetch command
15:08:15.007 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.012 [info] UploadPackV2: collected 7 objects, generating pack
15:08:15.013 [info] UploadPackV2: pack generated, 475 bytes
15:08:15.013 [info] UploadPackV2: fetch response 497 bytes
15:08:15.017 [info] UploadPackV2: processing fetch command
15:08:15.017 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.018 [info] UploadPackV2: collected 19 objects, generating pack
15:08:15.019 [info] UploadPackV2: pack generated, 1196 bytes
15:08:15.019 [info] UploadPackV2: fetch response 1218 bytes
15:08:15.027 [info] UploadPackV2: processing fetch command
15:08:15.027 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.030 [info] UploadPackV2: collected 64 objects, generating pack
15:08:15.031 [info] UploadPackV2: pack generated, 3782 bytes
15:08:15.032 [info] UploadPackV2: fetch response 3804 bytes
15:08:15.039 [info] UploadPackV2: processing fetch command
15:08:15.039 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.039 [info] UploadPackV2: collected 12 objects, generating pack
15:08:15.040 [info] UploadPackV2: pack generated, 723 bytes
.
15:08:15.040 [info] UploadPackV2: fetch response 745 bytes
15:08:15.045 [info] UploadPackV2: processing fetch command
15:08:15.046 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.047 [info] UploadPackV2: collected 22 objects, generating pack
15:08:15.047 [info] UploadPackV2: pack generated, 1379 bytes
15:08:15.047 [info] UploadPackV2: fetch response 1401 bytes
15:08:15.054 [info] UploadPackV2: processing fetch command
15:08:15.054 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.056 [info] UploadPackV2: collected 42 objects, generating pack
15:08:15.058 [info] UploadPackV2: pack generated, 2580 bytes
15:08:15.058 [info] UploadPackV2: fetch response 2602 bytes
15:08:15.079 [info] UploadPackV2: processing fetch command
15:08:15.079 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.082 [info] UploadPackV2: collected 16 objects, generating pack
15:08:15.083 [info] UploadPackV2: pack generated, 962 bytes
15:08:15.084 [info] UploadPackV2: fetch response 984 bytes
15:08:15.097 [info] UploadPackV2: processing fetch command
15:08:15.097 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.100 [info] UploadPackV2: collected 35 objects, generating pack
15:08:15.101 [info] UploadPackV2: pack generated, 2105 bytes
15:08:15.101 [info] UploadPackV2: fetch response 2127 bytes
15:08:15.107 [info] UploadPackV2: processing fetch command
15:08:15.107 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.108 [info] UploadPackV2: collected 8 objects, generating pack
15:08:15.108 [info] UploadPackV2: pack generated, 482 bytes
15:08:15.108 [info] UploadPackV2: fetch response 504 bytes
15:08:15.112 [info] UploadPackV2: processing fetch command
15:08:15.112 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.112 [info] UploadPackV2: collected 7 objects, generating pack
15:08:15.112 [info] UploadPackV2: pack generated, 475 bytes
15:08:15.113 [info] UploadPackV2: fetch response 497 bytes
15:08:15.117 [info] UploadPackV2: processing fetch command
15:08:15.117 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.118 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.119 [info] UploadPackV2: pack generated, 926 bytes
15:08:15.119 [info] UploadPackV2: fetch response 948 bytes
15:08:15.124 [info] UploadPackV2: processing fetch command
15:08:15.124 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.126 [info] UploadPackV2: collected 42 objects, generating pack
15:08:15.128 [info] UploadPackV2: pack generated, 2581 bytes
15:08:15.128 [info] UploadPackV2: fetch response 2603 bytes
15:08:15.136 [info] UploadPackV2: processing fetch command
15:08:15.136 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.137 [info] UploadPackV2: collected 4 objects, generating pack
15:08:15.137 [info] UploadPackV2: pack generated, 241 bytes
15:08:15.137 [info] UploadPackV2: fetch response 263 bytes
15:08:15.143 [info] UploadPackV2: processing fetch command
15:08:15.143 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.144 [info] UploadPackV2: collected 19 objects, generating pack
15:08:15.145 [info] UploadPackV2: pack generated, 1144 bytes
15:08:15.145 [info] UploadPackV2: fetch response 1166 bytes
15:08:15.150 [info] UploadPackV2: processing fetch command
15:08:15.150 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.151 [info] UploadPackV2: collected 24 objects, generating pack
15:08:15.152 [info] UploadPackV2: pack generated, 1443 bytes
15:08:15.152 [info] UploadPackV2: fetch response 1465 bytes
15:08:15.161 [info] UploadPackV2: processing fetch command
15:08:15.161 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.164 [info] UploadPackV2: collected 43 objects, generating pack
15:08:15.166 [info] UploadPackV2: pack generated, 2580 bytes
15:08:15.166 [info] UploadPackV2: fetch response 2602 bytes
15:08:15.177 [info] UploadPackV2: processing fetch command
15:08:15.279 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.284 [info] UploadPackV2: collected 27 objects, generating pack
15:08:15.286 [info] UploadPackV2: pack generated, 1627 bytes
.
15:08:15.286 [info] UploadPackV2: fetch response 1649 bytes
.
15:08:15.290 [info] UploadPackV2: processing fetch command
.
15:08:15.290 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.291 [info] UploadPackV2: collected 4 objects, generating pack
15:08:15.291 [info] UploadPackV2: pack generated, 241 bytes
15:08:15.291 [info] UploadPackV2: fetch response 263 bytes
15:08:15.296 [info] UploadPackV2: processing fetch command
15:08:15.296 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.296 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.297 [info] UploadPackV2: pack generated, 958 bytes
15:08:15.297 [info] UploadPackV2: fetch response 980 bytes
15:08:15.301 [info] UploadPackV2: processing fetch command
15:08:15.301 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.302 [info] UploadPackV2: collected 27 objects, generating pack
15:08:15.303 [info] UploadPackV2: pack generated, 1622 bytes
15:08:15.303 [info] UploadPackV2: fetch response 1644 bytes
...........................
15:08:15.305 [info] UploadPackV2: processing fetch command
.
15:08:17.053 [notice] Handler :default switched from :sync to :drop mode
.
15:08:15.306 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.306 [info] UploadPackV2: collected 8 objects, generating pack
.
15:08:15.306 [info] UploadPackV2: pack generated, 482 bytes
.
15:08:15.307 [info] UploadPackV2: fetch response 504 bytes
.
15:08:15.310 [info] UploadPackV2: processing fetch command
.
15:08:15.310 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.310 [info] UploadPackV2: collected 19 objects, generating pack
.
15:08:15.311 [info] UploadPackV2: pack generated, 1196 bytes
.
15:08:15.311 [info] UploadPackV2: fetch response 1218 bytes
.
15:08:15.314 [info] UploadPackV2: processing fetch command
.
15:08:15.314 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
.
15:08:15.315 [info] UploadPackV2: collected 31 objects, generating pack
.
15:08:15.316 [info] UploadPackV2: pack generated, 1866 bytes
.
15:08:15.316 [info] UploadPackV2: fetch response 1888 bytes
.
15:08:15.321 [info] UploadPackV2: processing fetch command
.
15:08:15.321 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.324 [info] UploadPackV2: collected 47 objects, generating pack
.
15:08:15.325 [info] UploadPackV2: pack generated, 2848 bytes
.
15:08:15.325 [info] UploadPackV2: fetch response 2870 bytes
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
.
15:08:15.331 [info] UploadPackV2: processing fetch command
.
15:08:15.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.332 [info] UploadPackV2: collected 24 objects, generating pack
.
15:08:15.332 [info] UploadPackV2: pack generated, 1443 bytes
.
15:08:15.332 [info] UploadPackV2: fetch response 1465 bytes
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
.
15:08:15.336 [info] UploadPackV2: processing fetch command
.
15:08:15.336 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.337 [info] UploadPackV2: collected 23 objects, generating pack
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
.
15:08:15.338 [info] UploadPackV2: pack generated, 1386 bytes
.
15:08:15.338 [info] UploadPackV2: fetch response 1408 bytes
.
15:08:15.343 [info] UploadPackV2: processing fetch command
.
15:08:15.344 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.345 [info] UploadPackV2: collected 63 objects, generating pack
.
15:08:15.347 [info] UploadPackV2: pack generated, 3781 bytes
.
15:08:15.347 [info] UploadPackV2: fetch response 3803 bytes
.
15:08:15.356 [info] UploadPackV2: processing fetch command
15:08:15.356 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.357 [info] UploadPackV2: collected 20 objects, generating pack
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
15:08:15.357 [info] UploadPackV2: pack generated, 1203 bytes
15:08:15.357 [info] UploadPackV2: fetch response 1225 bytes
15:08:15.361 [info] UploadPackV2: processing fetch command
15:08:15.362 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.363 [info] UploadPackV2: collected 39 objects, generating pack
15:08:15.364 [info] UploadPackV2: pack generated, 2344 bytes
15:08:15.364 [info] UploadPackV2: fetch response 2366 bytes
15:08:15.370 [info] UploadPackV2: processing fetch command
15:08:15.370 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.372 [info] UploadPackV2: collected 50 objects, generating pack
15:08:15.373 [info] UploadPackV2: pack generated, 3054 bytes
15:08:15.373 [info] UploadPackV2: fetch response 3076 bytes
15:08:15.379 [info] UploadPackV2: processing fetch command
15:08:15.379 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.380 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.380 [info] UploadPackV2: pack generated, 956 bytes
15:08:15.380 [info] UploadPackV2: fetch response 978 bytes
15:08:15.383 [info] UploadPackV2: processing fetch command
15:08:15.383 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.384 [info] UploadPackV2: collected 20 objects, generating pack
15:08:15.385 [info] UploadPackV2: pack generated, 1203 bytes
15:08:15.385 [info] UploadPackV2: fetch response 1225 bytes
15:08:15.388 [info] UploadPackV2: processing fetch command
15:08:15.388 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.388 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.389 [info] UploadPackV2: pack generated, 956 bytes
15:08:15.389 [info] UploadPackV2: fetch response 978 bytes
15:08:15.392 [info] UploadPackV2: processing fetch command
15:08:15.392 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.393 [info] UploadPackV2: collected 30 objects, generating pack
15:08:15.394 [info] UploadPackV2: pack generated, 1861 bytes
15:08:15.394 [info] UploadPackV2: fetch response 1883 bytes
15:08:15.400 [info] UploadPackV2: processing fetch command
15:08:15.400 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.401 [info] UploadPackV2: collected 42 objects, generating pack
15:08:15.403 [info] UploadPackV2: pack generated, 2577 bytes
15:08:15.403 [info] UploadPackV2: fetch response 2599 bytes
15:08:15.408 [info] UploadPackV2: processing fetch command
15:08:15.408 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.409 [info] UploadPackV2: collected 27 objects, generating pack
15:08:15.410 [info] UploadPackV2: pack generated, 1678 bytes
15:08:15.410 [info] UploadPackV2: fetch response 1700 bytes
15:08:15.415 [info] UploadPackV2: processing fetch command
15:08:15.415 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.415 [info] UploadPackV2: collected 23 objects, generating pack
15:08:15.416 [info] UploadPackV2: pack generated, 1437 bytes
15:08:15.416 [info] UploadPackV2: fetch response 1459 bytes
15:08:15.420 [info] UploadPackV2: processing fetch command
15:08:15.420 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.421 [info] UploadPackV2: collected 11 objects, generating pack
15:08:15.421 [info] UploadPackV2: pack generated, 714 bytes
15:08:15.421 [info] UploadPackV2: fetch response 736 bytes
15:08:15.425 [info] UploadPackV2: processing fetch command
15:08:15.425 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.426 [info] UploadPackV2: collected 23 objects, generating pack
15:08:15.427 [info] UploadPackV2: pack generated, 1404 bytes
15:08:15.427 [info] UploadPackV2: fetch response 1426 bytes
15:08:15.430 [info] UploadPackV2: processing fetch command
15:08:15.430 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.431 [info] UploadPackV2: collected 16 objects, generating pack
15:08:15.431 [info] UploadPackV2: pack generated, 962 bytes
15:08:15.431 [info] UploadPackV2: fetch response 984 bytes
15:08:15.435 [info] UploadPackV2: processing fetch command
15:08:15.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.435 [info] UploadPackV2: collected 7 objects, generating pack
15:08:15.435 [info] UploadPackV2: pack generated, 475 bytes
15:08:15.435 [info] UploadPackV2: fetch response 497 bytes
15:08:15.439 [info] UploadPackV2: processing fetch command
15:08:15.439 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.441 [info] UploadPackV2: collected 54 objects, generating pack
15:08:15.442 [info] UploadPackV2: pack generated, 3296 bytes
15:08:15.443 [info] UploadPackV2: fetch response 3318 bytes
15:08:15.449 [info] UploadPackV2: processing fetch command
15:08:15.450 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.450 [info] UploadPackV2: collected 8 objects, generating pack
15:08:15.451 [info] UploadPackV2: pack generated, 482 bytes
15:08:15.451 [info] UploadPackV2: fetch response 504 bytes
15:08:15.452 [info] UploadPackV2: processing fetch command
15:08:15.453 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.453 [info] UploadPackV2: collected 16 objects, generating pack
15:08:15.453 [info] UploadPackV2: pack generated, 931 bytes
15:08:15.454 [info] UploadPackV2: fetch response 953 bytes
15:08:15.458 [info] UploadPackV2: processing fetch command
15:08:15.458 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.459 [info] UploadPackV2: collected 35 objects, generating pack
15:08:15.460 [info] UploadPackV2: pack generated, 2096 bytes
15:08:15.460 [info] UploadPackV2: fetch response 2118 bytes
15:08:15.464 [info] UploadPackV2: processing fetch command
15:08:15.464 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.464 [info] UploadPackV2: collected 8 objects, generating pack
15:08:15.464 [info] UploadPackV2: pack generated, 482 bytes
15:08:15.464 [info] UploadPackV2: fetch response 504 bytes
15:08:15.467 [info] UploadPackV2: processing fetch command
15:08:15.467 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.467 [info] UploadPackV2: collected 24 objects, generating pack
15:08:15.468 [info] UploadPackV2: pack generated, 1443 bytes
15:08:15.468 [info] UploadPackV2: fetch response 1465 bytes
15:08:15.471 [info] UploadPackV2: processing fetch command
15:08:15.471 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.472 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.472 [info] UploadPackV2: pack generated, 956 bytes
15:08:15.472 [info] UploadPackV2: fetch response 978 bytes
15:08:15.476 [info] UploadPackV2: processing fetch command
15:08:15.476 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.476 [info] UploadPackV2: collected 24 objects, generating pack
15:08:15.477 [info] UploadPackV2: pack generated, 1443 bytes
15:08:15.477 [info] UploadPackV2: fetch response 1465 bytes
15:08:15.481 [info] UploadPackV2: processing fetch command
15:08:15.482 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.483 [info] UploadPackV2: collected 35 objects, generating pack
15:08:15.484 [info] UploadPackV2: pack generated, 2105 bytes
15:08:15.484 [info] UploadPackV2: fetch response 2127 bytes
15:08:15.488 [info] UploadPackV2: processing fetch command
15:08:15.488 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.488 [info] UploadPackV2: collected 7 objects, generating pack
15:08:15.488 [info] UploadPackV2: pack generated, 475 bytes
15:08:15.488 [info] UploadPackV2: fetch response 497 bytes
15:08:15.492 [info] UploadPackV2: processing fetch command
15:08:15.492 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.495 [info] UploadPackV2: collected 63 objects, generating pack
15:08:15.496 [info] UploadPackV2: pack generated, 3781 bytes
15:08:15.496 [info] UploadPackV2: fetch response 3803 bytes
15:08:15.502 [info] UploadPackV2: processing fetch command
15:08:15.502 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.503 [info] UploadPackV2: collected 16 objects, generating pack
15:08:15.503 [info] UploadPackV2: pack generated, 962 bytes
15:08:15.503 [info] UploadPackV2: fetch response 984 bytes
15:08:15.507 [info] UploadPackV2: processing fetch command
15:08:15.507 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.508 [info] UploadPackV2: collected 20 objects, generating pack
15:08:15.508 [info] UploadPackV2: pack generated, 1203 bytes
15:08:15.508 [info] UploadPackV2: fetch response 1225 bytes
15:08:15.511 [info] UploadPackV2: processing fetch command
15:08:15.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.512 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.512 [info] UploadPackV2: pack generated, 958 bytes
15:08:15.512 [info] UploadPackV2: fetch response 980 bytes
15:08:15.516 [info] UploadPackV2: processing fetch command
15:08:15.516 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.517 [info] UploadPackV2: collected 27 objects, generating pack
15:08:15.518 [info] UploadPackV2: pack generated, 1676 bytes
15:08:15.518 [info] UploadPackV2: fetch response 1698 bytes
15:08:15.522 [info] UploadPackV2: processing fetch command
15:08:15.522 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.523 [info] UploadPackV2: collected 11 objects, generating pack
15:08:15.523 [info] UploadPackV2: pack generated, 684 bytes
15:08:15.523 [info] UploadPackV2: fetch response 706 bytes
15:08:15.525 [info] UploadPackV2: processing fetch command
15:08:15.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:15.527 [info] UploadPackV2: collected 27 objects, generating pack
15:08:15.527 [info] UploadPackV2: pack generated, 1678 bytes
15:08:15.527 [info] UploadPackV2: fetch response 1700 bytes
15:08:15.531 [info] UploadPackV2: processing fetch command
15:08:15.531 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:15.532 [info] UploadPackV2: collected 24 objects, generating pack
15:08:15.533 [info] UploadPackV2: pack generated, 1443 bytes
15:08:15.533 [info] UploadPackV2: fetch response 1465 bytes
15:08:15.540 [info] UploadPackV2: processing fetch command
15:08:15.540 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.541 [info] UploadPackV2: collected 14 objects, generating pack
15:08:15.541 [info] UploadPackV2: pack generated, 1062 bytes
15:08:17.642 [notice] Handler :default switched from :drop to :sync mode
15:08:15.541 [info] UploadPackV2: fetch response 1084 bytes
15:08:15.544 [info] UploadPackV2: processing fetch command
15:08:15.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.545 [info] UploadPackV2: collected 8 objects, generating pack
15:08:15.545 [info] UploadPackV2: pack generated, 636 bytes
15:08:15.545 [info] UploadPackV2: fetch response 658 bytes
15:08:15.548 [info] UploadPackV2: processing fetch command
15:08:15.548 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.549 [info] UploadPackV2: collected 17 objects, generating pack
15:08:15.549 [info] UploadPackV2: pack generated, 1235 bytes
15:08:15.549 [info] UploadPackV2: fetch response 1257 bytes
15:08:15.553 [info] UploadPackV2: processing fetch command
15:08:15.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.554 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.555 [info] UploadPackV2: pack generated, 1068 bytes
15:08:15.555 [info] UploadPackV2: fetch response 1090 bytes
.
15:08:15.559 [info] UploadPackV2: processing fetch command
15:08:15.559 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.559 [info] UploadPackV2: collected 5 objects, generating pack
15:08:15.559 [info] UploadPackV2: pack generated, 424 bytes
15:08:15.559 [info] UploadPackV2: fetch response 446 bytes
15:08:15.561 [info] UploadPackV2: processing fetch command
15:08:15.561 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.562 [info] UploadPackV2: collected 14 objects, generating pack
15:08:15.562 [info] UploadPackV2: pack generated, 1064 bytes
15:08:15.563 [info] UploadPackV2: fetch response 1086 bytes
15:08:15.565 [info] UploadPackV2: processing fetch command
15:08:15.565 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.565 [info] UploadPackV2: collected 3 objects, generating pack
15:08:15.565 [info] UploadPackV2: pack generated, 214 bytes
15:08:15.566 [info] UploadPackV2: fetch response 236 bytes
15:08:15.569 [info] UploadPackV2: processing fetch command
15:08:15.569 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.570 [info] UploadPackV2: collected 21 objects, generating pack
15:08:15.570 [info] UploadPackV2: pack generated, 1463 bytes
15:08:15.571 [info] UploadPackV2: fetch response 1485 bytes
15:08:15.576 [info] UploadPackV2: processing fetch command
15:08:15.576 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.577 [info] UploadPackV2: collected 33 objects, generating pack
15:08:15.578 [info] UploadPackV2: pack generated, 2317 bytes
15:08:15.578 [info] UploadPackV2: fetch response 2339 bytes
15:08:15.587 [info] UploadPackV2: processing fetch command
15:08:15.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.587 [info] UploadPackV2: collected 21 objects, generating pack
15:08:15.588 [info] UploadPackV2: pack generated, 1463 bytes
15:08:15.588 [info] UploadPackV2: fetch response 1485 bytes
15:08:15.593 [info] UploadPackV2: processing fetch command
15:08:15.593 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.594 [info] UploadPackV2: collected 29 objects, generating pack
15:08:15.595 [info] UploadPackV2: pack generated, 2085 bytes
15:08:15.595 [info] UploadPackV2: fetch response 2107 bytes
15:08:15.602 [info] UploadPackV2: processing fetch command
15:08:15.602 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.604 [info] UploadPackV2: collected 29 objects, generating pack
15:08:15.604 [info] UploadPackV2: pack generated, 2070 bytes
15:08:15.604 [info] UploadPackV2: fetch response 2092 bytes
15:08:15.610 [info] UploadPackV2: processing fetch command
15:08:15.610 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.611 [info] UploadPackV2: collected 15 objects, generating pack
15:08:15.611 [info] UploadPackV2: pack generated, 1036 bytes
15:08:15.611 [info] UploadPackV2: fetch response 1058 bytes
15:08:15.616 [info] UploadPackV2: processing fetch command
15:08:15.616 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.617 [info] UploadPackV2: collected 14 objects, generating pack
15:08:15.617 [info] UploadPackV2: pack generated, 1064 bytes
15:08:15.617 [info] UploadPackV2: fetch response 1086 bytes
15:08:15.621 [info] UploadPackV2: processing fetch command
15:08:15.622 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.623 [info] UploadPackV2: collected 17 objects, generating pack
15:08:15.623 [info] UploadPackV2: pack generated, 1246 bytes
15:08:15.623 [info] UploadPackV2: fetch response 1268 bytes
15:08:15.628 [info] UploadPackV2: processing fetch command
15:08:15.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.628 [info] UploadPackV2: collected 14 objects, generating pack
15:08:15.629 [info] UploadPackV2: pack generated, 1064 bytes
15:08:15.629 [info] UploadPackV2: fetch response 1086 bytes
15:08:15.634 [info] UploadPackV2: processing fetch command
15:08:15.634 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.635 [info] UploadPackV2: collected 28 objects, generating pack
15:08:15.636 [info] UploadPackV2: pack generated, 2089 bytes
15:08:15.636 [info] UploadPackV2: fetch response 2111 bytes
15:08:15.642 [info] UploadPackV2: processing fetch command
15:08:15.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.643 [info] UploadPackV2: collected 20 objects, generating pack
15:08:15.644 [info] UploadPackV2: pack generated, 1490 bytes
15:08:15.644 [info] UploadPackV2: fetch response 1512 bytes
15:08:15.651 [info] UploadPackV2: processing fetch command
15:08:15.651 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.653 [info] UploadPackV2: collected 37 objects, generating pack
15:08:15.653 [info] UploadPackV2: pack generated, 2722 bytes
15:08:15.653 [info] UploadPackV2: fetch response 2744 bytes
15:08:15.663 [info] UploadPackV2: processing fetch command
15:08:15.663 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.665 [info] UploadPackV2: collected 38 objects, generating pack
15:08:15.665 [info] UploadPackV2: pack generated, 2707 bytes
15:08:15.665 [info] UploadPackV2: fetch response 2729 bytes
15:08:15.673 [info] UploadPackV2: processing fetch command
15:08:15.673 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.673 [info] UploadPackV2: collected 8 objects, generating pack
15:08:15.673 [info] UploadPackV2: pack generated, 639 bytes
15:08:15.673 [info] UploadPackV2: fetch response 661 bytes
15:08:15.676 [info] UploadPackV2: processing fetch command
15:08:15.676 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.676 [info] UploadPackV2: collected 5 objects, generating pack
15:08:15.676 [info] UploadPackV2: pack generated, 424 bytes
15:08:15.676 [info] UploadPackV2: fetch response 446 bytes
15:08:15.679 [info] UploadPackV2: processing fetch command
15:08:15.679 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.680 [info] UploadPackV2: collected 14 objects, generating pack
15:08:15.680 [info] UploadPackV2: pack generated, 1064 bytes
15:08:15.680 [info] UploadPackV2: fetch response 1086 bytes
15:08:15.685 [info] UploadPackV2: processing fetch command
15:08:15.685 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.689 [info] UploadPackV2: collected 48 objects, generating pack
15:08:15.690 [info] UploadPackV2: pack generated, 3350 bytes
15:08:15.690 [info] UploadPackV2: fetch response 3372 bytes
15:08:15.698 [info] UploadPackV2: processing fetch command
15:08:15.698 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.698 [info] UploadPackV2: collected 9 objects, generating pack
15:08:15.699 [info] UploadPackV2: pack generated, 642 bytes
15:08:15.699 [info] UploadPackV2: fetch response 664 bytes
15:08:15.703 [info] UploadPackV2: processing fetch command
15:08:15.703 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.704 [info] UploadPackV2: collected 16 objects, generating pack
15:08:15.704 [info] UploadPackV2: pack generated, 1232 bytes
15:08:15.704 [info] UploadPackV2: fetch response 1254 bytes
15:08:15.709 [info] UploadPackV2: processing fetch command
15:08:15.709 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.710 [info] UploadPackV2: collected 31 objects, generating pack
15:08:15.711 [info] UploadPackV2: pack generated, 2298 bytes
15:08:15.711 [info] UploadPackV2: fetch response 2320 bytes
15:08:15.719 [info] UploadPackV2: processing fetch command
15:08:15.719 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.719 [info] UploadPackV2: collected 12 objects, generating pack
15:08:15.719 [info] UploadPackV2: pack generated, 854 bytes
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: variable "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
15:08:15.720 [info] UploadPackV2: fetch response 876 bytes
15:08:15.724 [info] UploadPackV2: processing fetch command
15:08:15.724 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.724 [info] UploadPackV2: collected 26 objects, generating pack
15:08:15.725 [info] UploadPackV2: pack generated, 1874 bytes
.
15:08:15.725 [info] UploadPackV2: fetch response 1896 bytes
15:08:15.731 [info] UploadPackV2: processing fetch command
15:08:15.731 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.732 [info] UploadPackV2: collected 6 objects, generating pack
15:08:15.732 [info] UploadPackV2: pack generated, 428 bytes
15:08:15.732 [info] UploadPackV2: fetch response 450 bytes
15:08:15.735 [info] UploadPackV2: processing fetch command
15:08:15.735 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.735 [info] UploadPackV2: collected 5 objects, generating pack
15:08:15.736 [info] UploadPackV2: pack generated, 424 bytes
.
15:08:15.736 [info] UploadPackV2: fetch response 446 bytes
15:08:15.738 [info] UploadPackV2: processing fetch command
.
15:08:15.739 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.739 [info] UploadPackV2: collected 11 objects, generating pack
.
15:08:15.740 [info] UploadPackV2: pack generated, 821 bytes
.
15:08:15.740 [info] UploadPackV2: fetch response 843 bytes
.
15:08:15.744 [info] UploadPackV2: processing fetch command
.
15:08:15.744 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.745 [info] UploadPackV2: collected 31 objects, generating pack
.
15:08:15.746 [info] UploadPackV2: pack generated, 2299 bytes
.
15:08:15.746 [info] UploadPackV2: fetch response 2321 bytes
.
15:08:15.751 [info] UploadPackV2: processing fetch command
.
15:08:15.751 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.751 [info] UploadPackV2: collected 3 objects, generating pack
15:08:15.751 [info] UploadPackV2: pack generated, 214 bytes
.
15:08:15.751 [info] UploadPackV2: fetch response 236 bytes
15:08:15.753 [info] UploadPackV2: processing fetch command
.
15:08:15.753 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.753 [info] UploadPackV2: collected 14 objects, generating pack
..
15:08:15.754 [info] UploadPackV2: pack generated, 1021 bytes
.
15:08:15.754 [info] UploadPackV2: fetch response 1043 bytes
.
15:08:15.757 [info] UploadPackV2: processing fetch command
15:08:15.757 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:08:15.758 [info] UploadPackV2: collected 18 objects, generating pack
15:08:15.758 [info] UploadPackV2: pack generated, 1281 bytes
.
15:08:15.758 [info] UploadPackV2: fetch response 1303 bytes
15:08:15.763 [info] UploadPackV2: processing fetch command
.
15:08:15.763 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.764 [info] UploadPackV2: collected 32 objects, generating pack
.
15:08:15.765 [info] UploadPackV2: pack generated, 2295 bytes
.
15:08:15.765 [info] UploadPackV2: fetch response 2317 bytes
.
15:08:15.772 [info] UploadPackV2: processing fetch command
.
15:08:15.772 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.773 [info] UploadPackV2: collected 20 objects, generating pack
.
15:08:15.773 [info] UploadPackV2: pack generated, 1450 bytes
.
15:08:15.773 [info] UploadPackV2: fetch response 1472 bytes
.
15:08:15.777 [info] UploadPackV2: processing fetch command
.
15:08:15.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.777 [info] UploadPackV2: collected 3 objects, generating pack
.
15:08:15.778 [info] UploadPackV2: pack generated, 214 bytes
.
15:08:15.778 [info] UploadPackV2: fetch response 236 bytes
.
15:08:15.780 [info] UploadPackV2: processing fetch command
.
15:08:15.780 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:08:15.780 [info] UploadPackV2: collected 11 objects, generating pack
.
15:08:15.780 [info] UploadPackV2: pack generated, 853 bytes
.
15:08:15.780 [info] UploadPackV2: fetch response 875 bytes
.
15:08:16.378 [info] UploadPackV2: processing fetch command
.
15:08:16.378 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:16.382 [info] UploadPackV2: reused pack 12221 bytes, 160 objects
.
15:08:16.382 [info] UploadPackV2: fetch response 12243 bytes
.
15:08:17.972 [info] UploadPackV2: processing fetch command
.
15:08:18.343 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
15:08:18.370 [info] UploadPackV2: collected 163 objects, generating pack
.
15:08:18.376 [info] UploadPackV2: pack generated, 15086 bytes
.
15:08:18.376 [info] UploadPackV2: fetch response 15108 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
.............................................................................................................
15:08:19.930 [info] UploadPackV2: processing fetch command
15:08:19.930 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:19.931 [info] UploadPackV2: collected 15 objects, generating pack
15:08:19.932 [info] UploadPackV2: pack generated, 984 bytes
15:08:19.932 [info] UploadPackV2: fetch response 1006 bytes
15:08:19.932 [info] UploadPackV2: processing fetch command
15:08:19.932 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:19.934 [info] UploadPackV2: collected 15 objects, streaming pack
15:08:19.936 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
15:08:19.936 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
15:08:19.938 [info] UploadPackV2: processing ls-refs command
.
15:08:19.939 [info] UploadPackV2: processing fetch command
15:08:19.939 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:19.939 [info] UploadPackV2: collected 3 objects, generating pack
15:08:19.939 [info] UploadPackV2: pack generated, 194 bytes
15:08:19.939 [info] UploadPackV2: fetch response 216 bytes
...................................
15:08:20.046 [info] UploadPackV2: processing fetch command
15:08:20.046 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.053 [info] UploadPackV2: collected 32 objects, generating pack
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
..
15:08:20.142 [info] UploadPackV2: pack generated, 2459816 bytes
15:08:20.147 [info] UploadPackV2: fetch response 2460023 bytes
15:08:20.147 [info] UploadPackV2: processing fetch command
15:08:20.147 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.156 [info] UploadPackV2: collected 32 objects, streaming pack
...
15:08:20.268 [info] UploadPackV2: streamed pack 2459816 bytes, 32 objects
15:08:20.268 [info] UploadPackV2: fetch streamed 2459816 pack bytes, 32 objects
.
15:08:20.271 [info] UploadPackV2: processing fetch command
15:08:20.271 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:20.272 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.272 [info] UploadPackV2: pack generated, 191 bytes
15:08:20.272 [info] UploadPackV2: fetch response 213 bytes
15:08:20.312 [info] UploadPackV2: processing fetch command
15:08:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
15:08:20.336 [info] UploadPackV2: collected 700 objects, generating pack
15:08:20.349 [info] UploadPackV2: pack generated, 48139 bytes
15:08:20.349 [info] UploadPackV2: fetch response 48161 bytes
.
15:08:20.393 [info] UploadPackV2: processing fetch command
15:08:20.393 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:08:20.394 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.394 [info] UploadPackV2: pack generated, 195 bytes
15:08:20.394 [info] UploadPackV2: fetch response 217 bytes
15:08:20.395 [info] UploadPackV2: processing fetch command
.
15:08:20.395 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.396 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.396 [info] UploadPackV2: pack generated, 191 bytes
15:08:20.396 [info] UploadPackV2: fetch response 213 bytes
15:08:20.400 [info] UploadPackV2: processing fetch command
15:08:20.400 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.400 [info] UploadPackV2: collected 3 objects, streaming pack
15:08:20.405 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
15:08:20.405 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
15:08:20.407 [info] UploadPackV2: processing ls-refs command
15:08:20.407 [info] UploadPackV2: processing fetch command
15:08:20.407 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.408 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.408 [info] UploadPackV2: pack generated, 206 bytes
15:08:20.408 [info] UploadPackV2: fetch response 228 bytes
.
15:08:20.409 [info] UploadPackV2: processing fetch command
15:08:20.409 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.410 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.410 [info] UploadPackV2: pack generated, 191 bytes
.
15:08:20.410 [info] UploadPackV2: fetch response 213 bytes
15:08:20.411 [info] UploadPackV2: processing fetch command
.
15:08:20.411 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.411 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.411 [info] UploadPackV2: pack generated, 195 bytes
15:08:20.411 [info] UploadPackV2: fetch response 217 bytes
15:08:20.412 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
15:08:20.412 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
15:08:20.413 [info] UploadPackV2: processing fetch command
..
15:08:20.413 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.413 [info] UploadPackV2: collected 9 objects, streaming pack
15:08:20.414 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
15:08:20.414 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
15:08:20.415 [info] UploadPackV2: processing fetch command
.
15:08:20.415 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.415 [info] UploadPackV2: collected 3 objects, streaming pack
15:08:20.415 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
15:08:20.415 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
..............
15:08:20.416 [info] UploadPackV2: processing fetch command
15:08:20.416 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.417 [info] UploadPackV2: collected 0 objects, generating pack
15:08:20.417 [info] UploadPackV2: pack generated, 32 bytes
15:08:20.417 [info] UploadPackV2: fetch response 54 bytes
15:08:20.419 [info] UploadPackV2: processing fetch command
.
15:08:20.419 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
15:08:20.419 [info] UploadPackV2: fetch response 73 bytes
.
15:08:20.419 [info] UploadPackV2: processing fetch command
.
15:08:20.419 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
15:08:20.419 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
15:08:20.421 [info] UploadPackV2: processing ls-refs command
.
15:08:20.421 [info] UploadPackV2: processing fetch command
15:08:20.422 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.422 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.422 [info] UploadPackV2: pack generated, 210 bytes
15:08:20.422 [info] UploadPackV2: fetch response 232 bytes
15:08:20.520 [info] UploadPackV2: processing fetch command
15:08:20.521 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.525 [info] UploadPackV2: reused pack 12212 bytes, 160 objects
15:08:20.525 [info] UploadPackV2: fetch response 12234 bytes
15:08:20.530 [info] UploadPackV2: processing fetch command
15:08:20.530 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.536 [info] UploadPackV2: collected 32 objects, streaming pack
15:08:20.622 [info] UploadPackV2: streamed pack 2459756 bytes, 32 objects
15:08:20.622 [info] UploadPackV2: fetch streamed 2459756 pack bytes, 32 objects
15:08:20.684 [info] UploadPackV2: processing fetch command
15:08:20.684 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.698 [info] UploadPackV2: collected 600 objects, generating pack
15:08:20.705 [info] UploadPackV2: pack generated, 39862 bytes
15:08:20.705 [info] UploadPackV2: fetch response 39884 bytes
15:08:20.737 [info] UploadPackV2: processing ls-refs command
15:08:20.738 [info] UploadPackV2: processing fetch command
15:08:20.738 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.738 [info] UploadPackV2: collected 3 objects, generating pack
15:08:20.738 [info] UploadPackV2: pack generated, 223 bytes
15:08:20.738 [info] UploadPackV2: fetch response 245 bytes
15:08:20.743 [info] UploadPackV2: processing fetch command
15:08:20.743 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.745 [info] UploadPackV2: collected 90 objects, generating pack
15:08:20.746 [info] UploadPackV2: pack generated, 5946 bytes
15:08:20.746 [info] UploadPackV2: fetch response 5968 bytes
15:08:20.752 [info] UploadPackV2: processing ls-refs command
15:08:20.752 [info] UploadPackV2: processing ls-refs command
15:08:20.753 [info] UploadPackV2: processing fetch command
15:08:20.753 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.753 [info] UploadPackV2: collected 15 objects, generating pack
15:08:20.754 [info] UploadPackV2: pack generated, 984 bytes
15:08:20.754 [info] UploadPackV2: fetch response 1006 bytes
15:08:20.755 [info] UploadPackV2: processing fetch command
15:08:20.755 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:20.755 [info] UploadPackV2: collected 6 objects, generating pack
15:08:20.755 [info] UploadPackV2: pack generated, 414 bytes
15:08:20.756 [info] UploadPackV2: fetch response 436 bytes
..................****************..................
15:08:25.749 [info] UploadPackV2: processing ls-refs command
15:08:25.751 [info] UploadPackV2: processing fetch command
15:08:25.751 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:25.752 [info] UploadPackV2: collected 3 objects, generating pack
15:08:25.752 [info] UploadPackV2: pack generated, 183 bytes
15:08:25.752 [info] UploadPackV2: fetch response 205 bytes
.
15:08:25.784 [info] UploadPackV2: processing ls-refs command
15:08:25.787 [info] UploadPackV2: processing fetch command
15:08:25.787 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:25.787 [info] UploadPackV2: collected 6 objects, generating pack
15:08:25.787 [info] UploadPackV2: pack generated, 366 bytes
15:08:25.788 [info] UploadPackV2: fetch response 388 bytes
15:08:25.813 [info] UploadPackV2: processing ls-refs command
.
15:08:25.838 [info] UploadPackV2: processing ls-refs command
15:08:25.840 [info] UploadPackV2: processing fetch command
15:08:25.840 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:25.841 [info] UploadPackV2: collected 9 objects, generating pack
15:08:25.841 [info] UploadPackV2: pack generated, 549 bytes
15:08:25.841 [info] UploadPackV2: fetch response 571 bytes
15:08:25.867 [info] UploadPackV2: processing ls-refs command
.
15:08:25.897 [info] UploadPackV2: processing ls-refs command
15:08:25.900 [info] UploadPackV2: processing fetch command
15:08:25.900 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:25.905 [info] UploadPackV2: collected 180 objects, generating pack
15:08:25.907 [info] UploadPackV2: pack generated, 11106 bytes
15:08:25.907 [info] UploadPackV2: fetch response 11128 bytes
.
15:08:25.943 [info] UploadPackV2: processing ls-refs command
15:08:25.945 [info] UploadPackV2: processing fetch command
15:08:25.945 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:25.946 [info] UploadPackV2: collected 15 objects, generating pack
15:08:25.946 [info] UploadPackV2: pack generated, 919 bytes
15:08:25.946 [info] UploadPackV2: fetch response 941 bytes
.
15:08:26.035 [info] UploadPackV2: processing fetch command
15:08:26.035 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:26.035 [info] UploadPackV2: collected 3 objects, generating pack
15:08:26.035 [info] UploadPackV2: pack generated, 183 bytes
15:08:26.035 [info] UploadPackV2: fetch response 205 bytes
...
15:08:41.194 [info] UploadPackV2: processing ls-refs command
15:08:41.196 [info] UploadPackV2: processing fetch command
15:08:41.196 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:41.197 [info] UploadPackV2: collected 6 objects, generating pack
15:08:41.197 [info] UploadPackV2: pack generated, 365 bytes
15:08:41.197 [info] UploadPackV2: fetch response 387 bytes
.
15:08:56.334 [info] UploadPackV2: processing ls-refs command
15:08:56.335 [info] UploadPackV2: processing fetch command
15:08:56.335 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:56.336 [info] UploadPackV2: collected 3 objects, generating pack
15:08:56.336 [info] UploadPackV2: pack generated, 183 bytes
15:08:56.336 [info] UploadPackV2: fetch response 205 bytes
.
15:08:56.450 [info] UploadPackV2: processing ls-refs command
15:08:56.451 [info] UploadPackV2: processing fetch command
15:08:56.451 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:08:56.452 [info] UploadPackV2: collected 3 objects, generating pack
15:08:56.452 [info] UploadPackV2: pack generated, 201 bytes
15:08:56.452 [info] UploadPackV2: fetch response 223 bytes
....
15:09:56.830 [info] UploadPackV2: processing ls-refs command
15:09:56.831 [info] UploadPackV2: processing fetch command
15:09:56.832 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:09:56.832 [info] UploadPackV2: collected 3 objects, generating pack
15:09:56.832 [info] UploadPackV2: pack generated, 183 bytes
15:09:56.832 [info] UploadPackV2: fetch response 205 bytes
..
15:10:27.034 [info] UploadPackV2: processing ls-refs command
15:10:27.035 [info] UploadPackV2: processing fetch command
15:10:27.036 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:27.036 [info] UploadPackV2: collected 6 objects, generating pack
15:10:27.037 [info] UploadPackV2: pack generated, 365 bytes
15:10:27.037 [info] UploadPackV2: fetch response 387 bytes
............
15:10:42.198 [info] UploadPackV2: processing ls-refs command
.
15:10:42.250 [info] UploadPackV2: processing ls-refs command
.
15:10:42.302 [info] UploadPackV2: processing ls-refs command
.
15:10:42.358 [info] UploadPackV2: processing ls-refs command
15:10:42.361 [info] UploadPackV2: processing fetch command
15:10:42.361 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
15:10:42.362 [info] UploadPackV2: collected 3 objects, generating pack
15:10:42.362 [info] UploadPackV2: pack generated, 381 bytes
15:10:42.362 [info] UploadPackV2: fetch response 403 bytes
.
15:10:42.434 [info] UploadPackV2: processing ls-refs command
15:10:42.437 [info] UploadPackV2: processing fetch command
15:10:42.437 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:10:42.438 [info] UploadPackV2: collected 6 objects, generating pack
15:10:42.438 [info] UploadPackV2: pack generated, 513 bytes
15:10:42.438 [info] UploadPackV2: fetch response 535 bytes
.
15:10:42.510 [info] UploadPackV2: processing ls-refs command
15:10:42.513 [info] UploadPackV2: processing fetch command
15:10:42.514 [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
15:10:42.515 [info] UploadPackV2: collected 6 objects, generating pack
15:10:42.515 [info] UploadPackV2: pack generated, 513 bytes
15:10:42.515 [info] UploadPackV2: fetch response 535 bytes
.
15:10:42.586 [info] UploadPackV2: processing ls-refs command
15:10:42.589 [info] UploadPackV2: processing fetch command
15:10:42.589 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
15:10:42.590 [info] UploadPackV2: collected 3 objects, generating pack
15:10:42.590 [info] UploadPackV2: pack generated, 381 bytes
15:10:42.590 [info] UploadPackV2: fetch response 403 bytes
.
15:10:42.658 [info] UploadPackV2: processing ls-refs command
15:10:42.660 [info] UploadPackV2: processing fetch command
15:10:42.660 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:42.660 [info] UploadPackV2: collected 3 objects, generating pack
15:10:42.660 [info] UploadPackV2: pack generated, 218 bytes
15:10:42.660 [info] UploadPackV2: fetch response 314 bytes
..
15:10:42.734 [info] UploadPackV2: processing ls-refs command
15:10:42.735 [info] UploadPackV2: processing fetch command
15:10:42.735 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:42.736 [info] UploadPackV2: collected 9 objects, generating pack
15:10:42.737 [info] UploadPackV2: pack generated, 549 bytes
15:10:42.737 [info] UploadPackV2: fetch response 571 bytes
15:10:42.753 [info] UploadPackV2: processing fetch command
15:10:42.753 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
15:10:42.753 [info] UploadPackV2: fetch response 171 bytes
..
15:10:42.802 [info] UploadPackV2: processing ls-refs command
.
15:10:42.858 [info] UploadPackV2: processing ls-refs command
15:10:42.859 [info] UploadPackV2: processing fetch command
15:10:42.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:42.861 [info] UploadPackV2: collected 9 objects, generating pack
15:10:42.861 [info] UploadPackV2: pack generated, 585 bytes
15:10:42.861 [info] UploadPackV2: fetch response 681 bytes
.
15:10:42.934 [info] UploadPackV2: processing ls-refs command
15:10:42.935 [info] UploadPackV2: processing fetch command
15:10:42.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:42.936 [info] UploadPackV2: collected 3 objects, generating pack
15:10:42.936 [info] UploadPackV2: pack generated, 216 bytes
15:10:42.936 [info] UploadPackV2: fetch response 312 bytes
15:10:42.994 [info] UploadPackV2: processing ls-refs command
15:10:42.995 [info] UploadPackV2: processing fetch command
15:10:42.995 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:42.996 [info] UploadPackV2: collected 12 objects, generating pack
15:10:42.996 [info] UploadPackV2: pack generated, 768 bytes
15:10:42.996 [info] UploadPackV2: fetch response 1002 bytes
.
15:10:43.058 [info] UploadPackV2: processing ls-refs command
15:10:43.059 [info] UploadPackV2: processing fetch command
15:10:43.059 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:43.060 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.060 [info] UploadPackV2: pack generated, 216 bytes
15:10:43.060 [info] UploadPackV2: fetch response 312 bytes
.
15:10:43.130 [info] UploadPackV2: processing ls-refs command
15:10:43.133 [info] UploadPackV2: processing fetch command
15:10:43.133 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
15:10:43.134 [info] UploadPackV2: collected 5 objects, generating pack
15:10:43.134 [info] UploadPackV2: pack generated, 319 bytes
15:10:43.134 [info] UploadPackV2: fetch response 341 bytes
.
15:10:43.206 [info] UploadPackV2: processing ls-refs command
15:10:43.207 [info] UploadPackV2: processing fetch command
15:10:43.208 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.208 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.208 [info] UploadPackV2: pack generated, 196 bytes
15:10:43.209 [info] UploadPackV2: fetch response 218 bytes
.
15:10:43.286 [info] UploadPackV2: processing ls-refs command
15:10:43.287 [info] UploadPackV2: processing fetch command
15:10:43.287 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:43.287 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.287 [info] UploadPackV2: pack generated, 200 bytes
15:10:43.287 [info] UploadPackV2: fetch response 256 bytes
.
15:10:43.350 [info] UploadPackV2: processing ls-refs command
15:10:43.351 [info] UploadPackV2: processing fetch command
15:10:43.352 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.352 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.352 [info] UploadPackV2: pack generated, 185 bytes
15:10:43.352 [info] UploadPackV2: fetch response 207 bytes
15:10:43.414 [info] UploadPackV2: processing ls-refs command
.
15:10:43.474 [info] UploadPackV2: processing ls-refs command
15:10:43.475 [info] UploadPackV2: processing fetch command
15:10:43.475 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.476 [info] UploadPackV2: collected 15 objects, generating pack
15:10:43.477 [info] UploadPackV2: pack generated, 952 bytes
15:10:43.477 [info] UploadPackV2: fetch response 974 bytes
.
15:10:43.495 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303401726" 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:10:43.495 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303401694" 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:10:43.496 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303401662" 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:10:43.497 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303401630" 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:10:43.497 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303412701" 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:10:43.498 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303412669" 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:10:43.499 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303401598" 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:10:43.499 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303401566" 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:10:43.566 [info] UploadPackV2: processing ls-refs command
15:10:43.568 [info] UploadPackV2: processing fetch command
15:10:43.568 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.576 [info] UploadPackV2: collected 240 objects, generating pack
15:10:43.581 [info] UploadPackV2: pack generated, 16258 bytes
15:10:43.581 [info] UploadPackV2: fetch response 16280 bytes
.
15:10:43.730 [info] UploadPackV2: processing ls-refs command
15:10:43.731 [info] UploadPackV2: processing fetch command
15:10:43.731 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:43.732 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.732 [info] UploadPackV2: pack generated, 231 bytes
15:10:43.732 [info] UploadPackV2: fetch response 327 bytes
.
15:10:43.798 [info] UploadPackV2: processing ls-refs command
.
15:10:43.806 [info] UploadPackV2: processing fetch command
15:10:43.806 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.806 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.806 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.806 [info] UploadPackV2: fetch response 205 bytes
15:10:43.806 [info] UploadPackV2: processing fetch command
15:10:43.806 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.807 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.807 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.807 [info] UploadPackV2: fetch response 205 bytes
15:10:43.807 [info] UploadPackV2: processing fetch command
15:10:43.807 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.807 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.807 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.807 [info] UploadPackV2: fetch response 205 bytes
15:10:43.807 [info] UploadPackV2: processing fetch command
15:10:43.807 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.807 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.807 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.807 [info] UploadPackV2: fetch response 205 bytes
15:10:43.808 [info] UploadPackV2: processing fetch command
15:10:43.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.808 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.808 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.808 [info] UploadPackV2: fetch response 205 bytes
15:10:43.808 [info] UploadPackV2: processing fetch command
15:10:43.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.808 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.808 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.808 [info] UploadPackV2: fetch response 205 bytes
15:10:43.808 [info] UploadPackV2: processing fetch command
15:10:43.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.809 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.809 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.809 [info] UploadPackV2: fetch response 205 bytes
15:10:43.809 [info] UploadPackV2: processing fetch command
15:10:43.809 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.809 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.809 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.809 [info] UploadPackV2: fetch response 205 bytes
15:10:43.809 [info] UploadPackV2: processing fetch command
15:10:43.809 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.809 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.809 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.809 [info] UploadPackV2: fetch response 205 bytes
15:10:43.810 [info] UploadPackV2: processing fetch command
15:10:43.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.810 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.810 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.810 [info] UploadPackV2: fetch response 205 bytes
15:10:43.810 [info] UploadPackV2: processing fetch command
15:10:43.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.810 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.810 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.810 [info] UploadPackV2: fetch response 205 bytes
15:10:43.810 [info] UploadPackV2: processing fetch command
15:10:43.810 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.811 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.811 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.811 [info] UploadPackV2: fetch response 205 bytes
15:10:43.811 [info] UploadPackV2: processing fetch command
15:10:43.811 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.811 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.811 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.811 [info] UploadPackV2: fetch response 205 bytes
15:10:43.811 [info] UploadPackV2: processing fetch command
15:10:43.811 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.811 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.812 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.812 [info] UploadPackV2: fetch response 205 bytes
15:10:43.812 [info] UploadPackV2: processing fetch command
15:10:43.812 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.812 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.812 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.812 [info] UploadPackV2: fetch response 205 bytes
15:10:43.812 [info] UploadPackV2: processing fetch command
15:10:43.815 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.815 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.815 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.815 [info] UploadPackV2: fetch response 205 bytes
15:10:43.815 [info] UploadPackV2: processing fetch command
15:10:43.815 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.815 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.815 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.816 [info] UploadPackV2: fetch response 205 bytes
15:10:43.816 [info] UploadPackV2: processing fetch command
15:10:43.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.816 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.816 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.816 [info] UploadPackV2: fetch response 205 bytes
15:10:43.816 [info] UploadPackV2: processing fetch command
15:10:43.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.816 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.817 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.817 [info] UploadPackV2: fetch response 205 bytes
15:10:43.817 [info] UploadPackV2: processing fetch command
15:10:43.817 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.817 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.817 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.817 [info] UploadPackV2: fetch response 205 bytes
15:10:43.817 [info] UploadPackV2: processing fetch command
15:10:43.817 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.817 [info] UploadPackV2: collected 3 objects, generating pack
15:10:43.817 [info] UploadPackV2: pack generated, 183 bytes
15:10:43.817 [info] UploadPackV2: fetch response 205 bytes
.
15:10:43.902 [info] UploadPackV2: processing ls-refs command
15:10:43.903 [info] UploadPackV2: processing fetch command
15:10:43.903 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.924 [info] UploadPackV2: collected 600 objects, generating pack
15:10:43.942 [info] UploadPackV2: pack generated, 45197 bytes
15:10:43.942 [info] UploadPackV2: fetch response 45219 bytes
.
15:10:43.974 [info] UploadPackV2: processing fetch command
15:10:43.974 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:43.974 [info] UploadPackV2: collected 0 objects, generating pack
15:10:43.974 [info] UploadPackV2: pack generated, 32 bytes
15:10:43.974 [info] UploadPackV2: fetch response 54 bytes
.
15:10:44.218 [info] UploadPackV2: processing ls-refs command
.....
15:10:44.223 [info] The function passed as a handler with ID "graph-query-test-22019" 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:10:44.227 [info] The function passed as a handler with ID "graph-query-test-22051" 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:10:44.231 [info] The function passed as a handler with ID "graph-query-test-9986" 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:10:44.235 [info] The function passed as a handler with ID "telemetry-test-22115" 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:10:44.236 [info] UploadPackV2: processing fetch command
15:10:44.236 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:44.237 [info] UploadPackV2: collected 3 objects, generating pack
.
15:10:44.237 [info] UploadPackV2: pack generated, 186 bytes
15:10:44.237 [info] UploadPackV2: fetch response 208 bytes
15:10:44.237 [info] The function passed as a handler with ID "telemetry-test-10082" 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:10:44.238 [info] UploadPackV2: processing fetch command
15:10:44.238 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:10:44.239 [info] UploadPackV2: collected 2 objects, generating pack
15:10:44.239 [info] UploadPackV2: pack generated, 169 bytes
15:10:44.239 [info] UploadPackV2: fetch response 191 bytes
.
15:10:44.241 [info] The function passed as a handler with ID "telemetry-test-22147" 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:10:59.309 [info] The function passed as a handler with ID "telemetry-test-10114" 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:10:59.309 [info] UploadPackV2: processing fetch command
.
15:10:59.310 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:10:59.310 [info] UploadPackV2: collected 3 objects, generating pack
15:10:59.310 [info] UploadPackV2: pack generated, 183 bytes
15:10:59.310 [info] UploadPackV2: fetch response 205 bytes
15:10:59.366 [info] UploadPackV2: processing ls-refs command
15:10:59.367 [info] UploadPackV2: processing fetch command
15:10:59.368 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:59.368 [info] UploadPackV2: collected 3 objects, generating pack
15:10:59.368 [info] UploadPackV2: pack generated, 196 bytes
15:10:59.368 [info] UploadPackV2: fetch response 218 bytes
.
15:10:59.438 [info] UploadPackV2: processing ls-refs command
15:10:59.439 [info] UploadPackV2: processing fetch command
15:10:59.440 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:10:59.440 [info] UploadPackV2: collected 3 objects, generating pack
15:10:59.440 [info] UploadPackV2: pack generated, 185 bytes
15:10:59.440 [info] UploadPackV2: fetch response 207 bytes
...
15:11:14.594 [info] UploadPackV2: processing ls-refs command
15:11:14.596 [info] UploadPackV2: processing fetch command
15:11:14.596 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:14.596 [info] UploadPackV2: collected 6 objects, generating pack
15:11:14.596 [info] UploadPackV2: pack generated, 366 bytes
15:11:14.596 [info] UploadPackV2: fetch response 388 bytes
15:11:14.654 [info] UploadPackV2: processing ls-refs command
15:11:14.655 [info] UploadPackV2: processing fetch command
15:11:14.655 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
15:11:14.655 [info] UploadPackV2: fetch response 32 bytes
15:11:14.655 [info] UploadPackV2: processing fetch command
15:11:14.655 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:14.655 [info] UploadPackV2: collected 3 objects, generating pack
15:11:14.656 [info] UploadPackV2: pack generated, 183 bytes
15:11:14.656 [info] UploadPackV2: fetch response 205 bytes
.
15:11:14.714 [info] UploadPackV2: processing ls-refs command
15:11:14.715 [info] UploadPackV2: processing fetch command
15:11:14.715 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:14.716 [info] UploadPackV2: collected 9 objects, generating pack
15:11:14.717 [info] UploadPackV2: pack generated, 547 bytes
15:11:14.717 [info] UploadPackV2: fetch response 569 bytes
15:11:14.786 [info] UploadPackV2: processing ls-refs command
.
15:11:14.858 [info] UploadPackV2: processing ls-refs command
15:11:14.859 [info] UploadPackV2: processing fetch command
15:11:14.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:14.863 [info] UploadPackV2: collected 90 objects, generating pack
15:11:14.865 [info] UploadPackV2: pack generated, 5649 bytes
15:11:14.866 [info] UploadPackV2: fetch response 5671 bytes
15:11:15.142 [info] UploadPackV2: processing ls-refs command
.
15:11:15.214 [info] UploadPackV2: processing ls-refs command
15:11:15.215 [info] UploadPackV2: processing fetch command
15:11:15.215 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:15.216 [info] UploadPackV2: collected 6 objects, generating pack
15:11:15.216 [info] UploadPackV2: pack generated, 365 bytes
15:11:15.216 [info] UploadPackV2: fetch response 387 bytes
.
15:11:30.354 [info] UploadPackV2: processing ls-refs command
15:11:30.355 [info] UploadPackV2: processing fetch command
15:11:30.355 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:30.356 [info] UploadPackV2: collected 6 objects, generating pack
15:11:30.356 [info] UploadPackV2: pack generated, 365 bytes
15:11:30.356 [info] UploadPackV2: fetch response 387 bytes
15:11:32.378 [info] UploadPackV2: processing ls-refs command
.
15:11:32.442 [info] UploadPackV2: processing ls-refs command
15:11:32.443 [info] UploadPackV2: processing fetch command
15:11:32.443 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:11:32.443 [info] UploadPackV2: collected 3 objects, generating pack
15:11:32.443 [info] UploadPackV2: pack generated, 216 bytes
15:11:32.443 [info] UploadPackV2: fetch response 346 bytes
.
15:11:32.506 [info] UploadPackV2: processing ls-refs command
15:11:32.506 [info] UploadPackV2: processing ls-refs command
15:11:32.507 [info] UploadPackV2: processing fetch command
15:11:32.508 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:32.508 [info] UploadPackV2: processing fetch command
15:11:32.508 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:32.510 [info] UploadPackV2: collected 6 objects, generating pack
15:11:32.510 [info] UploadPackV2: collected 6 objects, generating pack
15:11:32.510 [info] UploadPackV2: pack generated, 365 bytes
15:11:32.510 [info] UploadPackV2: fetch response 387 bytes
15:11:32.510 [info] UploadPackV2: pack generated, 365 bytes
15:11:32.510 [info] UploadPackV2: fetch response 387 bytes
.
15:11:32.554 [info] UploadPackV2: processing fetch command
.
15:11:32.554 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:32.554 [info] UploadPackV2: collected 3 objects, generating pack
15:11:32.554 [info] UploadPackV2: pack generated, 183 bytes
15:11:32.554 [info] UploadPackV2: fetch response 205 bytes
15:11:32.606 [info] UploadPackV2: processing ls-refs command
15:11:32.607 [info] UploadPackV2: processing fetch command
15:11:32.607 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:11:32.608 [info] UploadPackV2: collected 6 objects, generating pack
15:11:32.608 [info] UploadPackV2: pack generated, 365 bytes
15:11:32.608 [info] UploadPackV2: fetch response 387 bytes
15:11:32.624 [info] UploadPackV2: processing fetch command
15:11:32.624 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
15:11:32.624 [info] UploadPackV2: fetch response 122 bytes
.
Finished in 201.7 seconds (13.6s async, 188.1s sync)
Result: 1003 passed (2 properties, 1001 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info