ref:main

test passed

Command: set -e git config --global --add safe.directory /workspace git config --global init.defaultBranch main git config --global user.email "ci@anvil.test" git config --global user.name "CI" export MIX_HOME=/workspace/.mix mix test --cover --export-coverage default mix run --no-start -e ' tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first() if tools_ebin, do: Code.append_path(tools_ebin) :cover.start() :cover.import(~c"cover/default.coverdata") modules = :cover.imported_modules() lcov = Enum.map_join(modules, "", fn mod -> case :cover.analyse(mod, :calls, :line) do {:ok, lines} -> source = try do mod.module_info(:compile)[:source] |> to_string() |> String.replace(File.cwd!() <> "/", "") rescue _ -> nil end if source do data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end) da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end) h = Enum.count(data, fn {_, c} -> c > 0 end) "SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n" else "" end _ -> "" end end) File.write!("cover/lcov.info", lcov) IO.puts("LCOV written to cover/lcov.info") '
Runner: carl online linux/arm64
Started: Jun 17, 2026 at 16:44 UTC Completed: Jun 17, 2026 at 16:48 UTC Duration: 3m 59s
Exit code: 0

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 12 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 460104, max_cases: 8
Excluding tags: [:s3]
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: 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
...........................................................
16:44:51.466 [info] The function passed as a handler with ID #Reference<0.2727013456.1453850625.194778> 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
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
.................................
16:44:52.030 [info] The function passed as a handler with ID #Reference<0.2727013456.1453850625.201227> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:151:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: 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
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: 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
...................................................................................................................................................................................................
16:44:54.532 [info] UploadPackV2: processing fetch command
16:44:54.532 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.538 [info] UploadPackV2: collected 35 objects, generating pack
16:44:54.539 [info] UploadPackV2: pack generated, 2527 bytes
16:44:54.540 [info] UploadPackV2: fetch response 2549 bytes
16:44:54.571 [info] UploadPackV2: processing fetch command
16:44:54.571 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.572 [info] UploadPackV2: collected 32 objects, generating pack
16:44:54.574 [info] UploadPackV2: pack generated, 2301 bytes
16:44:54.574 [info] UploadPackV2: fetch response 2323 bytes
16:44:54.587 [info] UploadPackV2: processing fetch command
16:44:54.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.587 [info] UploadPackV2: collected 17 objects, generating pack
16:44:54.588 [info] UploadPackV2: pack generated, 1235 bytes
16:44:54.588 [info] UploadPackV2: fetch response 1257 bytes
16:44:54.594 [info] UploadPackV2: processing fetch command
16:44:54.595 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.595 [info] UploadPackV2: collected 6 objects, generating pack
16:44:54.595 [info] UploadPackV2: pack generated, 428 bytes
16:44:54.596 [info] UploadPackV2: fetch response 450 bytes
16:44:54.606 [info] UploadPackV2: processing fetch command
16:44:54.606 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
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
16:44:54.608 [info] UploadPackV2: collected 40 objects, generating pack
16:44:54.610 [info] UploadPackV2: pack generated, 2935 bytes
16:44:54.610 [info] UploadPackV2: fetch response 2957 bytes
16:44:54.628 [info] UploadPackV2: processing fetch command
16:44:54.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.629 [info] UploadPackV2: collected 6 objects, generating pack
16:44:54.630 [info] UploadPackV2: pack generated, 428 bytes
16:44:54.630 [info] UploadPackV2: fetch response 450 bytes
16:44:54.634 [info] UploadPackV2: processing fetch command
16:44:54.634 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.635 [info] UploadPackV2: collected 8 objects, generating pack
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
16:44:54.636 [info] UploadPackV2: pack generated, 636 bytes
.
16:44:54.636 [info] UploadPackV2: fetch response 658 bytes
.
16:44:54.699 [info] UploadPackV2: processing fetch command
.
16:44:54.700 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:54.757 [info] UploadPackV2: collected 12 objects, generating pack
.
16:44:54.763 [info] UploadPackV2: pack generated, 854 bytes
.
16:44:54.768 [info] UploadPackV2: fetch response 876 bytes
16:44:54.777 [info] UploadPackV2: processing fetch command
16:44:54.777 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.778 [info] UploadPackV2: collected 21 objects, generating pack
16:44:54.779 [info] UploadPackV2: pack generated, 1463 bytes
16:44:54.779 [info] UploadPackV2: fetch response 1485 bytes
16:44:54.791 [info] UploadPackV2: processing fetch command
16:44:54.791 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.794 [info] UploadPackV2: collected 49 objects, generating pack
16:44:54.796 [info] UploadPackV2: pack generated, 3572 bytes
16:44:54.796 [info] UploadPackV2: fetch response 3594 bytes
16:44:54.808 [info] UploadPackV2: processing fetch command
16:44:54.808 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.809 [info] UploadPackV2: collected 11 objects, generating pack
16:44:54.809 [info] UploadPackV2: pack generated, 853 bytes
16:44:54.809 [info] UploadPackV2: fetch response 875 bytes
16:44:54.814 [info] UploadPackV2: processing fetch command
16:44:54.814 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.815 [info] UploadPackV2: collected 11 objects, generating pack
16:44:54.815 [info] UploadPackV2: pack generated, 851 bytes
16:44:54.815 [info] UploadPackV2: fetch response 873 bytes
16:44:54.820 [info] UploadPackV2: processing fetch command
16:44:54.820 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.821 [info] UploadPackV2: collected 20 objects, generating pack
16:44:54.823 [info] UploadPackV2: pack generated, 1445 bytes
16:44:54.823 [info] UploadPackV2: fetch response 1467 bytes
16:44:54.831 [info] UploadPackV2: processing fetch command
16:44:54.831 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:54.832 [info] UploadPackV2: collected 11 objects, generating pack
16:44:54.832 [info] UploadPackV2: pack generated, 853 bytes
16:44:54.832 [info] UploadPackV2: fetch response 875 bytes
16:44:54.839 [info] UploadPackV2: processing fetch command
16:44:54.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.840 [info] UploadPackV2: collected 8 objects, generating pack
16:44:54.840 [info] UploadPackV2: pack generated, 636 bytes
16:44:54.841 [info] UploadPackV2: fetch response 658 bytes
16:44:54.845 [info] UploadPackV2: processing fetch command
16:44:54.845 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.846 [info] UploadPackV2: collected 6 objects, generating pack
16:44:54.847 [info] UploadPackV2: pack generated, 428 bytes
16:44:54.847 [info] UploadPackV2: fetch response 450 bytes
16:44:54.851 [info] UploadPackV2: processing fetch command
16:44:54.851 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.851 [info] UploadPackV2: collected 6 objects, generating pack
16:44:54.853 [info] UploadPackV2: pack generated, 428 bytes
16:44:54.853 [info] UploadPackV2: fetch response 450 bytes
16:44:54.858 [info] UploadPackV2: processing fetch command
16:44:54.858 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.859 [info] UploadPackV2: collected 12 objects, generating pack
16:44:54.860 [info] UploadPackV2: pack generated, 854 bytes
16:44:54.860 [info] UploadPackV2: fetch response 876 bytes
16:44:54.873 [info] UploadPackV2: processing fetch command
16:44:54.874 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.875 [info] UploadPackV2: collected 20 objects, generating pack
16:44:54.876 [info] UploadPackV2: pack generated, 1490 bytes
16:44:54.876 [info] UploadPackV2: fetch response 1512 bytes
16:44:54.894 [info] UploadPackV2: processing fetch command
16:44:54.950 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:54.963 [info] UploadPackV2: collected 37 objects, generating pack
16:44:54.969 [info] UploadPackV2: pack generated, 2724 bytes
16:44:54.973 [info] UploadPackV2: fetch response 2746 bytes
16:44:55.114 [info] UploadPackV2: processing fetch command
16:44:55.114 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.118 [info] UploadPackV2: collected 22 objects, generating pack
16:44:55.122 [info] UploadPackV2: pack generated, 1658 bytes
16:44:55.123 [info] UploadPackV2: fetch response 1680 bytes
16:44:55.167 [info] UploadPackV2: processing fetch command
16:44:55.167 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.174 [info] UploadPackV2: collected 17 objects, generating pack
16:44:55.175 [info] UploadPackV2: pack generated, 1278 bytes
16:44:55.175 [info] UploadPackV2: fetch response 1300 bytes
16:44:55.204 [info] UploadPackV2: processing fetch command
16:44:55.204 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.209 [info] UploadPackV2: collected 24 objects, generating pack
16:44:55.213 [info] UploadPackV2: pack generated, 1677 bytes
16:44:55.214 [info] UploadPackV2: fetch response 1699 bytes
16:44:55.222 [info] UploadPackV2: processing fetch command
16:44:55.222 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.223 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.223 [info] UploadPackV2: pack generated, 1068 bytes
16:44:55.223 [info] UploadPackV2: fetch response 1090 bytes
16:44:55.236 [info] UploadPackV2: processing fetch command
16:44:55.236 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.240 [info] UploadPackV2: collected 39 objects, generating pack
16:44:55.244 [info] UploadPackV2: pack generated, 2712 bytes
16:44:55.244 [info] UploadPackV2: fetch response 2734 bytes
16:44:55.256 [info] UploadPackV2: processing fetch command
16:44:55.256 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.257 [info] UploadPackV2: collected 14 objects, generating pack
16:44:55.257 [info] UploadPackV2: pack generated, 1062 bytes
16:44:55.258 [info] UploadPackV2: fetch response 1084 bytes
16:44:55.262 [info] UploadPackV2: processing fetch command
16:44:55.263 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.263 [info] UploadPackV2: collected 11 objects, generating pack
16:44:55.264 [info] UploadPackV2: pack generated, 811 bytes
16:44:55.264 [info] UploadPackV2: fetch response 833 bytes
16:44:55.273 [info] UploadPackV2: processing fetch command
16:44:55.273 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.275 [info] UploadPackV2: collected 17 objects, generating pack
16:44:55.275 [info] UploadPackV2: pack generated, 1248 bytes
16:44:55.275 [info] UploadPackV2: fetch response 1270 bytes
.
16:44:55.281 [info] UploadPackV2: processing fetch command
.
16:44:55.281 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.284 [info] UploadPackV2: collected 6 objects, generating pack
.
16:44:55.284 [info] UploadPackV2: pack generated, 428 bytes
.
16:44:55.284 [info] UploadPackV2: fetch response 450 bytes
.
16:44:55.328 [info] UploadPackV2: processing fetch command
.
16:44:55.328 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.337 [info] UploadPackV2: collected 9 objects, generating pack
.
16:44:55.338 [info] UploadPackV2: pack generated, 642 bytes
.
16:44:55.338 [info] UploadPackV2: fetch response 664 bytes
.
16:44:55.370 [info] UploadPackV2: processing fetch command
.
16:44:55.370 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.385 [info] UploadPackV2: collected 6 objects, generating pack
.
16:44:55.385 [info] UploadPackV2: pack generated, 428 bytes
.
16:44:55.387 [info] UploadPackV2: fetch response 450 bytes
.
16:44:55.405 [info] UploadPackV2: processing fetch command
.
16:44:55.406 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.410 [info] UploadPackV2: collected 30 objects, generating pack
.
16:44:55.411 [info] UploadPackV2: pack generated, 2072 bytes
.
16:44:55.411 [info] UploadPackV2: fetch response 2094 bytes
.
16:44:55.444 [info] UploadPackV2: processing fetch command
.
16:44:55.444 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.447 [info] UploadPackV2: collected 9 objects, generating pack
.
16:44:55.447 [info] UploadPackV2: pack generated, 642 bytes
.
16:44:55.448 [info] UploadPackV2: fetch response 664 bytes
.
16:44:55.458 [info] UploadPackV2: processing fetch command
.
16:44:55.459 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.460 [info] UploadPackV2: collected 35 objects, generating pack
16:44:55.461 [info] UploadPackV2: pack generated, 2496 bytes
16:44:55.461 [info] UploadPackV2: fetch response 2518 bytes
.
16:44:55.505 [info] UploadPackV2: processing fetch command
.
16:44:55.505 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.508 [info] UploadPackV2: collected 3 objects, generating pack
.
16:44:55.509 [info] UploadPackV2: pack generated, 214 bytes
.
16:44:55.509 [info] UploadPackV2: fetch response 236 bytes
.
16:44:55.536 [info] UploadPackV2: processing fetch command
.
16:44:55.536 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.554 [info] UploadPackV2: collected 9 objects, generating pack
.
16:44:55.555 [info] UploadPackV2: pack generated, 642 bytes
.
16:44:55.555 [info] UploadPackV2: fetch response 664 bytes
.
16:44:55.583 [info] UploadPackV2: processing fetch command
.
16:44:55.583 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.588 [info] UploadPackV2: collected 15 objects, generating pack
.
16:44:55.589 [info] UploadPackV2: pack generated, 1068 bytes
.
16:44:55.590 [info] UploadPackV2: fetch response 1090 bytes
.
16:44:55.607 [info] UploadPackV2: processing fetch command
.
16:44:55.607 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
......................
16:44:55.608 [info] UploadPackV2: collected 14 objects, generating pack
16:44:56.670 [notice] Handler :default switched from :sync to :drop mode
16:44:55.608 [info] UploadPackV2: pack generated, 1062 bytes
16:44:55.608 [info] UploadPackV2: fetch response 1084 bytes
16:44:55.617 [info] UploadPackV2: processing fetch command
16:44:55.617 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:44:55.618 [info] UploadPackV2: collected 19 objects, generating pack
16:44:55.618 [info] UploadPackV2: pack generated, 1444 bytes
16:44:55.619 [info] UploadPackV2: fetch response 1466 bytes
.
16:44:55.625 [info] UploadPackV2: processing fetch command
.
16:44:55.625 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
16:44:55.626 [info] UploadPackV2: collected 17 objects, generating pack
.
16:44:55.626 [info] UploadPackV2: pack generated, 1276 bytes
.
16:44:55.626 [info] UploadPackV2: fetch response 1298 bytes
.
16:44:55.636 [info] UploadPackV2: processing fetch command
.
16:44:55.637 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.639 [info] UploadPackV2: collected 47 objects, generating pack
.
16:44:55.640 [info] UploadPackV2: pack generated, 2848 bytes
.
16:44:55.640 [info] UploadPackV2: fetch response 2870 bytes
.
16:44:55.650 [info] UploadPackV2: processing fetch command
.
16:44:55.650 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.652 [info] UploadPackV2: collected 43 objects, generating pack
.
16:44:55.653 [info] UploadPackV2: pack generated, 2586 bytes
.
16:44:55.653 [info] UploadPackV2: fetch response 2608 bytes
.
16:44:55.660 [info] UploadPackV2: processing fetch command
.
16:44:55.660 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.662 [info] UploadPackV2: collected 23 objects, generating pack
.
16:44:55.662 [info] UploadPackV2: pack generated, 1385 bytes
.
16:44:55.662 [info] UploadPackV2: fetch response 1407 bytes
.
16:44:55.666 [info] UploadPackV2: processing fetch command
.
16:44:55.666 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.667 [info] UploadPackV2: collected 8 objects, generating pack
.
16:44:55.667 [info] UploadPackV2: pack generated, 482 bytes
16:44:55.667 [info] UploadPackV2: fetch response 504 bytes
16:44:55.671 [info] UploadPackV2: processing fetch command
16:44:55.671 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.674 [info] UploadPackV2: collected 54 objects, generating pack
16:44:55.675 [info] UploadPackV2: pack generated, 3298 bytes
16:44:55.675 [info] UploadPackV2: fetch response 3320 bytes
16:44:55.682 [info] UploadPackV2: processing fetch command
16:44:55.682 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.682 [info] UploadPackV2: collected 8 objects, generating pack
16:44:55.683 [info] UploadPackV2: pack generated, 482 bytes
16:44:55.683 [info] UploadPackV2: fetch response 504 bytes
16:44:55.684 [info] UploadPackV2: processing fetch command
16:44:55.685 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.685 [info] UploadPackV2: collected 11 objects, generating pack
16:44:55.686 [info] UploadPackV2: pack generated, 714 bytes
16:44:55.686 [info] UploadPackV2: fetch response 736 bytes
16:44:55.690 [info] UploadPackV2: processing fetch command
16:44:55.690 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.690 [info] UploadPackV2: collected 16 objects, generating pack
16:44:55.691 [info] UploadPackV2: pack generated, 962 bytes
16:44:55.691 [info] UploadPackV2: fetch response 984 bytes
16:44:55.694 [info] UploadPackV2: processing fetch command
16:44:55.694 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.695 [info] UploadPackV2: collected 28 objects, generating pack
16:44:55.696 [info] UploadPackV2: pack generated, 1652 bytes
16:44:55.696 [info] UploadPackV2: fetch response 1674 bytes
16:44:55.703 [info] UploadPackV2: processing fetch command
16:44:55.703 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.705 [info] UploadPackV2: collected 66 objects, generating pack
16:44:55.706 [info] UploadPackV2: pack generated, 4016 bytes
16:44:55.706 [info] UploadPackV2: fetch response 4038 bytes
16:44:55.715 [info] UploadPackV2: processing fetch command
16:44:55.715 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.716 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.716 [info] UploadPackV2: pack generated, 958 bytes
16:44:55.716 [info] UploadPackV2: fetch response 980 bytes
16:44:55.719 [info] UploadPackV2: processing fetch command
16:44:55.719 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.720 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.720 [info] UploadPackV2: pack generated, 956 bytes
16:44:55.720 [info] UploadPackV2: fetch response 978 bytes
16:44:55.724 [info] UploadPackV2: processing fetch command
16:44:55.724 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.725 [info] UploadPackV2: collected 27 objects, generating pack
16:44:55.725 [info] UploadPackV2: pack generated, 1622 bytes
16:44:55.725 [info] UploadPackV2: fetch response 1644 bytes
16:44:55.730 [info] UploadPackV2: processing fetch command
16:44:55.730 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.731 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.731 [info] UploadPackV2: pack generated, 958 bytes
16:44:55.731 [info] UploadPackV2: fetch response 980 bytes
16:44:55.734 [info] UploadPackV2: processing fetch command
16:44:55.734 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.735 [info] UploadPackV2: collected 11 objects, generating pack
16:44:55.735 [info] UploadPackV2: pack generated, 714 bytes
16:44:55.735 [info] UploadPackV2: fetch response 736 bytes
.
16:44:55.737 [info] UploadPackV2: processing fetch command
16:44:55.737 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.737 [info] UploadPackV2: collected 8 objects, generating pack
16:44:55.738 [info] UploadPackV2: pack generated, 482 bytes
16:44:55.738 [info] UploadPackV2: fetch response 504 bytes
16:44:55.739 [info] UploadPackV2: processing fetch command
16:44:55.739 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.740 [info] UploadPackV2: collected 8 objects, generating pack
16:44:55.740 [info] UploadPackV2: pack generated, 482 bytes
16:44:55.740 [info] UploadPackV2: fetch response 504 bytes
16:44:55.742 [info] UploadPackV2: processing fetch command
16:44:55.743 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.743 [info] UploadPackV2: collected 16 objects, generating pack
16:44:55.743 [info] UploadPackV2: pack generated, 962 bytes
16:44:55.744 [info] UploadPackV2: fetch response 984 bytes
.
16:44:55.747 [info] UploadPackV2: processing fetch command
.
16:44:55.747 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.748 [info] UploadPackV2: collected 27 objects, generating pack
16:44:55.749 [info] UploadPackV2: pack generated, 1676 bytes
16:44:55.749 [info] UploadPackV2: fetch response 1698 bytes
16:44:55.755 [info] UploadPackV2: processing fetch command
16:44:55.755 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.756 [info] UploadPackV2: collected 50 objects, generating pack
16:44:55.758 [info] UploadPackV2: pack generated, 3060 bytes
16:44:55.758 [info] UploadPackV2: fetch response 3082 bytes
16:44:55.765 [info] UploadPackV2: processing fetch command
16:44:55.765 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.766 [info] UploadPackV2: collected 30 objects, generating pack
16:44:55.767 [info] UploadPackV2: pack generated, 1859 bytes
16:44:55.767 [info] UploadPackV2: fetch response 1881 bytes
16:44:55.772 [info] UploadPackV2: processing fetch command
.
16:44:55.773 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.774 [info] UploadPackV2: collected 23 objects, generating pack
.
16:44:55.774 [info] UploadPackV2: pack generated, 1437 bytes
.
16:44:55.774 [info] UploadPackV2: fetch response 1459 bytes
.
16:44:55.779 [info] UploadPackV2: processing fetch command
.
16:44:55.779 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.780 [info] UploadPackV2: collected 32 objects, generating pack
.
16:44:55.780 [info] UploadPackV2: pack generated, 1893 bytes
.
16:44:55.781 [info] UploadPackV2: fetch response 1915 bytes
.
16:44:55.785 [info] UploadPackV2: processing fetch command
.
16:44:55.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.786 [info] UploadPackV2: collected 20 objects, generating pack
.
16:44:55.787 [info] UploadPackV2: pack generated, 1203 bytes
.
16:44:55.787 [info] UploadPackV2: fetch response 1225 bytes
16:44:55.792 [info] UploadPackV2: processing fetch command
16:44:55.792 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.794 [info] UploadPackV2: collected 52 objects, generating pack
16:44:55.795 [info] UploadPackV2: pack generated, 3063 bytes
16:44:55.795 [info] UploadPackV2: fetch response 3085 bytes
16:44:55.802 [info] UploadPackV2: processing fetch command
16:44:55.803 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.803 [info] UploadPackV2: collected 19 objects, generating pack
16:44:55.804 [info] UploadPackV2: pack generated, 1194 bytes
16:44:55.804 [info] UploadPackV2: fetch response 1216 bytes
16:44:55.807 [info] UploadPackV2: processing fetch command
16:44:55.807 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.808 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.809 [info] UploadPackV2: pack generated, 907 bytes
16:44:55.809 [info] UploadPackV2: fetch response 929 bytes
.
16:44:55.812 [info] UploadPackV2: processing fetch command
16:44:55.812 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.813 [info] UploadPackV2: collected 23 objects, generating pack
.
16:44:55.814 [info] UploadPackV2: pack generated, 1407 bytes
.
16:44:55.814 [info] UploadPackV2: fetch response 1429 bytes
.
16:44:55.818 [info] UploadPackV2: processing fetch command
.
16:44:55.818 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.818 [info] UploadPackV2: collected 8 objects, generating pack
.
16:44:55.818 [info] UploadPackV2: pack generated, 482 bytes
.
16:44:55.818 [info] UploadPackV2: fetch response 504 bytes
.
16:44:55.823 [info] UploadPackV2: processing fetch command
.
16:44:55.823 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.823 [info] UploadPackV2: collected 12 objects, generating pack
.
16:44:55.824 [info] UploadPackV2: pack generated, 723 bytes
.
16:44:55.824 [info] UploadPackV2: fetch response 745 bytes
.
16:44:55.826 [info] UploadPackV2: processing fetch command
.
16:44:55.827 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.827 [info] UploadPackV2: collected 8 objects, generating pack
.
16:44:55.827 [info] UploadPackV2: pack generated, 482 bytes
.
16:44:55.827 [info] UploadPackV2: fetch response 504 bytes
.
16:44:55.831 [info] UploadPackV2: processing fetch command
.
16:44:55.831 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.832 [info] UploadPackV2: collected 40 objects, generating pack
.
16:44:55.835 [info] UploadPackV2: pack generated, 2342 bytes
.
16:44:55.835 [info] UploadPackV2: fetch response 2364 bytes
.
16:44:55.840 [info] UploadPackV2: processing fetch command
.
16:44:55.840 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:55.841 [info] UploadPackV2: collected 12 objects, generating pack
16:44:55.841 [info] UploadPackV2: pack generated, 723 bytes
16:44:55.841 [info] UploadPackV2: fetch response 745 bytes
16:44:55.846 [info] UploadPackV2: processing fetch command
16:44:55.846 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.848 [info] UploadPackV2: collected 47 objects, generating pack
16:44:55.849 [info] UploadPackV2: pack generated, 2817 bytes
16:44:55.849 [info] UploadPackV2: fetch response 2839 bytes
16:44:55.855 [info] UploadPackV2: processing fetch command
16:44:55.855 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.855 [info] UploadPackV2: collected 4 objects, generating pack
16:44:55.856 [info] UploadPackV2: pack generated, 241 bytes
16:44:55.856 [info] UploadPackV2: fetch response 263 bytes
16:44:55.858 [info] UploadPackV2: processing fetch command
16:44:55.858 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.859 [info] UploadPackV2: collected 12 objects, generating pack
16:44:55.860 [info] UploadPackV2: pack generated, 723 bytes
16:44:55.860 [info] UploadPackV2: fetch response 745 bytes
16:44:55.863 [info] UploadPackV2: processing fetch command
16:44:55.863 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.864 [info] UploadPackV2: collected 20 objects, generating pack
16:44:55.864 [info] UploadPackV2: pack generated, 1203 bytes
16:44:55.864 [info] UploadPackV2: fetch response 1225 bytes
16:44:55.868 [info] UploadPackV2: processing fetch command
16:44:55.869 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.870 [info] UploadPackV2: collected 19 objects, generating pack
16:44:55.871 [info] UploadPackV2: pack generated, 1194 bytes
16:44:55.871 [info] UploadPackV2: fetch response 1216 bytes
16:44:55.874 [info] UploadPackV2: processing fetch command
16:44:55.875 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.875 [info] UploadPackV2: collected 26 objects, generating pack
16:44:55.876 [info] UploadPackV2: pack generated, 1618 bytes
16:44:55.876 [info] UploadPackV2: fetch response 1640 bytes
16:44:55.880 [info] UploadPackV2: processing fetch command
16:44:55.880 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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)
16:44:55.880 [info] UploadPackV2: collected 23 objects, generating pack
16:44:55.881 [info] UploadPackV2: pack generated, 1435 bytes
16:44:55.881 [info] UploadPackV2: fetch response 1457 bytes
16:44:57.837 [notice] Handler :default switched from :drop to :sync mode
16:44:55.884 [info] UploadPackV2: processing fetch command
16:44:55.885 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.885 [info] UploadPackV2: collected 4 objects, generating pack
16:44:55.885 [info] UploadPackV2: pack generated, 241 bytes
16:44:55.885 [info] UploadPackV2: fetch response 263 bytes
16:44:55.888 [info] UploadPackV2: processing fetch command
16:44:55.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.889 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.889 [info] UploadPackV2: pack generated, 958 bytes
16:44:55.890 [info] UploadPackV2: fetch response 980 bytes
16:44:55.893 [info] UploadPackV2: processing fetch command
16:44:55.893 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.894 [info] UploadPackV2: collected 24 objects, generating pack
16:44:55.894 [info] UploadPackV2: pack generated, 1443 bytes
16:44:55.894 [info] UploadPackV2: fetch response 1465 bytes
16:44:55.898 [info] UploadPackV2: processing fetch command
16:44:55.898 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.898 [info] UploadPackV2: collected 4 objects, generating pack
16:44:55.898 [info] UploadPackV2: pack generated, 241 bytes
16:44:55.898 [info] UploadPackV2: fetch response 263 bytes
16:44:55.900 [info] UploadPackV2: processing fetch command
16:44:55.900 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.901 [info] UploadPackV2: collected 24 objects, generating pack
16:44:55.901 [info] UploadPackV2: pack generated, 1443 bytes
16:44:55.901 [info] UploadPackV2: fetch response 1465 bytes
16:44:55.905 [info] UploadPackV2: processing fetch command
16:44:55.905 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.906 [info] UploadPackV2: collected 23 objects, generating pack
16:44:55.906 [info] UploadPackV2: pack generated, 1435 bytes
16:44:55.906 [info] UploadPackV2: fetch response 1457 bytes
16:44:55.911 [info] UploadPackV2: processing fetch command
16:44:55.911 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.912 [info] UploadPackV2: collected 34 objects, generating pack
16:44:55.913 [info] UploadPackV2: pack generated, 2098 bytes
16:44:55.913 [info] UploadPackV2: fetch response 2120 bytes
16:44:55.919 [info] UploadPackV2: processing fetch command
16:44:55.919 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.919 [info] UploadPackV2: collected 12 objects, generating pack
16:44:55.920 [info] UploadPackV2: pack generated, 690 bytes
16:44:55.920 [info] UploadPackV2: fetch response 712 bytes
16:44:55.924 [info] UploadPackV2: processing fetch command
16:44:55.925 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.925 [info] UploadPackV2: collected 15 objects, generating pack
16:44:55.926 [info] UploadPackV2: pack generated, 956 bytes
16:44:55.926 [info] UploadPackV2: fetch response 978 bytes
16:44:55.929 [info] UploadPackV2: processing fetch command
16:44:55.929 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.929 [info] UploadPackV2: collected 4 objects, generating pack
16:44:55.929 [info] UploadPackV2: pack generated, 241 bytes
16:44:55.930 [info] UploadPackV2: fetch response 263 bytes
16:44:55.932 [info] UploadPackV2: processing fetch command
16:44:55.932 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.933 [info] UploadPackV2: collected 26 objects, generating pack
16:44:55.933 [info] UploadPackV2: pack generated, 1618 bytes
16:44:55.933 [info] UploadPackV2: fetch response 1640 bytes
16:44:55.938 [info] UploadPackV2: processing fetch command
16:44:55.938 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.938 [info] UploadPackV2: collected 4 objects, generating pack
16:44:55.939 [info] UploadPackV2: pack generated, 241 bytes
16:44:55.939 [info] UploadPackV2: fetch response 263 bytes
16:44:55.940 [info] UploadPackV2: processing fetch command
16:44:55.940 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.941 [info] UploadPackV2: collected 8 objects, generating pack
16:44:55.941 [info] UploadPackV2: pack generated, 482 bytes
16:44:55.941 [info] UploadPackV2: fetch response 504 bytes
16:44:55.943 [info] UploadPackV2: processing fetch command
16:44:55.943 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.943 [info] UploadPackV2: collected 16 objects, generating pack
16:44:55.944 [info] UploadPackV2: pack generated, 962 bytes
16:44:55.944 [info] UploadPackV2: fetch response 984 bytes
16:44:55.948 [info] UploadPackV2: processing fetch command
16:44:55.948 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.949 [info] UploadPackV2: collected 47 objects, generating pack
16:44:55.950 [info] UploadPackV2: pack generated, 2826 bytes
16:44:55.951 [info] UploadPackV2: fetch response 2848 bytes
16:44:55.958 [info] UploadPackV2: processing fetch command
16:44:55.958 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.959 [info] UploadPackV2: collected 23 objects, generating pack
16:44:55.962 [info] UploadPackV2: pack generated, 1437 bytes
16:44:55.962 [info] UploadPackV2: fetch response 1459 bytes
16:44:55.967 [info] UploadPackV2: processing fetch command
16:44:55.967 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.968 [info] UploadPackV2: collected 27 objects, generating pack
16:44:55.970 [info] UploadPackV2: pack generated, 1626 bytes
16:44:55.970 [info] UploadPackV2: fetch response 1648 bytes
16:44:55.979 [info] UploadPackV2: processing fetch command
16:44:55.979 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.980 [info] UploadPackV2: collected 58 objects, generating pack
16:44:55.982 [info] UploadPackV2: pack generated, 3533 bytes
16:44:55.982 [info] UploadPackV2: fetch response 3555 bytes
.
16:44:55.990 [info] UploadPackV2: processing fetch command
16:44:55.990 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.991 [info] UploadPackV2: collected 32 objects, generating pack
16:44:55.992 [info] UploadPackV2: pack generated, 1891 bytes
16:44:55.992 [info] UploadPackV2: fetch response 1913 bytes
16:44:55.997 [info] UploadPackV2: processing fetch command
16:44:55.997 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:55.998 [info] UploadPackV2: collected 35 objects, generating pack
16:44:55.999 [info] UploadPackV2: pack generated, 2124 bytes
16:44:55.999 [info] UploadPackV2: fetch response 2146 bytes
16:44:56.005 [info] UploadPackV2: processing fetch command
16:44:56.005 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.007 [info] UploadPackV2: collected 35 objects, generating pack
16:44:56.007 [info] UploadPackV2: pack generated, 2125 bytes
16:44:56.007 [info] UploadPackV2: fetch response 2147 bytes
16:44:56.014 [info] UploadPackV2: processing fetch command
16:44:56.014 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.015 [info] UploadPackV2: collected 34 objects, generating pack
16:44:56.015 [info] UploadPackV2: pack generated, 2099 bytes
16:44:56.015 [info] UploadPackV2: fetch response 2121 bytes
16:44:56.022 [info] UploadPackV2: processing fetch command
16:44:56.022 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.023 [info] UploadPackV2: collected 35 objects, generating pack
16:44:56.023 [info] UploadPackV2: pack generated, 2124 bytes
16:44:56.024 [info] UploadPackV2: fetch response 2146 bytes
16:44:56.028 [info] UploadPackV2: processing fetch command
16:44:56.028 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.029 [info] UploadPackV2: collected 11 objects, generating pack
16:44:56.029 [info] UploadPackV2: pack generated, 717 bytes
16:44:56.029 [info] UploadPackV2: fetch response 739 bytes
16:44:56.032 [info] UploadPackV2: processing fetch command
16:44:56.032 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.034 [info] UploadPackV2: collected 42 objects, generating pack
16:44:56.035 [info] UploadPackV2: pack generated, 2582 bytes
16:44:56.035 [info] UploadPackV2: fetch response 2604 bytes
16:44:56.040 [info] UploadPackV2: processing fetch command
16:44:56.040 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.040 [info] UploadPackV2: collected 8 objects, generating pack
16:44:56.040 [info] UploadPackV2: pack generated, 482 bytes
16:44:56.040 [info] UploadPackV2: fetch response 504 bytes
16:44:56.042 [info] UploadPackV2: processing fetch command
16:44:56.042 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.043 [info] UploadPackV2: collected 7 objects, generating pack
16:44:56.043 [info] UploadPackV2: pack generated, 475 bytes
16:44:56.043 [info] UploadPackV2: fetch response 497 bytes
16:44:56.046 [info] UploadPackV2: processing fetch command
16:44:56.046 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.047 [info] UploadPackV2: collected 32 objects, generating pack
16:44:56.047 [info] UploadPackV2: pack generated, 1892 bytes
16:44:56.047 [info] UploadPackV2: fetch response 1914 bytes
16:44:56.053 [info] UploadPackV2: processing fetch command
16:44:56.053 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:56.053 [info] UploadPackV2: collected 15 objects, generating pack
16:44:56.054 [info] UploadPackV2: pack generated, 956 bytes
..
16:44:56.054 [info] UploadPackV2: fetch response 978 bytes
.
16:44:56.056 [info] UploadPackV2: processing fetch command
.
16:44:56.056 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:56.057 [info] UploadPackV2: collected 19 objects, generating pack
.
16:44:56.058 [info] UploadPackV2: pack generated, 1163 bytes
.
16:44:56.058 [info] UploadPackV2: fetch response 1185 bytes
.
16:44:56.061 [info] UploadPackV2: processing fetch command
.
16:44:56.061 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:56.062 [info] UploadPackV2: collected 24 objects, generating pack
.
16:44:56.062 [info] UploadPackV2: pack generated, 1443 bytes
.
16:44:56.062 [info] UploadPackV2: fetch response 1465 bytes
16:44:56.065 [info] UploadPackV2: processing fetch command
16:44:56.065 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.066 [info] UploadPackV2: collected 7 objects, generating pack
16:44:56.066 [info] UploadPackV2: pack generated, 475 bytes
16:44:56.066 [info] UploadPackV2: fetch response 497 bytes
16:44:56.073 [info] UploadPackV2: processing fetch command
16:44:56.073 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.074 [info] UploadPackV2: collected 19 objects, generating pack
16:44:56.074 [info] UploadPackV2: pack generated, 1196 bytes
16:44:56.075 [info] UploadPackV2: fetch response 1218 bytes
16:44:56.078 [info] UploadPackV2: processing fetch command
16:44:56.078 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.079 [info] UploadPackV2: collected 23 objects, generating pack
16:44:56.080 [info] UploadPackV2: pack generated, 1437 bytes
16:44:56.080 [info] UploadPackV2: fetch response 1459 bytes
16:44:56.084 [info] UploadPackV2: processing fetch command
16:44:56.084 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.085 [info] UploadPackV2: collected 20 objects, generating pack
16:44:56.086 [info] UploadPackV2: pack generated, 1203 bytes
16:44:56.086 [info] UploadPackV2: fetch response 1225 bytes
16:44:56.090 [info] UploadPackV2: processing fetch command
16:44:56.090 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.092 [info] UploadPackV2: collected 30 objects, generating pack
16:44:56.092 [info] UploadPackV2: pack generated, 1854 bytes
16:44:56.093 [info] UploadPackV2: fetch response 1876 bytes
16:44:56.099 [info] UploadPackV2: processing fetch command
16:44:56.099 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.100 [info] UploadPackV2: collected 27 objects, generating pack
16:44:56.101 [info] UploadPackV2: pack generated, 1676 bytes
16:44:56.101 [info] UploadPackV2: fetch response 1698 bytes
16:44:56.106 [info] UploadPackV2: processing fetch command
16:44:56.106 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:44:56.107 [info] UploadPackV2: collected 27 objects, generating pack
16:44:56.108 [info] UploadPackV2: pack generated, 1676 bytes
16:44:56.108 [info] UploadPackV2: fetch response 1698 bytes
...
16:44:56.113 [info] UploadPackV2: processing fetch command
.
16:44:56.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:56.114 [info] UploadPackV2: collected 12 objects, generating pack
.
16:44:56.114 [info] UploadPackV2: pack generated, 723 bytes
.
16:44:56.114 [info] UploadPackV2: fetch response 745 bytes
.
16:44:56.117 [info] UploadPackV2: processing fetch command
.
16:44:56.118 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:44:56.118 [info] UploadPackV2: collected 15 objects, generating pack
.
16:44:56.119 [info] UploadPackV2: pack generated, 903 bytes
.
16:44:56.119 [info] UploadPackV2: fetch response 925 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: 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 "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:63:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
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: 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
......................................................................................................................................................................
16:45:05.063 [info] The function passed as a handler with ID "test-#Reference<0.2727013456.1454112771.65706>" 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
..
16:45:05.068 [info] The function passed as a handler with ID "test-fail-#Reference<0.2727013456.1454112771.65748>" 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: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
..............................................................
16:45:05.248 [info] UploadPackV2: processing fetch command
16:45:05.248 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.286 [info] UploadPackV2: collected 600 objects, generating pack
16:45:05.298 [info] UploadPackV2: pack generated, 39862 bytes
16:45:05.299 [info] UploadPackV2: fetch response 39884 bytes
..
16:45:05.418 [info] UploadPackV2: processing fetch command
16:45:05.418 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.444 [info] UploadPackV2: collected 700 objects, generating pack
16:45:05.456 [info] UploadPackV2: pack generated, 48139 bytes
16:45:05.457 [info] UploadPackV2: fetch response 48161 bytes
.
16:45:05.531 [info] UploadPackV2: processing fetch command
.
16:45:05.531 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:45:05.531 [info] UploadPackV2: collected 3 objects, streaming pack
.
16:45:05.531 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
16:45:05.531 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
16:45:05.532 [info] UploadPackV2: processing ls-refs command
16:45:05.533 [info] UploadPackV2: processing fetch command
16:45:05.533 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:45:05.534 [info] UploadPackV2: collected 3 objects, generating pack
.
16:45:05.534 [info] UploadPackV2: pack generated, 195 bytes
16:45:05.534 [info] UploadPackV2: fetch response 217 bytes
.
16:45:05.649 [info] UploadPackV2: processing fetch command
16:45:05.649 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.657 [info] UploadPackV2: collected 32 objects, streaming pack
16:45:05.770 [info] UploadPackV2: streamed pack 2459751 bytes, 32 objects
16:45:05.770 [info] UploadPackV2: fetch streamed 2459751 pack bytes, 32 objects
.......
16:45:05.889 [info] UploadPackV2: processing fetch command
16:45:05.889 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.895 [info] UploadPackV2: collected 90 objects, generating pack
16:45:05.897 [info] UploadPackV2: pack generated, 5946 bytes
16:45:05.897 [info] UploadPackV2: fetch response 5968 bytes
...
16:45:05.935 [info] UploadPackV2: processing ls-refs command
16:45:05.935 [info] UploadPackV2: processing fetch command
16:45:05.935 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.936 [info] UploadPackV2: collected 3 objects, generating pack
16:45:05.936 [info] UploadPackV2: pack generated, 210 bytes
16:45:05.938 [info] UploadPackV2: fetch response 232 bytes
..
16:45:05.977 [info] UploadPackV2: processing fetch command
16:45:05.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.978 [info] UploadPackV2: collected 9 objects, streaming pack
16:45:05.981 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
16:45:05.981 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
16:45:05.986 [info] UploadPackV2: processing fetch command
.
16:45:05.986 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.987 [info] UploadPackV2: collected 15 objects, generating pack
16:45:05.987 [info] UploadPackV2: pack generated, 984 bytes
16:45:05.988 [info] UploadPackV2: fetch response 1006 bytes
..
16:45:05.991 [info] UploadPackV2: processing fetch command
.
16:45:05.991 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.992 [info] UploadPackV2: collected 6 objects, generating pack
16:45:05.993 [info] UploadPackV2: pack generated, 414 bytes
16:45:05.993 [info] UploadPackV2: fetch response 436 bytes
16:45:05.995 [info] UploadPackV2: processing fetch command
16:45:05.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:05.995 [info] UploadPackV2: collected 3 objects, generating pack
16:45:05.995 [info] UploadPackV2: pack generated, 195 bytes
16:45:05.995 [info] UploadPackV2: fetch response 217 bytes
16:45:05.995 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
16:45:06.139 [info] UploadPackV2: processing fetch command
16:45:06.139 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.150 [info] UploadPackV2: collected 32 objects, generating pack
.
16:45:06.279 [info] UploadPackV2: pack generated, 2459819 bytes
16:45:06.283 [info] UploadPackV2: fetch response 2460026 bytes
16:45:06.284 [info] UploadPackV2: processing fetch command
16:45:06.284 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.291 [info] UploadPackV2: collected 32 objects, streaming pack
.
16:45:06.404 [info] UploadPackV2: streamed pack 2459819 bytes, 32 objects
16:45:06.405 [info] UploadPackV2: fetch streamed 2459819 pack bytes, 32 objects
..
16:45:06.410 [info] UploadPackV2: processing fetch command
.
16:45:06.410 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:45:06.410 [info] UploadPackV2: collected 3 objects, generating pack
.
16:45:06.410 [info] UploadPackV2: pack generated, 191 bytes
16:45:06.410 [info] UploadPackV2: fetch response 213 bytes
16:45:06.411 [info] UploadPackV2: processing fetch command
16:45:06.411 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.411 [info] UploadPackV2: collected 3 objects, generating pack
16:45:06.411 [info] UploadPackV2: pack generated, 194 bytes
16:45:06.411 [info] UploadPackV2: fetch response 216 bytes
16:45:06.412 [info] UploadPackV2: processing fetch command
16:45:06.412 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.412 [info] UploadPackV2: collected 0 objects, generating pack
16:45:06.412 [info] UploadPackV2: pack generated, 32 bytes
16:45:06.412 [info] UploadPackV2: fetch response 54 bytes
16:45:06.413 [info] UploadPackV2: processing fetch command
16:45:06.413 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:45:06.413 [info] UploadPackV2: fetch response 73 bytes
16:45:06.413 [info] UploadPackV2: processing fetch command
16:45:06.413 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:45:06.414 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
16:45:06.415 [info] UploadPackV2: processing ls-refs command
16:45:06.422 [info] UploadPackV2: processing fetch command
16:45:06.423 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:45:06.423 [info] UploadPackV2: collected 3 objects, generating pack
16:45:06.423 [info] UploadPackV2: pack generated, 206 bytes
16:45:06.423 [info] UploadPackV2: fetch response 228 bytes
16:45:06.426 [info] UploadPackV2: processing fetch command
16:45:06.426 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.427 [info] UploadPackV2: collected 15 objects, generating pack
16:45:06.428 [info] UploadPackV2: pack generated, 984 bytes
16:45:06.428 [info] UploadPackV2: fetch response 1006 bytes
16:45:06.428 [info] UploadPackV2: processing fetch command
16:45:06.428 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.432 [info] UploadPackV2: collected 15 objects, streaming pack
16:45:06.434 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
16:45:06.434 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
16:45:06.434 [info] UploadPackV2: processing ls-refs command
.
16:45:06.435 [info] UploadPackV2: processing ls-refs command
16:45:06.436 [info] UploadPackV2: processing fetch command
16:45:06.436 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.436 [info] UploadPackV2: collected 3 objects, generating pack
16:45:06.436 [info] UploadPackV2: pack generated, 191 bytes
16:45:06.436 [info] UploadPackV2: fetch response 213 bytes
16:45:06.442 [info] UploadPackV2: processing fetch command
16:45:06.442 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.442 [info] UploadPackV2: collected 3 objects, streaming pack
16:45:06.447 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
16:45:06.447 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
16:45:06.450 [info] UploadPackV2: processing fetch command
.
16:45:06.450 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
16:45:06.450 [info] UploadPackV2: collected 3 objects, generating pack
.
16:45:06.450 [info] UploadPackV2: pack generated, 191 bytes
16:45:06.451 [info] UploadPackV2: fetch response 213 bytes
16:45:06.451 [info] UploadPackV2: processing ls-refs command
16:45:06.452 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
16:45:06.453 [info] UploadPackV2: processing fetch command
16:45:06.453 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:06.454 [info] UploadPackV2: collected 3 objects, generating pack
16:45:06.454 [info] UploadPackV2: pack generated, 223 bytes
16:45:06.454 [info] UploadPackV2: fetch response 245 bytes
................................................................................................................................................................................................................
16:45:20.602 [info] The function passed as a handler with ID "graph-query-test-15810" 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
.
16:45:20.605 [info] The function passed as a handler with ID "graph-query-test-8643" 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
......
16:45:20.617 [info] The function passed as a handler with ID "graph-query-test-17348" 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
.
16:45:20.689 [info] UploadPackV2: processing ls-refs command
16:45:20.690 [info] UploadPackV2: processing fetch command
16:45:20.690 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:45:20.691 [info] UploadPackV2: collected 3 objects, generating pack
16:45:20.691 [info] UploadPackV2: pack generated, 216 bytes
16:45:20.691 [info] UploadPackV2: fetch response 346 bytes
.
16:45:20.698 [info] UploadPackV2: processing fetch command
16:45:20.698 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:20.698 [info] UploadPackV2: collected 3 objects, generating pack
16:45:20.698 [info] UploadPackV2: pack generated, 183 bytes
.
16:45:20.698 [info] UploadPackV2: fetch response 205 bytes
16:45:20.753 [info] UploadPackV2: processing ls-refs command
16:45:20.755 [info] UploadPackV2: processing fetch command
16:45:20.755 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:20.755 [info] UploadPackV2: collected 6 objects, generating pack
16:45:20.755 [info] UploadPackV2: pack generated, 366 bytes
16:45:20.756 [info] UploadPackV2: fetch response 388 bytes
16:45:20.825 [info] UploadPackV2: processing ls-refs command
16:45:20.826 [info] UploadPackV2: processing fetch command
16:45:20.826 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
16:45:20.826 [info] UploadPackV2: fetch response 32 bytes
16:45:20.827 [info] UploadPackV2: processing fetch command
16:45:20.827 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:20.827 [info] UploadPackV2: collected 3 objects, generating pack
16:45:20.827 [info] UploadPackV2: pack generated, 183 bytes
16:45:20.827 [info] UploadPackV2: fetch response 205 bytes
.
16:45:20.889 [info] UploadPackV2: processing ls-refs command
16:45:20.891 [info] UploadPackV2: processing fetch command
16:45:20.891 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:20.891 [info] UploadPackV2: collected 6 objects, generating pack
16:45:20.892 [info] UploadPackV2: pack generated, 365 bytes
16:45:20.892 [info] UploadPackV2: fetch response 387 bytes
16:45:20.908 [info] UploadPackV2: processing fetch command
16:45:20.909 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
16:45:20.909 [info] UploadPackV2: fetch response 122 bytes
.
16:45:21.045 [info] UploadPackV2: processing ls-refs command
16:45:21.047 [info] UploadPackV2: processing fetch command
16:45:21.047 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:21.047 [info] UploadPackV2: collected 6 objects, generating pack
16:45:21.047 [info] UploadPackV2: pack generated, 365 bytes
16:45:21.048 [info] UploadPackV2: fetch response 387 bytes
16:45:34.449 [info] UploadPackV2: processing ls-refs command
.
16:45:34.525 [info] UploadPackV2: processing ls-refs command
16:45:34.583 [info] UploadPackV2: processing fetch command
16:45:34.583 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:34.584 [info] UploadPackV2: collected 6 objects, generating pack
16:45:34.584 [info] UploadPackV2: pack generated, 365 bytes
16:45:34.584 [info] UploadPackV2: fetch response 387 bytes
.
16:45:49.609 [info] UploadPackV2: processing ls-refs command
16:45:49.611 [info] UploadPackV2: processing fetch command
16:45:49.611 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:49.613 [info] UploadPackV2: collected 90 objects, generating pack
16:45:49.615 [info] UploadPackV2: pack generated, 5649 bytes
16:45:49.615 [info] UploadPackV2: fetch response 5671 bytes
16:45:49.905 [info] UploadPackV2: processing ls-refs command
.
16:45:49.966 [info] UploadPackV2: processing ls-refs command
16:45:49.970 [info] UploadPackV2: processing fetch command
16:45:49.970 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:49.971 [info] UploadPackV2: collected 9 objects, generating pack
16:45:49.971 [info] UploadPackV2: pack generated, 547 bytes
16:45:49.971 [info] UploadPackV2: fetch response 569 bytes
16:45:50.049 [info] UploadPackV2: processing ls-refs command
.
16:45:50.113 [info] UploadPackV2: processing ls-refs command
16:45:50.115 [info] UploadPackV2: processing fetch command
16:45:50.115 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.116 [info] UploadPackV2: collected 6 objects, generating pack
16:45:50.116 [info] UploadPackV2: pack generated, 365 bytes
16:45:50.116 [info] UploadPackV2: fetch response 387 bytes
16:45:50.117 [info] UploadPackV2: processing ls-refs command
16:45:50.119 [info] UploadPackV2: processing fetch command
16:45:50.119 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.120 [info] UploadPackV2: collected 6 objects, generating pack
16:45:50.121 [info] UploadPackV2: pack generated, 365 bytes
16:45:50.121 [info] UploadPackV2: fetch response 387 bytes
.
16:45:50.193 [info] UploadPackV2: processing ls-refs command
16:45:50.195 [info] UploadPackV2: processing fetch command
16:45:50.195 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.196 [info] UploadPackV2: collected 15 objects, generating pack
16:45:50.196 [info] UploadPackV2: pack generated, 952 bytes
16:45:50.197 [info] UploadPackV2: fetch response 974 bytes
.
16:45:50.269 [info] UploadPackV2: processing ls-refs command
16:45:50.271 [info] UploadPackV2: processing fetch command
16:45:50.271 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.271 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.271 [info] UploadPackV2: pack generated, 196 bytes
16:45:50.271 [info] UploadPackV2: fetch response 218 bytes
.
16:45:50.337 [info] UploadPackV2: processing ls-refs command
16:45:50.339 [info] UploadPackV2: processing fetch command
16:45:50.339 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.339 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.339 [info] UploadPackV2: pack generated, 185 bytes
16:45:50.340 [info] UploadPackV2: fetch response 207 bytes
16:45:50.397 [info] UploadPackV2: processing ls-refs command
.
16:45:50.469 [info] UploadPackV2: processing ls-refs command
16:45:50.470 [info] UploadPackV2: processing fetch command
16:45:50.470 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:45:50.471 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.471 [info] UploadPackV2: pack generated, 200 bytes
16:45:50.471 [info] UploadPackV2: fetch response 256 bytes
.
16:45:50.573 [info] UploadPackV2: processing ls-refs command
16:45:50.575 [info] UploadPackV2: processing fetch command
16:45:50.575 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.598 [info] UploadPackV2: collected 600 objects, generating pack
16:45:50.617 [info] UploadPackV2: pack generated, 45197 bytes
16:45:50.617 [info] UploadPackV2: fetch response 45219 bytes
.
16:45:50.653 [info] UploadPackV2: processing fetch command
16:45:50.653 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.653 [info] UploadPackV2: collected 0 objects, generating pack
16:45:50.653 [info] UploadPackV2: pack generated, 32 bytes
16:45:50.654 [info] UploadPackV2: fetch response 54 bytes
.
16:45:50.917 [info] UploadPackV2: processing ls-refs command
16:45:50.919 [info] UploadPackV2: processing fetch command
16:45:50.919 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.925 [info] UploadPackV2: collected 240 objects, generating pack
16:45:50.929 [info] UploadPackV2: pack generated, 16258 bytes
16:45:50.929 [info] UploadPackV2: fetch response 16280 bytes
.
16:45:50.993 [info] UploadPackV2: processing ls-refs command
.
16:45:50.995 [info] UploadPackV2: processing fetch command
16:45:50.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.996 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.996 [info] UploadPackV2: pack generated, 183 bytes
16:45:50.996 [info] UploadPackV2: fetch response 205 bytes
16:45:50.996 [info] UploadPackV2: processing fetch command
16:45:50.996 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.997 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.997 [info] UploadPackV2: pack generated, 183 bytes
16:45:50.997 [info] UploadPackV2: fetch response 205 bytes
16:45:50.997 [info] UploadPackV2: processing fetch command
16:45:50.997 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.998 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.998 [info] UploadPackV2: pack generated, 183 bytes
16:45:50.998 [info] UploadPackV2: fetch response 205 bytes
16:45:50.998 [info] UploadPackV2: processing fetch command
16:45:50.998 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.998 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.999 [info] UploadPackV2: pack generated, 183 bytes
16:45:50.999 [info] UploadPackV2: fetch response 205 bytes
16:45:50.999 [info] UploadPackV2: processing fetch command
16:45:50.999 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.999 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.999 [info] UploadPackV2: pack generated, 183 bytes
16:45:50.999 [info] UploadPackV2: fetch response 205 bytes
16:45:50.999 [info] UploadPackV2: processing fetch command
16:45:50.999 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:50.999 [info] UploadPackV2: collected 3 objects, generating pack
16:45:50.999 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.000 [info] UploadPackV2: fetch response 205 bytes
16:45:51.000 [info] UploadPackV2: processing fetch command
16:45:51.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.000 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.000 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.000 [info] UploadPackV2: fetch response 205 bytes
16:45:51.000 [info] UploadPackV2: processing fetch command
16:45:51.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.000 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.000 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.000 [info] UploadPackV2: fetch response 205 bytes
16:45:51.000 [info] UploadPackV2: processing fetch command
16:45:51.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.001 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.001 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.001 [info] UploadPackV2: fetch response 205 bytes
16:45:51.002 [info] UploadPackV2: processing fetch command
16:45:51.002 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.002 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.002 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.002 [info] UploadPackV2: fetch response 205 bytes
16:45:51.003 [info] UploadPackV2: processing fetch command
16:45:51.003 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.003 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.003 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.003 [info] UploadPackV2: fetch response 205 bytes
16:45:51.003 [info] UploadPackV2: processing fetch command
16:45:51.003 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.004 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.004 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.004 [info] UploadPackV2: fetch response 205 bytes
16:45:51.004 [info] UploadPackV2: processing fetch command
16:45:51.004 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.005 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.005 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.005 [info] UploadPackV2: fetch response 205 bytes
16:45:51.005 [info] UploadPackV2: processing fetch command
16:45:51.006 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.006 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.006 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.006 [info] UploadPackV2: fetch response 205 bytes
16:45:51.007 [info] UploadPackV2: processing fetch command
16:45:51.007 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.007 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.007 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.008 [info] UploadPackV2: fetch response 205 bytes
16:45:51.008 [info] UploadPackV2: processing fetch command
16:45:51.008 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.008 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.009 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.009 [info] UploadPackV2: fetch response 205 bytes
16:45:51.009 [info] UploadPackV2: processing fetch command
16:45:51.009 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.010 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.010 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.010 [info] UploadPackV2: fetch response 205 bytes
16:45:51.010 [info] UploadPackV2: processing fetch command
16:45:51.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.011 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.011 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.011 [info] UploadPackV2: fetch response 205 bytes
16:45:51.012 [info] UploadPackV2: processing fetch command
16:45:51.012 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.012 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.012 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.012 [info] UploadPackV2: fetch response 205 bytes
16:45:51.013 [info] UploadPackV2: processing fetch command
16:45:51.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.013 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.013 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.013 [info] UploadPackV2: fetch response 205 bytes
16:45:51.013 [info] UploadPackV2: processing fetch command
16:45:51.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.014 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.014 [info] UploadPackV2: pack generated, 183 bytes
16:45:51.014 [info] UploadPackV2: fetch response 205 bytes
.
16:45:51.065 [info] UploadPackV2: processing ls-refs command
.
16:45:51.189 [info] UploadPackV2: processing ls-refs command
16:45:51.191 [info] UploadPackV2: processing fetch command
16:45:51.191 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:45:51.191 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.192 [info] UploadPackV2: pack generated, 231 bytes
16:45:51.192 [info] UploadPackV2: fetch response 327 bytes
..
16:45:51.216 [info] The function passed as a handler with ID "telemetry-test-9027" 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
16:45:51.217 [info] UploadPackV2: processing fetch command
16:45:51.217 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:45:51.218 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.218 [info] UploadPackV2: pack generated, 183 bytes
.
16:45:51.218 [info] UploadPackV2: fetch response 205 bytes
16:45:51.219 [info] The function passed as a handler with ID "telemetry-test-9059" 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
16:45:51.219 [info] UploadPackV2: processing fetch command
16:45:51.220 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:45:51.220 [info] UploadPackV2: collected 3 objects, generating pack
16:45:51.220 [info] UploadPackV2: pack generated, 186 bytes
16:45:51.220 [info] UploadPackV2: fetch response 208 bytes
.
16:45:51.223 [info] The function passed as a handler with ID "telemetry-test-9091" 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
.
16:46:06.294 [info] The function passed as a handler with ID "telemetry-test-9123" 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
16:46:06.295 [info] UploadPackV2: processing fetch command
16:46:06.295 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:46:06.295 [info] UploadPackV2: collected 2 objects, generating pack
16:46:06.296 [info] UploadPackV2: pack generated, 169 bytes
16:46:06.296 [info] UploadPackV2: fetch response 191 bytes
.
16:46:06.341 [info] UploadPackV2: processing ls-refs command
.
16:46:06.401 [info] UploadPackV2: processing ls-refs command
16:46:06.403 [info] UploadPackV2: processing fetch command
16:46:06.403 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:46:06.403 [info] UploadPackV2: collected 3 objects, generating pack
16:46:06.403 [info] UploadPackV2: pack generated, 216 bytes
16:46:06.403 [info] UploadPackV2: fetch response 312 bytes
16:46:06.469 [info] UploadPackV2: processing ls-refs command
16:46:06.470 [info] UploadPackV2: processing fetch command
16:46:06.470 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:46:06.471 [info] UploadPackV2: collected 12 objects, generating pack
16:46:06.471 [info] UploadPackV2: pack generated, 768 bytes
16:46:06.471 [info] UploadPackV2: fetch response 1002 bytes
.
16:46:06.529 [info] UploadPackV2: processing ls-refs command
.
16:46:06.581 [info] UploadPackV2: processing ls-refs command
16:46:06.583 [info] UploadPackV2: processing fetch command
16:46:06.583 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:46:06.583 [info] UploadPackV2: collected 3 objects, generating pack
16:46:06.583 [info] UploadPackV2: pack generated, 216 bytes
16:46:06.583 [info] UploadPackV2: fetch response 312 bytes
.
16:46:06.657 [info] UploadPackV2: processing ls-refs command
16:46:06.660 [info] UploadPackV2: processing fetch command
16:46:06.660 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
16:46:06.662 [info] UploadPackV2: collected 5 objects, generating pack
16:46:06.662 [info] UploadPackV2: pack generated, 319 bytes
16:46:06.662 [info] UploadPackV2: fetch response 341 bytes
.
16:46:06.733 [info] UploadPackV2: processing ls-refs command
16:46:06.735 [info] UploadPackV2: processing fetch command
16:46:06.735 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:46:06.735 [info] UploadPackV2: collected 3 objects, generating pack
16:46:06.735 [info] UploadPackV2: pack generated, 218 bytes
16:46:06.735 [info] UploadPackV2: fetch response 314 bytes
.
16:46:06.809 [info] UploadPackV2: processing ls-refs command
16:46:06.811 [info] UploadPackV2: processing fetch command
16:46:06.811 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:06.812 [info] UploadPackV2: collected 9 objects, generating pack
16:46:06.812 [info] UploadPackV2: pack generated, 549 bytes
16:46:06.812 [info] UploadPackV2: fetch response 571 bytes
16:46:06.828 [info] UploadPackV2: processing fetch command
16:46:06.828 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
16:46:06.829 [info] UploadPackV2: fetch response 171 bytes
.
16:46:06.893 [info] UploadPackV2: processing ls-refs command
16:46:06.896 [info] UploadPackV2: processing fetch command
16:46:06.896 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
16:46:06.897 [info] UploadPackV2: collected 6 objects, generating pack
16:46:06.897 [info] UploadPackV2: pack generated, 513 bytes
16:46:06.897 [info] UploadPackV2: fetch response 535 bytes
.
16:46:06.973 [info] UploadPackV2: processing ls-refs command
..
16:46:07.029 [info] UploadPackV2: processing ls-refs command
16:46:07.032 [info] UploadPackV2: processing fetch command
16:46:07.032 [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
16:46:07.033 [info] UploadPackV2: collected 6 objects, generating pack
16:46:07.033 [info] UploadPackV2: pack generated, 513 bytes
16:46:07.033 [info] UploadPackV2: fetch response 535 bytes
.
16:46:07.109 [info] UploadPackV2: processing ls-refs command
16:46:07.112 [info] UploadPackV2: processing fetch command
16:46:07.112 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
16:46:07.113 [info] UploadPackV2: collected 3 objects, generating pack
16:46:07.113 [info] UploadPackV2: pack generated, 381 bytes
16:46:07.113 [info] UploadPackV2: fetch response 403 bytes
.
16:46:07.185 [info] UploadPackV2: processing ls-refs command
16:46:07.188 [info] UploadPackV2: processing fetch command
16:46:07.188 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
16:46:07.189 [info] UploadPackV2: collected 3 objects, generating pack
16:46:07.189 [info] UploadPackV2: pack generated, 381 bytes
16:46:07.190 [info] UploadPackV2: fetch response 403 bytes
.
16:46:07.261 [info] UploadPackV2: processing ls-refs command
..
16:46:07.321 [info] UploadPackV2: processing ls-refs command
16:46:07.323 [info] UploadPackV2: processing fetch command
16:46:07.323 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
16:46:07.323 [info] UploadPackV2: collected 9 objects, generating pack
16:46:07.324 [info] UploadPackV2: pack generated, 585 bytes
16:46:07.324 [info] UploadPackV2: fetch response 681 bytes
.
16:46:07.341 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303407583" 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
.
16:46:07.342 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303407551" 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
.
16:46:07.342 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303407519" 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
16:46:07.342 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303407487" 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
.
16:46:07.343 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303414334" 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
.
16:46:07.343 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303414302" 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
*
16:46:07.345 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303407455" 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
*
16:46:07.345 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303407423" 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
***********
16:46:07.368 [info] UploadPackV2: processing ls-refs command
16:46:07.371 [info] UploadPackV2: processing fetch command
16:46:07.371 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:07.372 [info] UploadPackV2: collected 15 objects, generating pack
16:46:07.372 [info] UploadPackV2: pack generated, 919 bytes
16:46:07.372 [info] UploadPackV2: fetch response 941 bytes
.
16:46:07.511 [info] UploadPackV2: processing fetch command
16:46:07.512 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:07.512 [info] UploadPackV2: collected 3 objects, generating pack
16:46:07.512 [info] UploadPackV2: pack generated, 183 bytes
16:46:07.512 [info] UploadPackV2: fetch response 205 bytes
.
16:46:07.537 [info] UploadPackV2: processing ls-refs command
16:46:07.540 [info] UploadPackV2: processing fetch command
16:46:07.540 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:07.540 [info] UploadPackV2: collected 3 objects, generating pack
16:46:07.540 [info] UploadPackV2: pack generated, 183 bytes
16:46:07.540 [info] UploadPackV2: fetch response 205 bytes
..
16:46:07.623 [info] UploadPackV2: processing ls-refs command
16:46:07.625 [info] UploadPackV2: processing fetch command
16:46:07.625 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:07.630 [info] UploadPackV2: collected 180 objects, generating pack
16:46:07.633 [info] UploadPackV2: pack generated, 11106 bytes
16:46:07.633 [info] UploadPackV2: fetch response 11128 bytes
.
16:46:07.673 [info] UploadPackV2: processing ls-refs command
16:46:07.676 [info] UploadPackV2: processing fetch command
16:46:07.676 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:07.677 [info] UploadPackV2: collected 9 objects, generating pack
16:46:07.677 [info] UploadPackV2: pack generated, 549 bytes
16:46:07.677 [info] UploadPackV2: fetch response 571 bytes
16:46:07.704 [info] UploadPackV2: processing ls-refs command
.
16:46:07.731 [info] UploadPackV2: processing ls-refs command
16:46:07.733 [info] UploadPackV2: processing fetch command
16:46:07.734 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:07.734 [info] UploadPackV2: collected 6 objects, generating pack
16:46:07.735 [info] UploadPackV2: pack generated, 366 bytes
16:46:07.735 [info] UploadPackV2: fetch response 388 bytes
16:46:07.762 [info] UploadPackV2: processing ls-refs command
....................
16:46:22.909 [info] UploadPackV2: processing ls-refs command
16:46:22.911 [info] UploadPackV2: processing fetch command
16:46:22.911 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:22.912 [info] UploadPackV2: collected 3 objects, generating pack
16:46:22.912 [info] UploadPackV2: pack generated, 196 bytes
16:46:22.912 [info] UploadPackV2: fetch response 218 bytes
.
16:46:22.985 [info] UploadPackV2: processing ls-refs command
16:46:22.987 [info] UploadPackV2: processing fetch command
16:46:22.987 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:22.988 [info] UploadPackV2: collected 3 objects, generating pack
16:46:22.988 [info] UploadPackV2: pack generated, 185 bytes
16:46:22.988 [info] UploadPackV2: fetch response 207 bytes
.
16:46:23.057 [info] UploadPackV2: processing ls-refs command
16:46:23.059 [info] UploadPackV2: processing fetch command
16:46:23.059 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:23.060 [info] UploadPackV2: collected 3 objects, generating pack
16:46:23.060 [info] UploadPackV2: pack generated, 183 bytes
16:46:23.060 [info] UploadPackV2: fetch response 205 bytes
.
16:46:38.185 [info] UploadPackV2: processing ls-refs command
16:46:38.187 [info] UploadPackV2: processing fetch command
16:46:38.187 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:46:38.187 [info] UploadPackV2: collected 6 objects, generating pack
16:46:38.187 [info] UploadPackV2: pack generated, 365 bytes
16:46:38.188 [info] UploadPackV2: fetch response 387 bytes
.....
16:47:38.565 [info] UploadPackV2: processing ls-refs command
16:47:38.567 [info] UploadPackV2: processing fetch command
16:47:38.567 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:47:38.567 [info] UploadPackV2: collected 3 objects, generating pack
16:47:38.567 [info] UploadPackV2: pack generated, 183 bytes
16:47:38.567 [info] UploadPackV2: fetch response 205 bytes
.
16:47:38.685 [info] UploadPackV2: processing ls-refs command
16:47:38.687 [info] UploadPackV2: processing fetch command
16:47:38.687 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:47:38.688 [info] UploadPackV2: collected 3 objects, generating pack
16:47:38.688 [info] UploadPackV2: pack generated, 201 bytes
16:47:38.688 [info] UploadPackV2: fetch response 223 bytes
..
16:48:08.909 [info] UploadPackV2: processing ls-refs command
16:48:08.911 [info] UploadPackV2: processing fetch command
16:48:08.911 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
16:48:08.912 [info] UploadPackV2: collected 6 objects, generating pack
16:48:08.912 [info] UploadPackV2: pack generated, 365 bytes
16:48:08.912 [info] UploadPackV2: fetch response 387 bytes
................*****
Finished in 229.7 seconds (29.9s async, 199.7s sync)
Result: 1039 passed (2 properties, 1037 tests), 18 skipped, 58 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info