ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Cover compiling modules ...
Running ExUnit with seed: 779538, max_cases: 8
Excluding tags: [:s3]
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: 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)
........
15:36:50.957 [info] The function passed as a handler with ID #Reference<0.2667081721.2550398980.211844> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.........
15:36:51.025 [info] The function passed as a handler with ID "test-fail-#Reference<0.2667081721.2550398977.213375>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..........
15:36:51.048 [info] The function passed as a handler with ID "test-#Reference<0.2667081721.2550398977.213495>" 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: 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: 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 "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
..................................................................................................................
15:36:52.083 [info] UploadPackV2: processing fetch command
15:36:52.083 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.084 [info] UploadPackV2: collected 11 objects, generating pack
15:36:52.084 [info] UploadPackV2: pack generated, 853 bytes
15:36:52.084 [info] UploadPackV2: fetch response 875 bytes
15:36:52.098 [info] UploadPackV2: processing fetch command
15:36:52.098 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.099 [info] UploadPackV2: collected 11 objects, generating pack
15:36:52.099 [info] UploadPackV2: pack generated, 853 bytes
15:36:52.100 [info] UploadPackV2: fetch response 875 bytes
15:36:52.104 [info] UploadPackV2: processing fetch command
15:36:52.105 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.105 [info] UploadPackV2: collected 6 objects, generating pack
15:36:52.105 [info] UploadPackV2: pack generated, 428 bytes
15:36:52.105 [info] UploadPackV2: fetch response 450 bytes
15:36:52.109 [info] UploadPackV2: processing fetch command
15:36:52.110 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.111 [info] UploadPackV2: collected 17 objects, generating pack
15:36:52.111 [info] UploadPackV2: pack generated, 1276 bytes
15:36:52.111 [info] UploadPackV2: fetch response 1298 bytes
15:36:52.116 [info] UploadPackV2: processing fetch command
15:36:52.117 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.118 [info] UploadPackV2: collected 8 objects, generating pack
15:36:52.118 [info] UploadPackV2: pack generated, 636 bytes
15:36:52.118 [info] UploadPackV2: fetch response 658 bytes
15:36:52.124 [info] UploadPackV2: processing fetch command
15:36:52.124 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.126 [info] UploadPackV2: collected 46 objects, generating pack
15:36:52.128 [info] UploadPackV2: pack generated, 3357 bytes
15:36:52.128 [info] UploadPackV2: fetch response 3379 bytes
15:36:52.141 [info] UploadPackV2: processing fetch command
15:36:52.141 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.143 [info] UploadPackV2: collected 14 objects, generating pack
15:36:52.143 [info] UploadPackV2: pack generated, 1062 bytes
15:36:52.143 [info] UploadPackV2: fetch response 1084 bytes
15:36:52.147 [info] UploadPackV2: processing fetch command
15:36:52.147 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.148 [info] UploadPackV2: collected 6 objects, generating pack
15:36:52.148 [info] UploadPackV2: pack generated, 428 bytes
15:36:52.148 [info] UploadPackV2: fetch response 450 bytes
.
15:36:52.153 [info] UploadPackV2: processing fetch command
.
15:36:52.153 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.154 [info] UploadPackV2: collected 14 objects, generating pack
.
15:36:52.155 [info] UploadPackV2: pack generated, 1064 bytes
.
15:36:52.155 [info] UploadPackV2: fetch response 1086 bytes
.
15:36:52.163 [info] UploadPackV2: processing fetch command
.
15:36:52.163 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.164 [info] UploadPackV2: collected 8 objects, generating pack
.
15:36:52.165 [info] UploadPackV2: pack generated, 636 bytes
.
15:36:52.165 [info] UploadPackV2: fetch response 658 bytes
.
15:36:52.170 [info] UploadPackV2: processing fetch command
.
15:36:52.171 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.171 [info] UploadPackV2: collected 12 objects, generating pack
.
15:36:52.172 [info] UploadPackV2: pack generated, 854 bytes
.
15:36:52.172 [info] UploadPackV2: fetch response 876 bytes
.
15:36:52.175 [info] UploadPackV2: processing fetch command
.
15:36:52.175 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.175 [info] UploadPackV2: collected 5 objects, generating pack
.
15:36:52.176 [info] UploadPackV2: pack generated, 424 bytes
.
15:36:52.176 [info] UploadPackV2: fetch response 446 bytes
...
15:36:52.178 [info] UploadPackV2: processing fetch command
.
15:36:52.178 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.180 [info] UploadPackV2: collected 17 objects, generating pack
.
15:36:52.181 [info] UploadPackV2: pack generated, 1276 bytes
.
15:36:52.181 [info] UploadPackV2: fetch response 1298 bytes
.
15:36:52.187 [info] UploadPackV2: processing fetch command
.
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
15:36:52.187 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.187 [info] UploadPackV2: collected 18 objects, generating pack
.
15:36:52.188 [info] UploadPackV2: pack generated, 1281 bytes
.
15:36:52.188 [info] UploadPackV2: fetch response 1303 bytes
.
15:36:52.193 [info] UploadPackV2: processing fetch command
.
15:36:52.193 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.195 [info] UploadPackV2: collected 23 objects, generating pack
.
15:36:52.195 [info] UploadPackV2: pack generated, 1672 bytes
.
15:36:52.196 [info] UploadPackV2: fetch response 1694 bytes
.
15:36:52.203 [info] UploadPackV2: processing fetch command
.
15:36:52.203 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
15:36:52.204 [info] UploadPackV2: collected 11 objects, generating pack
.
15:36:52.204 [info] UploadPackV2: pack generated, 853 bytes
.
15:36:52.204 [info] UploadPackV2: fetch response 875 bytes
.
15:36:52.215 [info] UploadPackV2: processing fetch command
.
15:36:52.215 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.218 [info] UploadPackV2: collected 11 objects, generating pack
15:36:52.218 [info] UploadPackV2: pack generated, 853 bytes
15:36:52.218 [info] UploadPackV2: fetch response 875 bytes
15:36:52.225 [info] UploadPackV2: processing fetch command
15:36:52.225 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.226 [info] UploadPackV2: collected 14 objects, generating pack
15:36:52.227 [info] UploadPackV2: pack generated, 1062 bytes
15:36:52.227 [info] UploadPackV2: fetch response 1084 bytes
15:36:52.233 [info] UploadPackV2: processing fetch command
15:36:52.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.234 [info] UploadPackV2: collected 3 objects, generating pack
15:36:52.234 [info] UploadPackV2: pack generated, 214 bytes
15:36:52.235 [info] UploadPackV2: fetch response 236 bytes
15:36:52.243 [info] UploadPackV2: processing fetch command
15:36:52.243 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.246 [info] UploadPackV2: collected 43 objects, generating pack
15:36:52.247 [info] UploadPackV2: pack generated, 3144 bytes
15:36:52.247 [info] UploadPackV2: fetch response 3166 bytes
15:36:52.260 [info] UploadPackV2: processing fetch command
15:36:52.363 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.371 [info] UploadPackV2: collected 18 objects, generating pack
15:36:52.372 [info] UploadPackV2: pack generated, 1281 bytes
15:36:52.372 [info] UploadPackV2: fetch response 1303 bytes
15:36:52.397 [info] UploadPackV2: processing fetch command
15:36:52.398 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.399 [info] UploadPackV2: collected 20 objects, generating pack
15:36:52.400 [info] UploadPackV2: pack generated, 1490 bytes
15:36:52.400 [info] UploadPackV2: fetch response 1512 bytes
15:36:52.424 [info] UploadPackV2: processing fetch command
15:36:52.424 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.426 [info] UploadPackV2: collected 8 objects, generating pack
15:36:52.426 [info] UploadPackV2: pack generated, 639 bytes
15:36:52.426 [info] UploadPackV2: fetch response 661 bytes
15:36:52.430 [info] UploadPackV2: processing fetch command
15:36:52.430 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.431 [info] UploadPackV2: collected 12 objects, generating pack
15:36:52.431 [info] UploadPackV2: pack generated, 854 bytes
15:36:52.431 [info] UploadPackV2: fetch response 876 bytes
15:36:52.435 [info] UploadPackV2: processing fetch command
15:36:52.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.436 [info] UploadPackV2: collected 17 objects, generating pack
15:36:52.437 [info] UploadPackV2: pack generated, 1278 bytes
15:36:52.437 [info] UploadPackV2: fetch response 1300 bytes
15:36:52.442 [info] UploadPackV2: processing fetch command
15:36:52.442 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.443 [info] UploadPackV2: collected 17 objects, generating pack
15:36:52.443 [info] UploadPackV2: pack generated, 1278 bytes
15:36:52.444 [info] UploadPackV2: fetch response 1300 bytes
15:36:52.449 [info] UploadPackV2: processing fetch command
15:36:52.449 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.452 [info] UploadPackV2: collected 25 objects, generating pack
15:36:52.452 [info] UploadPackV2: pack generated, 1868 bytes
15:36:52.453 [info] UploadPackV2: fetch response 1890 bytes
15:36:52.459 [info] UploadPackV2: processing fetch command
15:36:52.460 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.461 [info] UploadPackV2: collected 20 objects, generating pack
15:36:52.461 [info] UploadPackV2: pack generated, 1492 bytes
15:36:52.462 [info] UploadPackV2: fetch response 1514 bytes
15:36:52.469 [info] UploadPackV2: processing fetch command
15:36:52.470 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.472 [info] UploadPackV2: collected 30 objects, generating pack
15:36:52.473 [info] UploadPackV2: pack generated, 2071 bytes
15:36:52.473 [info] UploadPackV2: fetch response 2093 bytes
15:36:52.483 [info] UploadPackV2: processing fetch command
15:36:52.483 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.488 [info] UploadPackV2: collected 9 objects, generating pack
15:36:52.488 [info] UploadPackV2: pack generated, 642 bytes
15:36:52.488 [info] UploadPackV2: fetch response 664 bytes
15:36:52.502 [info] UploadPackV2: processing fetch command
warning: default values for the optional arguments in the private function http_post/4 are never used
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
15:36:52.502 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.504 [info] UploadPackV2: collected 37 objects, generating pack
15:36:52.506 [info] UploadPackV2: pack generated, 2720 bytes
15:36:52.506 [info] UploadPackV2: fetch response 2742 bytes
15:36:52.517 [info] UploadPackV2: processing fetch command
15:36:52.517 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.518 [info] UploadPackV2: collected 11 objects, generating pack
15:36:52.518 [info] UploadPackV2: pack generated, 851 bytes
15:36:52.520 [info] UploadPackV2: fetch response 873 bytes
15:36:52.534 [info] UploadPackV2: processing fetch command
15:36:52.534 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.535 [info] UploadPackV2: collected 6 objects, generating pack
15:36:52.535 [info] UploadPackV2: pack generated, 428 bytes
15:36:52.535 [info] UploadPackV2: fetch response 450 bytes
15:36:52.544 [info] UploadPackV2: processing fetch command
15:36:52.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.544 [info] UploadPackV2: collected 3 objects, generating pack
15:36:52.545 [info] UploadPackV2: pack generated, 214 bytes
15:36:52.545 [info] UploadPackV2: fetch response 236 bytes
15:36:52.549 [info] UploadPackV2: processing fetch command
15:36:52.549 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.550 [info] UploadPackV2: collected 24 objects, generating pack
15:36:52.551 [info] UploadPackV2: pack generated, 1675 bytes
15:36:52.551 [info] UploadPackV2: fetch response 1697 bytes
15:36:52.557 [info] UploadPackV2: processing fetch command
15:36:52.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.633 [info] UploadPackV2: collected 6 objects, generating pack
15:36:52.634 [info] UploadPackV2: pack generated, 428 bytes
15:36:52.635 [info] UploadPackV2: fetch response 450 bytes
15:36:52.664 [info] UploadPackV2: processing fetch command
15:36:52.664 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.693 [info] UploadPackV2: collected 23 objects, generating pack
15:36:52.695 [info] UploadPackV2: pack generated, 1662 bytes
15:36:52.695 [info] UploadPackV2: fetch response 1684 bytes
15:36:52.705 [info] UploadPackV2: processing fetch command
15:36:52.705 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.708 [info] UploadPackV2: collected 27 objects, generating pack
15:36:52.710 [info] UploadPackV2: pack generated, 1889 bytes
15:36:52.710 [info] UploadPackV2: fetch response 1911 bytes
15:36:52.723 [info] UploadPackV2: processing fetch command
15:36:52.723 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.724 [info] UploadPackV2: collected 15 objects, generating pack
15:36:52.725 [info] UploadPackV2: pack generated, 1068 bytes
.
15:36:52.725 [info] UploadPackV2: fetch response 1090 bytes
15:36:52.729 [info] UploadPackV2: processing fetch command
15:36:52.730 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:36:52.730 [info] UploadPackV2: collected 6 objects, generating pack
15:36:52.731 [info] UploadPackV2: pack generated, 428 bytes
15:36:52.731 [info] UploadPackV2: fetch response 450 bytes
15:36:52.741 [info] UploadPackV2: processing fetch command
15:36:52.741 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.742 [info] UploadPackV2: collected 15 objects, generating pack
15:36:52.743 [info] UploadPackV2: pack generated, 958 bytes
15:36:52.743 [info] UploadPackV2: fetch response 980 bytes
15:36:52.748 [info] UploadPackV2: processing fetch command
15:36:52.748 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.751 [info] UploadPackV2: collected 15 objects, generating pack
15:36:52.752 [info] UploadPackV2: pack generated, 958 bytes
15:36:52.752 [info] UploadPackV2: fetch response 980 bytes
15:36:52.763 [info] UploadPackV2: processing fetch command
15:36:52.763 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.764 [info] UploadPackV2: collected 8 objects, generating pack
15:36:52.764 [info] UploadPackV2: pack generated, 482 bytes
15:36:52.764 [info] UploadPackV2: fetch response 504 bytes
15:36:52.775 [info] UploadPackV2: processing fetch command
15:36:52.775 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.776 [info] UploadPackV2: collected 23 objects, generating pack
15:36:52.778 [info] UploadPackV2: pack generated, 1435 bytes
15:36:52.778 [info] UploadPackV2: fetch response 1457 bytes
15:36:52.783 [info] UploadPackV2: processing fetch command
15:36:52.784 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.788 [info] UploadPackV2: collected 11 objects, generating pack
15:36:52.788 [info] UploadPackV2: pack generated, 714 bytes
15:36:52.788 [info] UploadPackV2: fetch response 736 bytes
15:36:52.812 [info] UploadPackV2: processing fetch command
15:36:52.813 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.826 [info] UploadPackV2: collected 62 objects, generating pack
15:36:52.830 [info] UploadPackV2: pack generated, 3774 bytes
15:36:52.830 [info] UploadPackV2: fetch response 3796 bytes
15:36:52.860 [info] UploadPackV2: processing fetch command
15:36:52.860 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.866 [info] UploadPackV2: collected 19 objects, generating pack
15:36:52.867 [info] UploadPackV2: pack generated, 1194 bytes
15:36:52.867 [info] UploadPackV2: fetch response 1216 bytes
15:36:52.881 [info] UploadPackV2: processing fetch command
15:36:52.882 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.884 [info] UploadPackV2: collected 8 objects, generating pack
15:36:52.885 [info] UploadPackV2: pack generated, 482 bytes
15:36:52.887 [info] UploadPackV2: fetch response 504 bytes
15:36:52.904 [info] UploadPackV2: processing fetch command
15:36:52.905 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.906 [info] UploadPackV2: collected 19 objects, generating pack
15:36:52.907 [info] UploadPackV2: pack generated, 1196 bytes
15:36:52.907 [info] UploadPackV2: fetch response 1218 bytes
15:36:52.916 [info] UploadPackV2: processing fetch command
15:36:52.916 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.917 [info] UploadPackV2: collected 11 objects, generating pack
15:36:52.918 [info] UploadPackV2: pack generated, 714 bytes
15:36:52.918 [info] UploadPackV2: fetch response 736 bytes
15:36:52.922 [info] UploadPackV2: processing fetch command
15:36:52.922 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.924 [info] UploadPackV2: collected 16 objects, generating pack
15:36:52.925 [info] UploadPackV2: pack generated, 962 bytes
15:36:52.925 [info] UploadPackV2: fetch response 984 bytes
15:36:52.938 [info] UploadPackV2: processing fetch command
15:36:52.939 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.940 [info] UploadPackV2: collected 7 objects, generating pack
15:36:52.940 [info] UploadPackV2: pack generated, 475 bytes
15:36:52.941 [info] UploadPackV2: fetch response 497 bytes
15:36:52.952 [info] UploadPackV2: processing fetch command
15:36:52.952 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.953 [info] UploadPackV2: collected 23 objects, generating pack
15:36:52.954 [info] UploadPackV2: pack generated, 1435 bytes
15:36:52.954 [info] UploadPackV2: fetch response 1457 bytes
15:36:52.970 [info] UploadPackV2: processing fetch command
15:36:52.970 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.974 [info] UploadPackV2: collected 24 objects, generating pack
15:36:52.975 [info] UploadPackV2: pack generated, 1443 bytes
15:36:52.975 [info] UploadPackV2: fetch response 1465 bytes
15:36:52.983 [info] UploadPackV2: processing fetch command
15:36:52.983 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:52.989 [info] UploadPackV2: collected 31 objects, generating pack
15:36:52.992 [info] UploadPackV2: pack generated, 1885 bytes
15:36:52.993 [info] UploadPackV2: fetch response 1907 bytes
15:36:53.001 [info] UploadPackV2: processing fetch command
15:36:53.001 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.002 [info] UploadPackV2: collected 15 objects, generating pack
15:36:53.003 [info] UploadPackV2: pack generated, 958 bytes
15:36:53.003 [info] UploadPackV2: fetch response 980 bytes
15:36:53.007 [info] UploadPackV2: processing fetch command
15:36:53.007 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.008 [info] UploadPackV2: collected 15 objects, generating pack
15:36:53.008 [info] UploadPackV2: pack generated, 958 bytes
15:36:53.008 [info] UploadPackV2: fetch response 980 bytes
15:36:53.015 [info] UploadPackV2: processing fetch command
15:36:53.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.016 [info] UploadPackV2: collected 19 objects, generating pack
15:36:53.017 [info] UploadPackV2: pack generated, 1194 bytes
15:36:53.017 [info] UploadPackV2: fetch response 1216 bytes
15:36:53.025 [info] UploadPackV2: processing fetch command
15:36:53.066 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.067 [info] UploadPackV2: collected 4 objects, generating pack
15:36:53.067 [info] UploadPackV2: pack generated, 241 bytes
15:36:53.067 [info] UploadPackV2: fetch response 263 bytes
15:36:53.071 [info] UploadPackV2: processing fetch command
15:36:53.072 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.074 [info] UploadPackV2: collected 58 objects, generating pack
15:36:53.076 [info] UploadPackV2: pack generated, 3534 bytes
15:36:53.076 [info] UploadPackV2: fetch response 3556 bytes
15:36:53.085 [info] UploadPackV2: processing fetch command
15:36:53.086 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.087 [info] UploadPackV2: collected 24 objects, generating pack
15:36:53.088 [info] UploadPackV2: pack generated, 1443 bytes
15:36:53.088 [info] UploadPackV2: fetch response 1465 bytes
15:36:53.093 [info] UploadPackV2: processing fetch command
15:36:53.093 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.095 [info] UploadPackV2: collected 27 objects, generating pack
15:36:53.096 [info] UploadPackV2: pack generated, 1676 bytes
15:36:53.096 [info] UploadPackV2: fetch response 1698 bytes
15:36:53.104 [info] UploadPackV2: processing fetch command
15:36:53.104 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.105 [info] UploadPackV2: collected 11 objects, generating pack
15:36:53.106 [info] UploadPackV2: pack generated, 717 bytes
15:36:53.106 [info] UploadPackV2: fetch response 739 bytes
15:36:53.109 [info] UploadPackV2: processing fetch command
15:36:53.109 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.109 [info] UploadPackV2: collected 16 objects, generating pack
15:36:53.110 [info] UploadPackV2: pack generated, 962 bytes
15:36:53.111 [info] UploadPackV2: fetch response 984 bytes
15:36:53.115 [info] UploadPackV2: processing fetch command
15:36:53.115 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.119 [info] UploadPackV2: collected 23 objects, generating pack
15:36:53.120 [info] UploadPackV2: pack generated, 1437 bytes
15:36:53.120 [info] UploadPackV2: fetch response 1459 bytes
15:36:53.125 [info] UploadPackV2: processing fetch command
15:36:53.126 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.127 [info] UploadPackV2: collected 23 objects, generating pack
15:36:53.127 [info] UploadPackV2: pack generated, 1437 bytes
15:36:53.128 [info] UploadPackV2: fetch response 1459 bytes
15:36:53.134 [info] UploadPackV2: processing fetch command
15:36:53.135 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.137 [info] UploadPackV2: collected 34 objects, generating pack
15:36:53.138 [info] UploadPackV2: pack generated, 2096 bytes
15:36:53.138 [info] UploadPackV2: fetch response 2118 bytes
15:36:53.146 [info] UploadPackV2: processing fetch command
15:36:53.146 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.148 [info] UploadPackV2: collected 27 objects, generating pack
15:36:53.149 [info] UploadPackV2: pack generated, 1678 bytes
15:36:53.149 [info] UploadPackV2: fetch response 1700 bytes
15:36:53.159 [info] UploadPackV2: processing fetch command
15:36:53.160 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.166 [info] UploadPackV2: collected 40 objects, generating pack
15:36:53.167 [info] UploadPackV2: pack generated, 2341 bytes
15:36:53.167 [info] UploadPackV2: fetch response 2363 bytes
15:36:53.187 [info] UploadPackV2: processing fetch command
15:36:53.187 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.192 [info] UploadPackV2: collected 12 objects, generating pack
15:36:53.193 [info] UploadPackV2: pack generated, 723 bytes
15:36:53.193 [info] UploadPackV2: fetch response 745 bytes
15:36:53.216 [info] UploadPackV2: processing fetch command
15:36:53.216 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.223 [info] UploadPackV2: collected 50 objects, generating pack
15:36:53.225 [info] UploadPackV2: pack generated, 3056 bytes
15:36:53.226 [info] UploadPackV2: fetch response 3078 bytes
15:36:53.233 [info] UploadPackV2: processing fetch command
15:36:53.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.233 [info] UploadPackV2: collected 15 objects, generating pack
15:36:53.234 [info] UploadPackV2: pack generated, 956 bytes
15:36:53.234 [info] UploadPackV2: fetch response 978 bytes
15:36:53.237 [info] UploadPackV2: processing fetch command
15:36:53.237 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.240 [info] UploadPackV2: collected 8 objects, generating pack
15:36:53.241 [info] UploadPackV2: pack generated, 482 bytes
15:36:53.241 [info] UploadPackV2: fetch response 504 bytes
15:36:53.249 [info] UploadPackV2: processing fetch command
15:36:53.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.252 [info] UploadPackV2: collected 4 objects, generating pack
15:36:53.252 [info] UploadPackV2: pack generated, 241 bytes
15:36:53.252 [info] UploadPackV2: fetch response 263 bytes
15:36:53.259 [info] UploadPackV2: processing fetch command
15:36:53.259 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.261 [info] UploadPackV2: collected 32 objects, generating pack
15:36:53.261 [info] UploadPackV2: pack generated, 1891 bytes
15:36:53.262 [info] UploadPackV2: fetch response 1913 bytes
15:36:53.271 [info] UploadPackV2: processing fetch command
15:36:53.271 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.272 [info] UploadPackV2: collected 8 objects, generating pack
15:36:53.272 [info] UploadPackV2: pack generated, 482 bytes
15:36:53.272 [info] UploadPackV2: fetch response 504 bytes
15:36:53.279 [info] UploadPackV2: processing fetch command
15:36:53.279 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.281 [info] UploadPackV2: collected 31 objects, generating pack
15:36:53.283 [info] UploadPackV2: pack generated, 1866 bytes
15:36:53.283 [info] UploadPackV2: fetch response 1888 bytes
15:36:53.289 [info] UploadPackV2: processing fetch command
15:36:53.289 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.291 [info] UploadPackV2: collected 36 objects, generating pack
15:36:53.292 [info] UploadPackV2: pack generated, 2132 bytes
15:36:53.292 [info] UploadPackV2: fetch response 2154 bytes
15:36:53.300 [info] UploadPackV2: processing fetch command
15:36:53.300 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.301 [info] UploadPackV2: collected 20 objects, generating pack
15:36:53.301 [info] UploadPackV2: pack generated, 1203 bytes
15:36:53.301 [info] UploadPackV2: fetch response 1225 bytes
15:36:53.304 [info] UploadPackV2: processing fetch command
15:36:53.304 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.305 [info] UploadPackV2: collected 8 objects, generating pack
15:36:53.305 [info] UploadPackV2: pack generated, 482 bytes
15:36:53.305 [info] UploadPackV2: fetch response 504 bytes
15:36:53.307 [info] UploadPackV2: processing fetch command
15:36:53.307 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.308 [info] UploadPackV2: collected 11 objects, generating pack
15:36:53.308 [info] UploadPackV2: pack generated, 714 bytes
15:36:53.308 [info] UploadPackV2: fetch response 736 bytes
15:36:53.312 [info] UploadPackV2: processing fetch command
15:36:53.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.313 [info] UploadPackV2: collected 23 objects, generating pack
15:36:53.314 [info] UploadPackV2: pack generated, 1437 bytes
15:36:53.314 [info] UploadPackV2: fetch response 1459 bytes
.
15:36:53.318 [info] UploadPackV2: processing fetch command
.
15:36:53.318 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:36:53.319 [info] UploadPackV2: collected 16 objects, generating pack
.
15:36:53.320 [info] UploadPackV2: pack generated, 962 bytes
.
15:36:53.320 [info] UploadPackV2: fetch response 984 bytes
.
15:36:53.324 [info] UploadPackV2: processing fetch command
15:36:53.324 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.324 [info] UploadPackV2: collected 12 objects, generating pack
15:36:53.325 [info] UploadPackV2: pack generated, 723 bytes
15:36:53.325 [info] UploadPackV2: fetch response 745 bytes
15:36:53.330 [info] UploadPackV2: processing fetch command
15:36:53.330 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.331 [info] UploadPackV2: collected 31 objects, generating pack
15:36:53.332 [info] UploadPackV2: pack generated, 1855 bytes
15:36:53.332 [info] UploadPackV2: fetch response 1877 bytes
15:36:53.338 [info] UploadPackV2: processing fetch command
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
15:36:53.338 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.340 [info] UploadPackV2: collected 36 objects, generating pack
15:36:53.341 [info] UploadPackV2: pack generated, 2103 bytes
15:36:53.341 [info] UploadPackV2: fetch response 2125 bytes
15:36:53.349 [info] UploadPackV2: processing fetch command
15:36:53.349 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.349 [info] UploadPackV2: collected 11 objects, generating pack
15:36:53.350 [info] UploadPackV2: pack generated, 714 bytes
15:36:53.350 [info] UploadPackV2: fetch response 736 bytes
15:36:53.353 [info] UploadPackV2: processing fetch command
15:36:53.353 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.354 [info] UploadPackV2: collected 23 objects, generating pack
15:36:53.355 [info] UploadPackV2: pack generated, 1435 bytes
15:36:53.355 [info] UploadPackV2: fetch response 1457 bytes
15:36:53.359 [info] UploadPackV2: processing fetch command
15:36:53.473 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.479 [info] UploadPackV2: collected 16 objects, generating pack
15:36:53.479 [info] UploadPackV2: pack generated, 962 bytes
15:36:53.480 [info] UploadPackV2: fetch response 984 bytes
15:36:53.484 [info] UploadPackV2: processing fetch command
15:36:53.484 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.484 [info] UploadPackV2: collected 7 objects, generating pack
15:36:53.485 [info] UploadPackV2: pack generated, 475 bytes
15:36:53.485 [info] UploadPackV2: fetch response 497 bytes
15:36:53.488 [info] UploadPackV2: processing fetch command
15:36:53.488 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.489 [info] UploadPackV2: collected 19 objects, generating pack
15:36:53.489 [info] UploadPackV2: pack generated, 1194 bytes
15:36:53.489 [info] UploadPackV2: fetch response 1216 bytes
15:36:53.493 [info] UploadPackV2: processing fetch command
15:36:53.493 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.495 [info] UploadPackV2: collected 23 objects, generating pack
15:36:53.496 [info] UploadPackV2: pack generated, 1435 bytes
15:36:53.496 [info] UploadPackV2: fetch response 1457 bytes
15:36:53.500 [info] UploadPackV2: processing fetch command
15:36:53.500 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.501 [info] UploadPackV2: collected 12 objects, generating pack
15:36:53.501 [info] UploadPackV2: pack generated, 723 bytes
15:36:53.501 [info] UploadPackV2: fetch response 745 bytes
15:36:53.507 [info] UploadPackV2: processing fetch command
15:36:53.507 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.510 [info] UploadPackV2: collected 42 objects, generating pack
15:36:53.511 [info] UploadPackV2: pack generated, 2577 bytes
15:36:53.511 [info] UploadPackV2: fetch response 2599 bytes
15:36:53.528 [info] UploadPackV2: processing fetch command
15:36:53.528 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.529 [info] UploadPackV2: collected 8 objects, generating pack
15:36:53.529 [info] UploadPackV2: pack generated, 482 bytes
15:36:53.529 [info] UploadPackV2: fetch response 504 bytes
15:36:53.538 [info] UploadPackV2: processing fetch command
15:36:53.538 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.540 [info] UploadPackV2: collected 36 objects, generating pack
15:36:53.541 [info] UploadPackV2: pack generated, 2132 bytes
15:36:53.542 [info] UploadPackV2: fetch response 2154 bytes
15:36:53.553 [info] UploadPackV2: processing fetch command
15:36:53.554 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.556 [info] UploadPackV2: collected 31 objects, generating pack
15:36:53.557 [info] UploadPackV2: pack generated, 1863 bytes
15:36:53.557 [info] UploadPackV2: fetch response 1885 bytes
15:36:53.564 [info] UploadPackV2: processing fetch command
15:36:53.564 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.565 [info] UploadPackV2: collected 16 objects, generating pack
15:36:53.566 [info] UploadPackV2: pack generated, 962 bytes
15:36:53.566 [info] UploadPackV2: fetch response 984 bytes
15:36:53.572 [info] UploadPackV2: processing fetch command
15:36:53.572 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.573 [info] UploadPackV2: collected 27 objects, generating pack
15:36:53.575 [info] UploadPackV2: pack generated, 1676 bytes
15:36:53.576 [info] UploadPackV2: fetch response 1698 bytes
15:36:53.585 [info] UploadPackV2: processing fetch command
15:36:53.585 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.587 [info] UploadPackV2: collected 16 objects, generating pack
15:36:53.587 [info] UploadPackV2: pack generated, 962 bytes
15:36:53.588 [info] UploadPackV2: fetch response 984 bytes
15:36:53.595 [info] UploadPackV2: processing fetch command
15:36:53.595 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.597 [info] UploadPackV2: collected 19 objects, generating pack
15:36:53.597 [info] UploadPackV2: pack generated, 1196 bytes
15:36:53.597 [info] UploadPackV2: fetch response 1218 bytes
15:36:53.601 [info] UploadPackV2: processing fetch command
15:36:53.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.601 [info] UploadPackV2: collected 4 objects, generating pack
15:36:53.602 [info] UploadPackV2: pack generated, 241 bytes
15:36:53.602 [info] UploadPackV2: fetch response 263 bytes
15:36:53.607 [info] UploadPackV2: processing fetch command
15:36:53.654 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.660 [info] UploadPackV2: collected 27 objects, generating pack
15:36:53.661 [info] UploadPackV2: pack generated, 1676 bytes
15:36:53.661 [info] UploadPackV2: fetch response 1698 bytes
15:36:53.673 [info] UploadPackV2: processing fetch command
15:36:53.673 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.680 [info] UploadPackV2: collected 16 objects, generating pack
15:36:53.680 [info] UploadPackV2: pack generated, 962 bytes
15:36:53.681 [info] UploadPackV2: fetch response 984 bytes
15:36:53.689 [info] UploadPackV2: processing fetch command
15:36:53.689 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.699 [info] UploadPackV2: collected 39 objects, generating pack
15:36:53.701 [info] UploadPackV2: pack generated, 2347 bytes
15:36:53.701 [info] UploadPackV2: fetch response 2369 bytes
15:36:53.725 [info] UploadPackV2: processing fetch command
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: 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 "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
15:36:53.725 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.726 [info] UploadPackV2: collected 11 objects, generating pack
15:36:53.727 [info] UploadPackV2: pack generated, 717 bytes
15:36:53.727 [info] UploadPackV2: fetch response 739 bytes
15:36:53.734 [info] UploadPackV2: processing fetch command
15:36:53.734 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.735 [info] UploadPackV2: collected 20 objects, generating pack
15:36:53.735 [info] UploadPackV2: pack generated, 1203 bytes
15:36:53.736 [info] UploadPackV2: fetch response 1225 bytes
15:36:53.748 [info] UploadPackV2: processing fetch command
15:36:53.749 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.749 [info] UploadPackV2: collected 7 objects, generating pack
15:36:53.749 [info] UploadPackV2: pack generated, 475 bytes
15:36:53.749 [info] UploadPackV2: fetch response 497 bytes
15:36:53.756 [info] UploadPackV2: processing fetch command
15:36:53.756 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.757 [info] UploadPackV2: collected 24 objects, generating pack
15:36:53.758 [info] UploadPackV2: pack generated, 1443 bytes
15:36:53.758 [info] UploadPackV2: fetch response 1465 bytes
15:36:53.763 [info] UploadPackV2: processing fetch command
15:36:53.763 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.764 [info] UploadPackV2: collected 24 objects, generating pack
15:36:53.765 [info] UploadPackV2: pack generated, 1443 bytes
15:36:53.765 [info] UploadPackV2: fetch response 1465 bytes
15:36:53.769 [info] UploadPackV2: processing fetch command
15:36:53.769 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.771 [info] UploadPackV2: collected 20 objects, generating pack
15:36:53.771 [info] UploadPackV2: pack generated, 1203 bytes
15:36:53.772 [info] UploadPackV2: fetch response 1225 bytes
15:36:53.775 [info] UploadPackV2: processing fetch command
15:36:53.775 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.776 [info] UploadPackV2: collected 7 objects, generating pack
15:36:53.776 [info] UploadPackV2: pack generated, 475 bytes
15:36:53.776 [info] UploadPackV2: fetch response 497 bytes
15:36:53.779 [info] UploadPackV2: processing fetch command
15:36:53.779 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.780 [info] UploadPackV2: collected 15 objects, generating pack
15:36:53.781 [info] UploadPackV2: pack generated, 958 bytes
15:36:53.781 [info] UploadPackV2: fetch response 980 bytes
15:36:53.785 [info] UploadPackV2: processing fetch command
15:36:53.785 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.787 [info] UploadPackV2: collected 27 objects, generating pack
15:36:53.788 [info] UploadPackV2: pack generated, 1645 bytes
15:36:53.788 [info] UploadPackV2: fetch response 1667 bytes
15:36:53.796 [info] UploadPackV2: processing fetch command
15:36:53.839 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.841 [info] UploadPackV2: collected 38 objects, generating pack
15:36:53.842 [info] UploadPackV2: pack generated, 2340 bytes
15:36:53.842 [info] UploadPackV2: fetch response 2362 bytes
15:36:53.850 [info] UploadPackV2: processing fetch command
15:36:53.850 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.854 [info] UploadPackV2: collected 39 objects, generating pack
15:36:53.856 [info] UploadPackV2: pack generated, 2347 bytes
15:36:53.856 [info] UploadPackV2: fetch response 2369 bytes
15:36:53.867 [info] UploadPackV2: processing fetch command
.
15:36:53.867 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:36:53.868 [info] UploadPackV2: collected 15 objects, generating pack
.
15:36:53.868 [info] UploadPackV2: pack generated, 956 bytes
.
15:36:53.868 [info] UploadPackV2: fetch response 978 bytes
....
15:36:53.879 [info] UploadPackV2: processing fetch command
15:36:53.879 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.880 [info] UploadPackV2: collected 24 objects, generating pack
15:36:53.881 [info] UploadPackV2: pack generated, 1443 bytes
15:36:53.881 [info] UploadPackV2: fetch response 1465 bytes
15:36:53.887 [info] UploadPackV2: processing fetch command
15:36:53.887 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.889 [info] UploadPackV2: collected 27 objects, generating pack
15:36:53.889 [info] UploadPackV2: pack generated, 1676 bytes
15:36:53.889 [info] UploadPackV2: fetch response 1698 bytes
15:36:53.895 [info] UploadPackV2: processing fetch command
15:36:53.895 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:53.896 [info] UploadPackV2: collected 12 objects, generating pack
15:36:53.896 [info] UploadPackV2: pack generated, 723 bytes
15:36:53.897 [info] UploadPackV2: fetch response 745 bytes
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
497 │ {_tip, parent} =
│ ~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: the variable "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
.................................................................................................................................................................................................................
15:36:57.284 [info] UploadPackV2: processing fetch command
15:36:57.284 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:57.290 [info] UploadPackV2: reused pack 12217 bytes, 160 objects
15:36:57.290 [info] UploadPackV2: fetch response 12239 bytes
...............................................................................................................................................................................................................................
15:36:58.589 [info] UploadPackV2: processing fetch command
15:36:58.589 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:58.594 [info] UploadPackV2: reused pack 12017 bytes, 160 objects
15:36:58.594 [info] UploadPackV2: fetch response 12039 bytes
..........
15:36:59.587 [info] UploadPackV2: processing fetch command
15:36:59.587 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:59.596 [info] UploadPackV2: collected 163 objects, generating pack
15:36:59.602 [info] UploadPackV2: pack generated, 15083 bytes
15:36:59.603 [info] UploadPackV2: fetch response 15105 bytes
.............................
15:36:59.876 [info] UploadPackV2: processing ls-refs command
...............
15:36:59.880 [info] UploadPackV2: processing ls-refs command
15:36:59.880 [info] UploadPackV2: processing fetch command
15:36:59.880 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:36:59.880 [info] UploadPackV2: collected 3 objects, generating pack
15:36:59.880 [info] UploadPackV2: pack generated, 210 bytes
15:36:59.880 [info] UploadPackV2: fetch response 232 bytes
.....................................
15:36:59.985 [info] UploadPackV2: processing fetch command
15:36:59.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.269 [info] UploadPackV2: collected 32 objects, streaming pack
15:37:00.271 [warning] post_receive hook failed: "webhook failed"
..........................
15:37:00.404 [info] UploadPackV2: streamed pack 2459749 bytes, 32 objects
15:37:00.404 [info] UploadPackV2: fetch streamed 2459749 pack bytes, 32 objects
.
15:37:00.443 [info] UploadPackV2: processing fetch command
...............................................................................
15:37:00.443 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:37:00.443 [info] UploadPackV2: collected 3 objects, generating pack
15:37:00.443 [info] UploadPackV2: pack generated, 223 bytes
.
15:37:00.443 [info] UploadPackV2: fetch response 245 bytes
..
15:37:00.444 [info] UploadPackV2: processing fetch command
.
15:37:00.444 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.444 [info] UploadPackV2: collected 3 objects, streaming pack
.
15:37:00.444 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
15:37:00.444 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
15:37:00.445 [info] UploadPackV2: processing fetch command
.
15:37:00.445 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:37:00.445 [info] UploadPackV2: collected 3 objects, generating pack
.
15:37:00.445 [info] UploadPackV2: pack generated, 191 bytes
.
15:37:00.445 [info] UploadPackV2: fetch response 213 bytes
.
15:37:00.445 [info] UploadPackV2: processing ls-refs command
.
15:37:00.445 [info] UploadPackV2: processing fetch command
.
15:37:00.445 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:37:00.445 [info] UploadPackV2: collected 3 objects, generating pack
.
15:37:00.446 [info] UploadPackV2: pack generated, 206 bytes
.
15:37:00.446 [info] UploadPackV2: fetch response 228 bytes
.
15:37:00.449 [info] UploadPackV2: processing fetch command
.
15:37:00.449 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:37:00.449 [info] UploadPackV2: collected 3 objects, streaming pack
.
15:37:00.452 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
15:37:00.452 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.
15:37:00.454 [info] UploadPackV2: processing fetch command
.
15:37:00.454 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:37:00.455 [info] UploadPackV2: collected 15 objects, generating pack
.
15:37:00.455 [info] UploadPackV2: pack generated, 984 bytes
.
15:37:00.455 [info] UploadPackV2: fetch response 1006 bytes
.
15:37:00.455 [info] UploadPackV2: processing fetch command
.
15:37:00.455 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
15:37:00.456 [info] UploadPackV2: collected 15 objects, streaming pack
.
15:37:00.456 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
15:37:00.457 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
15:37:00.535 [info] UploadPackV2: processing fetch command
.
15:37:00.535 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.540 [info] UploadPackV2: collected 32 objects, generating pack
15:37:00.619 [info] UploadPackV2: pack generated, 2459816 bytes
15:37:00.622 [info] UploadPackV2: fetch response 2460023 bytes
15:37:00.622 [info] UploadPackV2: processing fetch command
15:37:00.622 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.628 [info] UploadPackV2: collected 32 objects, streaming pack
15:37:00.710 [info] UploadPackV2: streamed pack 2459816 bytes, 32 objects
15:37:00.710 [info] UploadPackV2: fetch streamed 2459816 pack bytes, 32 objects
15:37:00.713 [info] UploadPackV2: processing ls-refs command
15:37:00.713 [info] UploadPackV2: processing ls-refs command
15:37:00.713 [info] UploadPackV2: processing fetch command
15:37:00.713 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.713 [info] UploadPackV2: collected 3 objects, generating pack
15:37:00.713 [info] UploadPackV2: pack generated, 191 bytes
15:37:00.713 [info] UploadPackV2: fetch response 213 bytes
15:37:00.714 [info] UploadPackV2: processing fetch command
15:37:00.714 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.714 [info] UploadPackV2: collected 0 objects, generating pack
15:37:00.714 [info] UploadPackV2: pack generated, 32 bytes
15:37:00.714 [info] UploadPackV2: fetch response 54 bytes
15:37:00.718 [info] UploadPackV2: processing fetch command
15:37:00.718 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.720 [info] UploadPackV2: collected 90 objects, generating pack
15:37:00.722 [info] UploadPackV2: pack generated, 5946 bytes
15:37:00.722 [info] UploadPackV2: fetch response 5968 bytes
15:37:00.755 [info] UploadPackV2: processing fetch command
15:37:00.755 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.771 [info] UploadPackV2: collected 700 objects, generating pack
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
15:37:00.781 [info] UploadPackV2: pack generated, 48139 bytes
15:37:00.781 [info] UploadPackV2: fetch response 48161 bytes
.
15:37:00.816 [info] UploadPackV2: processing fetch command
.
15:37:00.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.816 [info] UploadPackV2: collected 3 objects, generating pack
15:37:00.817 [info] UploadPackV2: pack generated, 195 bytes
15:37:00.817 [info] UploadPackV2: fetch response 217 bytes
15:37:00.817 [info] UploadPackV2: processing fetch command
15:37:00.817 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.818 [info] UploadPackV2: collected 9 objects, streaming pack
15:37:00.818 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
15:37:00.818 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
15:37:00.820 [info] UploadPackV2: processing fetch command
15:37:00.820 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.821 [info] UploadPackV2: collected 15 objects, generating pack
15:37:00.821 [info] UploadPackV2: pack generated, 984 bytes
15:37:00.821 [info] UploadPackV2: fetch response 1006 bytes
15:37:00.823 [info] UploadPackV2: processing fetch command
15:37:00.823 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
15:37:00.823 [info] UploadPackV2: fetch response 73 bytes
15:37:00.823 [info] UploadPackV2: processing fetch command
15:37:00.823 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
15:37:00.823 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
15:37:00.823 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
15:37:00.823 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
15:37:00.824 [info] UploadPackV2: processing fetch command
15:37:00.824 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.824 [info] UploadPackV2: collected 6 objects, generating pack
15:37:00.824 [info] UploadPackV2: pack generated, 414 bytes
15:37:00.824 [info] UploadPackV2: fetch response 436 bytes
15:37:00.852 [info] UploadPackV2: processing fetch command
15:37:00.852 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.865 [info] UploadPackV2: collected 600 objects, generating pack
15:37:00.873 [info] UploadPackV2: pack generated, 39862 bytes
15:37:00.873 [info] UploadPackV2: fetch response 39884 bytes
15:37:00.905 [info] UploadPackV2: processing fetch command
15:37:00.905 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.905 [info] UploadPackV2: collected 3 objects, generating pack
15:37:00.905 [info] UploadPackV2: pack generated, 195 bytes
15:37:00.905 [info] UploadPackV2: fetch response 217 bytes
15:37:00.906 [info] UploadPackV2: processing fetch command
15:37:00.906 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.906 [info] UploadPackV2: collected 3 objects, generating pack
.
15:37:00.907 [info] UploadPackV2: pack generated, 191 bytes
.
15:37:00.907 [info] UploadPackV2: fetch response 213 bytes
.
15:37:00.907 [info] UploadPackV2: processing ls-refs command
.
15:37:00.908 [info] UploadPackV2: processing fetch command
.
15:37:00.908 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:00.908 [info] UploadPackV2: collected 3 objects, generating pack
15:37:00.908 [info] UploadPackV2: pack generated, 194 bytes
15:37:00.908 [info] UploadPackV2: fetch response 216 bytes
15:37:01.287 [info] The function passed as a handler with ID #Reference<0.2667081721.2550661123.74917> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
........................
15:37:02.826 [info] UploadPackV2: processing ls-refs command
15:37:02.827 [info] UploadPackV2: processing fetch command
15:37:02.827 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:02.849 [info] UploadPackV2: collected 600 objects, generating pack
15:37:02.867 [info] UploadPackV2: pack generated, 45197 bytes
15:37:02.867 [info] UploadPackV2: fetch response 45219 bytes
.
15:37:02.962 [info] UploadPackV2: processing ls-refs command
15:37:02.963 [info] UploadPackV2: processing fetch command
15:37:02.963 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:02.969 [info] UploadPackV2: collected 240 objects, generating pack
15:37:02.975 [info] UploadPackV2: pack generated, 16258 bytes
15:37:02.975 [info] UploadPackV2: fetch response 16280 bytes
.
15:37:02.999 [info] UploadPackV2: processing fetch command
15:37:02.999 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:02.999 [info] UploadPackV2: collected 0 objects, generating pack
15:37:02.999 [info] UploadPackV2: pack generated, 32 bytes
15:37:02.999 [info] UploadPackV2: fetch response 54 bytes
.
15:37:03.242 [info] UploadPackV2: processing ls-refs command
.
15:37:03.243 [info] UploadPackV2: processing fetch command
15:37:03.243 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.244 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.244 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.244 [info] UploadPackV2: fetch response 205 bytes
15:37:03.244 [info] UploadPackV2: processing fetch command
15:37:03.244 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.244 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.244 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.245 [info] UploadPackV2: fetch response 205 bytes
15:37:03.245 [info] UploadPackV2: processing fetch command
15:37:03.245 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.245 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.245 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.245 [info] UploadPackV2: fetch response 205 bytes
15:37:03.245 [info] UploadPackV2: processing fetch command
15:37:03.245 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.246 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.246 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.246 [info] UploadPackV2: fetch response 205 bytes
15:37:03.246 [info] UploadPackV2: processing fetch command
15:37:03.246 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.246 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.246 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.247 [info] UploadPackV2: fetch response 205 bytes
15:37:03.247 [info] UploadPackV2: processing fetch command
15:37:03.247 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.247 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.247 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.247 [info] UploadPackV2: fetch response 205 bytes
15:37:03.247 [info] UploadPackV2: processing fetch command
15:37:03.247 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.248 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.248 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.248 [info] UploadPackV2: fetch response 205 bytes
15:37:03.248 [info] UploadPackV2: processing fetch command
15:37:03.248 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.248 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.248 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.248 [info] UploadPackV2: fetch response 205 bytes
15:37:03.248 [info] UploadPackV2: processing fetch command
15:37:03.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.249 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.249 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.249 [info] UploadPackV2: fetch response 205 bytes
15:37:03.249 [info] UploadPackV2: processing fetch command
15:37:03.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.250 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.250 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.250 [info] UploadPackV2: fetch response 205 bytes
15:37:03.250 [info] UploadPackV2: processing fetch command
15:37:03.250 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.250 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.251 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.251 [info] UploadPackV2: fetch response 205 bytes
15:37:03.251 [info] UploadPackV2: processing fetch command
15:37:03.251 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.251 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.251 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.251 [info] UploadPackV2: fetch response 205 bytes
15:37:03.251 [info] UploadPackV2: processing fetch command
15:37:03.252 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.252 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.252 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.252 [info] UploadPackV2: fetch response 205 bytes
15:37:03.252 [info] UploadPackV2: processing fetch command
15:37:03.252 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.253 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.253 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.253 [info] UploadPackV2: fetch response 205 bytes
15:37:03.253 [info] UploadPackV2: processing fetch command
15:37:03.253 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.253 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.254 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.254 [info] UploadPackV2: fetch response 205 bytes
15:37:03.254 [info] UploadPackV2: processing fetch command
15:37:03.254 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.254 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.254 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.254 [info] UploadPackV2: fetch response 205 bytes
15:37:03.255 [info] UploadPackV2: processing fetch command
15:37:03.255 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.255 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.255 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.255 [info] UploadPackV2: fetch response 205 bytes
15:37:03.255 [info] UploadPackV2: processing fetch command
15:37:03.255 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.256 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.256 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.256 [info] UploadPackV2: fetch response 205 bytes
15:37:03.256 [info] UploadPackV2: processing fetch command
15:37:03.256 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.256 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.256 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.256 [info] UploadPackV2: fetch response 205 bytes
15:37:03.256 [info] UploadPackV2: processing fetch command
15:37:03.256 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.257 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.257 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.257 [info] UploadPackV2: fetch response 205 bytes
15:37:03.257 [info] UploadPackV2: processing fetch command
15:37:03.257 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.257 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.258 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.258 [info] UploadPackV2: fetch response 205 bytes
.
15:37:03.418 [info] UploadPackV2: processing ls-refs command
15:37:03.419 [info] UploadPackV2: processing fetch command
15:37:03.419 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:37:03.419 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.420 [info] UploadPackV2: pack generated, 231 bytes
15:37:03.420 [info] UploadPackV2: fetch response 327 bytes
.
15:37:03.482 [info] UploadPackV2: processing ls-refs command
.
15:37:03.538 [info] UploadPackV2: processing ls-refs command
15:37:03.539 [info] UploadPackV2: processing fetch command
15:37:03.539 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.540 [info] UploadPackV2: collected 15 objects, generating pack
15:37:03.541 [info] UploadPackV2: pack generated, 952 bytes
15:37:03.541 [info] UploadPackV2: fetch response 974 bytes
.
15:37:03.606 [info] UploadPackV2: processing ls-refs command
15:37:03.607 [info] UploadPackV2: processing fetch command
15:37:03.607 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.608 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.608 [info] UploadPackV2: pack generated, 196 bytes
15:37:03.608 [info] UploadPackV2: fetch response 218 bytes
.
15:37:03.678 [info] UploadPackV2: processing ls-refs command
15:37:03.679 [info] UploadPackV2: processing fetch command
15:37:03.679 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:37:03.679 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.679 [info] UploadPackV2: pack generated, 200 bytes
15:37:03.679 [info] UploadPackV2: fetch response 256 bytes
.
15:37:03.734 [info] UploadPackV2: processing ls-refs command
15:37:03.735 [info] UploadPackV2: processing fetch command
15:37:03.735 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.736 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.736 [info] UploadPackV2: pack generated, 185 bytes
15:37:03.736 [info] UploadPackV2: fetch response 207 bytes
15:37:03.794 [info] UploadPackV2: processing ls-refs command
.
15:37:03.850 [info] UploadPackV2: processing ls-refs command
15:37:03.851 [info] UploadPackV2: processing fetch command
15:37:03.851 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:03.852 [info] UploadPackV2: collected 3 objects, generating pack
15:37:03.852 [info] UploadPackV2: pack generated, 183 bytes
15:37:03.852 [info] UploadPackV2: fetch response 205 bytes
...
15:37:49.118 [info] UploadPackV2: processing ls-refs command
15:37:49.120 [info] UploadPackV2: processing fetch command
15:37:49.120 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:37:49.120 [info] UploadPackV2: collected 3 objects, generating pack
15:37:49.120 [info] UploadPackV2: pack generated, 201 bytes
15:37:49.120 [info] UploadPackV2: fetch response 223 bytes
..
15:38:19.322 [info] UploadPackV2: processing ls-refs command
15:38:19.323 [info] UploadPackV2: processing fetch command
15:38:19.324 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:38:19.324 [info] UploadPackV2: collected 6 objects, generating pack
15:38:19.324 [info] UploadPackV2: pack generated, 365 bytes
15:38:19.324 [info] UploadPackV2: fetch response 387 bytes
....
15:39:04.658 [info] UploadPackV2: processing ls-refs command
15:39:04.660 [info] UploadPackV2: processing fetch command
15:39:04.660 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:04.661 [info] UploadPackV2: collected 6 objects, generating pack
15:39:04.661 [info] UploadPackV2: pack generated, 365 bytes
15:39:04.661 [info] UploadPackV2: fetch response 387 bytes
.
15:39:19.798 [info] UploadPackV2: processing ls-refs command
15:39:19.800 [info] UploadPackV2: processing fetch command
15:39:19.800 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:19.800 [info] UploadPackV2: collected 3 objects, generating pack
15:39:19.801 [info] UploadPackV2: pack generated, 183 bytes
15:39:19.801 [info] UploadPackV2: fetch response 205 bytes
.*****....***********
15:39:21.111 [info] UploadPackV2: processing ls-refs command
15:39:21.114 [info] UploadPackV2: processing fetch command
15:39:21.114 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.114 [info] UploadPackV2: collected 15 objects, generating pack
15:39:21.115 [info] UploadPackV2: pack generated, 919 bytes
15:39:21.115 [info] UploadPackV2: fetch response 941 bytes
.
15:39:21.146 [info] UploadPackV2: processing ls-refs command
15:39:21.149 [info] UploadPackV2: processing fetch command
15:39:21.149 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.149 [info] UploadPackV2: collected 3 objects, generating pack
15:39:21.149 [info] UploadPackV2: pack generated, 183 bytes
15:39:21.149 [info] UploadPackV2: fetch response 205 bytes
.
15:39:21.238 [info] UploadPackV2: processing fetch command
15:39:21.238 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.239 [info] UploadPackV2: collected 3 objects, generating pack
15:39:21.239 [info] UploadPackV2: pack generated, 183 bytes
15:39:21.239 [info] UploadPackV2: fetch response 205 bytes
..
15:39:21.303 [info] UploadPackV2: processing ls-refs command
15:39:21.306 [info] UploadPackV2: processing fetch command
15:39:21.306 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.311 [info] UploadPackV2: collected 180 objects, generating pack
15:39:21.313 [info] UploadPackV2: pack generated, 11106 bytes
15:39:21.313 [info] UploadPackV2: fetch response 11128 bytes
.
15:39:21.349 [info] UploadPackV2: processing ls-refs command
15:39:21.352 [info] UploadPackV2: processing fetch command
15:39:21.352 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.352 [info] UploadPackV2: collected 6 objects, generating pack
15:39:21.353 [info] UploadPackV2: pack generated, 366 bytes
15:39:21.353 [info] UploadPackV2: fetch response 388 bytes
15:39:21.379 [info] UploadPackV2: processing ls-refs command
.
15:39:21.401 [info] UploadPackV2: processing ls-refs command
15:39:21.404 [info] UploadPackV2: processing fetch command
15:39:21.404 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.405 [info] UploadPackV2: collected 9 objects, generating pack
15:39:21.405 [info] UploadPackV2: pack generated, 549 bytes
15:39:21.405 [info] UploadPackV2: fetch response 571 bytes
15:39:21.430 [info] UploadPackV2: processing ls-refs command
.
15:39:21.434 [info] The function passed as a handler with ID "telemetry-test-14723" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:39:21.435 [info] UploadPackV2: processing fetch command
15:39:21.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:21.435 [info] UploadPackV2: collected 3 objects, generating pack
15:39:21.435 [info] UploadPackV2: pack generated, 183 bytes
15:39:21.435 [info] UploadPackV2: fetch response 205 bytes
.
15:39:21.436 [info] The function passed as a handler with ID "telemetry-test-14755" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:39:21.436 [info] UploadPackV2: processing fetch command
15:39:21.436 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:21.436 [info] UploadPackV2: collected 3 objects, generating pack
15:39:21.436 [info] UploadPackV2: pack generated, 186 bytes
.
15:39:21.437 [info] UploadPackV2: fetch response 208 bytes
15:39:21.437 [info] The function passed as a handler with ID "telemetry-test-14787" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:39:21.437 [info] UploadPackV2: processing fetch command
15:39:21.437 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:39:21.437 [info] UploadPackV2: collected 2 objects, generating pack
15:39:21.437 [info] UploadPackV2: pack generated, 169 bytes
15:39:21.437 [info] UploadPackV2: fetch response 191 bytes
.
15:39:21.440 [info] The function passed as a handler with ID "telemetry-test-13250" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..
15:39:51.626 [info] UploadPackV2: processing ls-refs command
15:39:51.628 [info] UploadPackV2: processing fetch command
15:39:51.628 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:51.628 [info] UploadPackV2: collected 3 objects, generating pack
15:39:51.629 [info] UploadPackV2: pack generated, 196 bytes
15:39:51.629 [info] UploadPackV2: fetch response 218 bytes
.
15:39:51.694 [info] UploadPackV2: processing ls-refs command
15:39:51.695 [info] UploadPackV2: processing fetch command
15:39:51.695 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:51.696 [info] UploadPackV2: collected 3 objects, generating pack
15:39:51.696 [info] UploadPackV2: pack generated, 185 bytes
15:39:51.696 [info] UploadPackV2: fetch response 207 bytes
.
15:39:51.754 [info] UploadPackV2: processing ls-refs command
.
15:39:51.806 [info] UploadPackV2: processing ls-refs command
15:39:51.807 [info] UploadPackV2: processing fetch command
15:39:51.808 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:51.808 [info] UploadPackV2: collected 9 objects, generating pack
15:39:51.809 [info] UploadPackV2: pack generated, 585 bytes
15:39:51.809 [info] UploadPackV2: fetch response 681 bytes
.
15:39:51.874 [info] UploadPackV2: processing ls-refs command
.
15:39:51.926 [info] UploadPackV2: processing ls-refs command
15:39:51.929 [info] UploadPackV2: processing fetch command
15:39:51.929 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
15:39:51.930 [info] UploadPackV2: collected 3 objects, generating pack
15:39:51.930 [info] UploadPackV2: pack generated, 381 bytes
15:39:51.930 [info] UploadPackV2: fetch response 403 bytes
.
15:39:52.002 [info] UploadPackV2: processing ls-refs command
15:39:52.084 [info] UploadPackV2: processing fetch command
15:39:52.085 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:combine, [:blob_none, {:tree_depth, 1}]}, send_packfile=true
15:39:52.086 [info] UploadPackV2: collected 6 objects, generating pack
15:39:52.086 [info] UploadPackV2: pack generated, 513 bytes
15:39:52.086 [info] UploadPackV2: fetch response 535 bytes
.
15:39:52.162 [info] UploadPackV2: processing ls-refs command
15:39:52.165 [info] UploadPackV2: processing fetch command
15:39:52.165 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
15:39:52.166 [info] UploadPackV2: collected 6 objects, generating pack
15:39:52.166 [info] UploadPackV2: pack generated, 513 bytes
15:39:52.166 [info] UploadPackV2: fetch response 535 bytes
..
15:39:52.238 [info] UploadPackV2: processing ls-refs command
15:39:52.239 [info] UploadPackV2: processing fetch command
15:39:52.240 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:52.240 [info] UploadPackV2: collected 3 objects, generating pack
15:39:52.240 [info] UploadPackV2: pack generated, 216 bytes
15:39:52.240 [info] UploadPackV2: fetch response 312 bytes
15:39:52.302 [info] UploadPackV2: processing ls-refs command
15:39:52.303 [info] UploadPackV2: processing fetch command
15:39:52.303 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:52.304 [info] UploadPackV2: collected 12 objects, generating pack
15:39:52.304 [info] UploadPackV2: pack generated, 768 bytes
15:39:52.304 [info] UploadPackV2: fetch response 1002 bytes
.
15:39:52.366 [info] UploadPackV2: processing ls-refs command
15:39:52.367 [info] UploadPackV2: processing fetch command
15:39:52.368 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:52.368 [info] UploadPackV2: collected 3 objects, generating pack
15:39:52.368 [info] UploadPackV2: pack generated, 216 bytes
15:39:52.368 [info] UploadPackV2: fetch response 312 bytes
..
15:39:52.442 [info] UploadPackV2: processing ls-refs command
15:39:52.443 [info] UploadPackV2: processing fetch command
15:39:52.444 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:52.445 [info] UploadPackV2: collected 9 objects, generating pack
15:39:52.445 [info] UploadPackV2: pack generated, 549 bytes
15:39:52.445 [info] UploadPackV2: fetch response 571 bytes
15:39:52.461 [info] UploadPackV2: processing fetch command
15:39:52.461 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
15:39:52.462 [info] UploadPackV2: fetch response 171 bytes
.
15:39:52.514 [info] UploadPackV2: processing ls-refs command
15:39:52.517 [info] UploadPackV2: processing fetch command
15:39:52.517 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
15:39:52.518 [info] UploadPackV2: collected 5 objects, generating pack
15:39:52.518 [info] UploadPackV2: pack generated, 319 bytes
15:39:52.518 [info] UploadPackV2: fetch response 341 bytes
.
15:39:52.586 [info] UploadPackV2: processing ls-refs command
15:39:52.587 [info] UploadPackV2: processing fetch command
15:39:52.588 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:52.588 [info] UploadPackV2: collected 3 objects, generating pack
15:39:52.588 [info] UploadPackV2: pack generated, 218 bytes
15:39:52.588 [info] UploadPackV2: fetch response 314 bytes
.
15:39:52.658 [info] UploadPackV2: processing ls-refs command
15:39:52.661 [info] UploadPackV2: processing fetch command
15:39:52.661 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
15:39:52.662 [info] UploadPackV2: collected 3 objects, generating pack
15:39:52.662 [info] UploadPackV2: pack generated, 381 bytes
15:39:52.662 [info] UploadPackV2: fetch response 403 bytes
.
15:39:52.730 [info] UploadPackV2: processing ls-refs command
.
15:39:52.786 [info] UploadPackV2: processing ls-refs command
.............................
15:39:52.902 [info] UploadPackV2: processing ls-refs command
15:39:52.903 [info] UploadPackV2: processing fetch command
15:39:52.903 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
15:39:52.903 [info] UploadPackV2: collected 3 objects, generating pack
15:39:52.903 [info] UploadPackV2: pack generated, 216 bytes
15:39:52.903 [info] UploadPackV2: fetch response 346 bytes
.
15:39:52.966 [info] UploadPackV2: processing ls-refs command
15:39:52.966 [info] UploadPackV2: processing ls-refs command
15:39:52.968 [info] UploadPackV2: processing fetch command
15:39:52.968 [info] UploadPackV2: processing fetch command
15:39:52.968 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:52.968 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:52.969 [info] UploadPackV2: collected 6 objects, generating pack
15:39:52.969 [info] UploadPackV2: collected 6 objects, generating pack
15:39:52.969 [info] UploadPackV2: pack generated, 365 bytes
15:39:52.969 [info] UploadPackV2: pack generated, 365 bytes
15:39:52.969 [info] UploadPackV2: fetch response 387 bytes
15:39:52.969 [info] UploadPackV2: fetch response 387 bytes
.
15:39:53.050 [info] UploadPackV2: processing ls-refs command
15:39:53.052 [info] UploadPackV2: processing fetch command
15:39:53.052 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:53.052 [info] UploadPackV2: collected 6 objects, generating pack
15:39:53.053 [info] UploadPackV2: pack generated, 366 bytes
15:39:53.053 [info] UploadPackV2: fetch response 388 bytes
15:39:53.114 [info] UploadPackV2: processing ls-refs command
15:39:53.115 [info] UploadPackV2: processing fetch command
15:39:53.115 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
15:39:53.115 [info] UploadPackV2: fetch response 32 bytes
15:39:53.115 [info] UploadPackV2: processing fetch command
15:39:53.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:53.116 [info] UploadPackV2: collected 3 objects, generating pack
15:39:53.116 [info] UploadPackV2: pack generated, 183 bytes
15:39:53.116 [info] UploadPackV2: fetch response 205 bytes
.
15:39:53.198 [info] UploadPackV2: processing ls-refs command
15:39:53.199 [info] UploadPackV2: processing fetch command
15:39:53.200 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:39:53.200 [info] UploadPackV2: collected 6 objects, generating pack
15:39:53.200 [info] UploadPackV2: pack generated, 365 bytes
15:39:53.200 [info] UploadPackV2: fetch response 387 bytes
.
15:40:08.203 [info] UploadPackV2: processing fetch command
15:40:08.203 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:40:08.203 [info] UploadPackV2: collected 3 objects, generating pack
15:40:08.204 [info] UploadPackV2: pack generated, 183 bytes
15:40:08.204 [info] UploadPackV2: fetch response 205 bytes
.
15:40:08.258 [info] UploadPackV2: processing ls-refs command
15:40:08.260 [info] UploadPackV2: processing fetch command
15:40:08.260 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:40:08.261 [info] UploadPackV2: collected 6 objects, generating pack
15:40:08.261 [info] UploadPackV2: pack generated, 365 bytes
15:40:08.261 [info] UploadPackV2: fetch response 387 bytes
15:40:08.277 [info] UploadPackV2: processing fetch command
15:40:08.277 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
15:40:08.277 [info] UploadPackV2: fetch response 122 bytes
.
15:40:08.398 [info] UploadPackV2: processing ls-refs command
15:40:08.399 [info] UploadPackV2: processing fetch command
15:40:08.400 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:40:08.400 [info] UploadPackV2: collected 6 objects, generating pack
15:40:08.400 [info] UploadPackV2: pack generated, 365 bytes
15:40:08.400 [info] UploadPackV2: fetch response 387 bytes
15:40:10.334 [info] UploadPackV2: processing ls-refs command
.
15:40:10.390 [info] UploadPackV2: processing ls-refs command
15:40:10.391 [info] UploadPackV2: processing fetch command
15:40:10.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:40:10.392 [info] UploadPackV2: collected 9 objects, generating pack
15:40:10.392 [info] UploadPackV2: pack generated, 547 bytes
15:40:10.392 [info] UploadPackV2: fetch response 569 bytes
15:40:10.474 [info] UploadPackV2: processing ls-refs command
.
15:40:10.542 [info] UploadPackV2: processing ls-refs command
15:40:10.543 [info] UploadPackV2: processing fetch command
15:40:10.543 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
15:40:10.545 [info] UploadPackV2: collected 90 objects, generating pack
15:40:10.547 [info] UploadPackV2: pack generated, 5649 bytes
15:40:10.547 [info] UploadPackV2: fetch response 5671 bytes
15:40:10.794 [info] UploadPackV2: processing ls-refs command
..
15:40:10.805 [info] The function passed as a handler with ID "graph-query-test-15043" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.....
15:40:10.809 [info] The function passed as a handler with ID "graph-query-test-15107" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
....
15:40:10.817 [info] The function passed as a handler with ID "graph-query-test-15139" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
....
15:40:10.824 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303409501" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:40:10.824 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303409469" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
15:40:10.825 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303409535" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:40:10.825 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303409437" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
15:40:10.826 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303409503" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:40:10.826 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303409405" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
15:40:10.827 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303409373" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
15:40:10.827 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303409341" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
Finished in 199.9 seconds (11.8s async, 188.1s sync)
Result: 1006 passed (2 properties, 1004 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info