ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 5 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 322463, max_cases: 8
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
Excluding tags: [:s3]
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1131 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1131:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
.......................................................................................
23:27:16.073 [info] The function passed as a handler with ID "test-#Reference<0.3247557299.2523398148.57759>" 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
.
23:27:16.139 [info] The function passed as a handler with ID "test-fail-#Reference<0.3247557299.2523398148.62127>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1161 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1161:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: 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
...............................................................................................
23:27:17.208 [info] UploadPackV2: processing fetch command
.
23:27:17.209 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.209 [info] UploadPackV2: collected 3 objects, generating pack
23:27:17.209 [info] UploadPackV2: pack generated, 195 bytes
23:27:17.209 [info] UploadPackV2: fetch response 217 bytes
23:27:17.210 [info] UploadPackV2: processing fetch command
23:27:17.210 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.211 [info] UploadPackV2: collected 3 objects, generating pack
23:27:17.211 [info] UploadPackV2: pack generated, 223 bytes
23:27:17.215 [info] UploadPackV2: fetch response 245 bytes
23:27:17.257 [info] UploadPackV2: processing fetch command
23:27:17.257 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.276 [info] UploadPackV2: collected 600 objects, generating pack
23:27:17.289 [info] UploadPackV2: pack generated, 39862 bytes
23:27:17.289 [info] UploadPackV2: fetch response 39884 bytes
.....
23:27:17.343 [info] UploadPackV2: processing fetch command
.
23:27:17.343 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.344 [info] UploadPackV2: collected 3 objects, generating pack
.
23:27:17.344 [info] UploadPackV2: pack generated, 191 bytes
.
23:27:17.344 [info] UploadPackV2: fetch response 213 bytes
.
23:27:17.344 [info] UploadPackV2: processing fetch command
.
23:27:17.344 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.345 [info] UploadPackV2: collected 3 objects, streaming pack
.
23:27:17.345 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
23:27:17.345 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
23:27:17.346 [info] UploadPackV2: processing fetch command
.
23:27:17.346 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.346 [info] UploadPackV2: collected 3 objects, generating pack
.
23:27:17.346 [info] UploadPackV2: pack generated, 195 bytes
.
23:27:17.347 [info] UploadPackV2: fetch response 217 bytes
.
23:27:17.348 [info] UploadPackV2: processing fetch command
.
23:27:17.348 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.348 [info] UploadPackV2: collected 3 objects, generating pack
23:27:17.348 [info] UploadPackV2: pack generated, 191 bytes
23:27:17.348 [info] UploadPackV2: fetch response 213 bytes
.
23:27:17.349 [info] UploadPackV2: processing fetch command
23:27:17.350 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.351 [info] UploadPackV2: collected 15 objects, generating pack
23:27:17.352 [info] UploadPackV2: pack generated, 984 bytes
23:27:17.352 [info] UploadPackV2: fetch response 1006 bytes
23:27:17.352 [info] UploadPackV2: processing fetch command
.
23:27:17.353 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
.
23:27:17.354 [info] UploadPackV2: collected 15 objects, streaming pack
23:27:17.356 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
23:27:17.395 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
23:27:17.396 [info] UploadPackV2: processing ls-refs command
23:27:17.396 [info] UploadPackV2: processing ls-refs command
23:27:17.409 [info] UploadPackV2: processing ls-refs command
23:27:17.410 [info] UploadPackV2: processing fetch command
.
23:27:17.410 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.410 [info] UploadPackV2: collected 3 objects, generating pack
.
23:27:17.410 [info] UploadPackV2: pack generated, 210 bytes
.
23:27:17.410 [info] UploadPackV2: fetch response 232 bytes
.....
23:27:17.524 [warning] post_receive hook failed: "webhook failed"
.
23:27:17.529 [info] UploadPackV2: processing fetch command
.
23:27:17.529 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.529 [info] UploadPackV2: collected 3 objects, generating pack
.
23:27:17.529 [info] UploadPackV2: pack generated, 194 bytes
.
23:27:17.529 [info] UploadPackV2: fetch response 216 bytes
.
23:27:17.540 [info] UploadPackV2: processing fetch command
.
23:27:17.541 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.542 [info] UploadPackV2: collected 3 objects, streaming pack
.
23:27:17.550 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
..
23:27:17.555 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
23:27:17.558 [info] UploadPackV2: processing fetch command
23:27:17.558 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.558 [info] UploadPackV2: collected 6 objects, generating pack
23:27:17.558 [info] UploadPackV2: pack generated, 414 bytes
23:27:17.558 [info] UploadPackV2: fetch response 436 bytes
23:27:17.663 [info] UploadPackV2: processing fetch command
23:27:17.663 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.707 [info] UploadPackV2: collected 700 objects, generating pack
23:27:17.719 [info] UploadPackV2: pack generated, 48139 bytes
23:27:17.719 [info] UploadPackV2: fetch response 48161 bytes
......
23:27:17.749 [info] The function passed as a handler with ID #Reference<0.3247557299.2523398148.94634> 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
...
23:27:17.769 [info] UploadPackV2: processing fetch command
.
23:27:17.769 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.769 [info] UploadPackV2: collected 3 objects, generating pack
.
23:27:17.769 [info] UploadPackV2: pack generated, 191 bytes
.
23:27:17.769 [info] UploadPackV2: fetch response 213 bytes
.
23:27:17.782 [info] UploadPackV2: processing fetch command
.
23:27:17.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.791 [info] UploadPackV2: collected 90 objects, generating pack
.
23:27:17.793 [info] UploadPackV2: pack generated, 5946 bytes
.
23:27:17.793 [info] UploadPackV2: fetch response 5968 bytes
.
23:27:17.802 [info] UploadPackV2: processing ls-refs command
.
23:27:17.803 [info] UploadPackV2: processing fetch command
.
23:27:17.803 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
23:27:17.803 [info] UploadPackV2: fetch response 73 bytes
23:27:17.803 [info] UploadPackV2: processing fetch command
23:27:17.803 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
23:27:17.803 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
848 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:848:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
23:27:17.830 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
23:27:17.832 [info] UploadPackV2: processing fetch command
.
23:27:17.832 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:17.832 [info] UploadPackV2: collected 15 objects, generating pack
.
23:27:17.833 [info] UploadPackV2: pack generated, 984 bytes
.
23:27:17.833 [info] UploadPackV2: fetch response 1006 bytes
23:27:17.836 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
23:27:17.837 [info] UploadPackV2: processing ls-refs command
23:27:17.837 [info] UploadPackV2: processing fetch command
23:27:17.837 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:17.837 [info] UploadPackV2: collected 3 objects, generating pack
23:27:17.838 [info] UploadPackV2: pack generated, 206 bytes
23:27:17.838 [info] UploadPackV2: fetch response 228 bytes
23:27:17.838 [info] UploadPackV2: processing ls-refs command
23:27:18.030 [info] UploadPackV2: processing fetch command
23:27:18.030 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
23:27:18.049 [info] UploadPackV2: collected 32 objects, streaming pack
...................
23:27:18.237 [info] UploadPackV2: streamed pack 2459751 bytes, 32 objects
23:27:18.237 [info] UploadPackV2: fetch streamed 2459751 pack bytes, 32 objects
warning: module attribute @git_lfs_available was set but never used
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
...................
23:27:18.484 [info] UploadPackV2: processing fetch command
.
23:27:18.484 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:18.484 [info] UploadPackV2: collected 9 objects, streaming pack
23:27:18.485 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
23:27:18.485 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
23:27:18.487 [info] UploadPackV2: processing fetch command
23:27:18.487 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:18.487 [info] UploadPackV2: collected 0 objects, generating pack
23:27:18.487 [info] UploadPackV2: pack generated, 32 bytes
23:27:18.487 [info] UploadPackV2: fetch response 54 bytes
23:27:18.596 [info] UploadPackV2: processing fetch command
.
23:27:18.596 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:18.608 [info] UploadPackV2: collected 32 objects, generating pack
23:27:18.730 [info] UploadPackV2: pack generated, 2459814 bytes
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
23:27:18.742 [info] UploadPackV2: fetch response 2460021 bytes
23:27:18.742 [info] UploadPackV2: processing fetch command
23:27:18.742 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:18.762 [info] UploadPackV2: collected 32 objects, streaming pack
23:27:18.881 [info] UploadPackV2: streamed pack 2459814 bytes, 32 objects
.
23:27:18.881 [info] UploadPackV2: fetch streamed 2459814 pack bytes, 32 objects
.............................................
23:27:19.526 [info] UploadPackV2: processing fetch command
.
23:27:19.526 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
........
23:27:19.536 [info] UploadPackV2: collected 27 objects, generating pack
23:27:19.538 [info] UploadPackV2: pack generated, 1614 bytes
23:27:19.538 [info] UploadPackV2: fetch response 1636 bytes
23:27:19.545 [info] UploadPackV2: processing fetch command
23:27:19.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.547 [info] UploadPackV2: collected 27 objects, generating pack
23:27:19.551 [info] UploadPackV2: pack generated, 1676 bytes
23:27:19.551 [info] UploadPackV2: fetch response 1698 bytes
.
23:27:19.558 [info] UploadPackV2: processing fetch command
23:27:19.558 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.559 [info] UploadPackV2: collected 4 objects, generating pack
23:27:19.560 [info] UploadPackV2: pack generated, 241 bytes
23:27:19.560 [info] UploadPackV2: fetch response 263 bytes
23:27:19.573 [info] UploadPackV2: processing fetch command
23:27:19.573 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.574 [info] UploadPackV2: collected 23 objects, generating pack
23:27:19.574 [info] UploadPackV2: pack generated, 1435 bytes
23:27:19.574 [info] UploadPackV2: fetch response 1457 bytes
23:27:19.585 [info] UploadPackV2: processing fetch command
23:27:19.585 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.592 [info] UploadPackV2: collected 54 objects, generating pack
23:27:19.593 [info] UploadPackV2: pack generated, 3296 bytes
23:27:19.593 [info] UploadPackV2: fetch response 3318 bytes
23:27:19.603 [info] UploadPackV2: processing fetch command
23:27:19.603 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.605 [info] UploadPackV2: collected 40 objects, generating pack
23:27:19.608 [info] UploadPackV2: pack generated, 2344 bytes
23:27:19.608 [info] UploadPackV2: fetch response 2366 bytes
23:27:19.617 [info] UploadPackV2: processing fetch command
23:27:19.618 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.619 [info] UploadPackV2: collected 27 objects, generating pack
23:27:19.620 [info] UploadPackV2: pack generated, 1626 bytes
23:27:19.620 [info] UploadPackV2: fetch response 1648 bytes
23:27:19.631 [info] UploadPackV2: processing fetch command
23:27:19.631 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.632 [info] UploadPackV2: collected 4 objects, generating pack
23:27:19.632 [info] UploadPackV2: pack generated, 241 bytes
23:27:19.632 [info] UploadPackV2: fetch response 263 bytes
23:27:19.637 [info] UploadPackV2: processing fetch command
23:27:19.637 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.638 [info] UploadPackV2: collected 26 objects, generating pack
23:27:19.640 [info] UploadPackV2: pack generated, 1619 bytes
23:27:19.640 [info] UploadPackV2: fetch response 1641 bytes
23:27:19.648 [info] UploadPackV2: processing fetch command
23:27:19.648 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.648 [info] UploadPackV2: collected 11 objects, generating pack
23:27:19.649 [info] UploadPackV2: pack generated, 714 bytes
23:27:19.649 [info] UploadPackV2: fetch response 736 bytes
23:27:19.662 [info] UploadPackV2: processing fetch command
23:27:19.662 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.663 [info] UploadPackV2: collected 28 objects, generating pack
23:27:19.664 [info] UploadPackV2: pack generated, 1652 bytes
23:27:19.664 [info] UploadPackV2: fetch response 1674 bytes
.
23:27:19.670 [info] UploadPackV2: processing fetch command
23:27:19.670 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.675 [info] UploadPackV2: collected 54 objects, generating pack
23:27:19.676 [info] UploadPackV2: pack generated, 3299 bytes
23:27:19.676 [info] UploadPackV2: fetch response 3321 bytes
23:27:19.683 [info] UploadPackV2: processing fetch command
23:27:19.683 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.684 [info] UploadPackV2: collected 15 objects, generating pack
23:27:19.684 [info] UploadPackV2: pack generated, 958 bytes
23:27:19.684 [info] UploadPackV2: fetch response 980 bytes
23:27:19.687 [info] UploadPackV2: processing fetch command
23:27:19.687 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.688 [info] UploadPackV2: collected 23 objects, generating pack
23:27:19.688 [info] UploadPackV2: pack generated, 1435 bytes
23:27:19.689 [info] UploadPackV2: fetch response 1457 bytes
23:27:19.692 [info] UploadPackV2: processing fetch command
23:27:19.692 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.692 [info] UploadPackV2: collected 7 objects, generating pack
23:27:19.693 [info] UploadPackV2: pack generated, 475 bytes
23:27:19.693 [info] UploadPackV2: fetch response 497 bytes
23:27:19.697 [info] UploadPackV2: processing fetch command
23:27:19.700 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.703 [info] UploadPackV2: collected 36 objects, generating pack
23:27:19.704 [info] UploadPackV2: pack generated, 2132 bytes
23:27:19.704 [info] UploadPackV2: fetch response 2154 bytes
23:27:19.713 [info] UploadPackV2: processing fetch command
23:27:19.713 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.714 [info] UploadPackV2: collected 23 objects, generating pack
23:27:19.714 [info] UploadPackV2: pack generated, 1383 bytes
23:27:19.715 [info] UploadPackV2: fetch response 1405 bytes
23:27:19.719 [info] UploadPackV2: processing fetch command
23:27:19.719 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.720 [info] UploadPackV2: collected 28 objects, generating pack
23:27:19.721 [info] UploadPackV2: pack generated, 1652 bytes
23:27:19.721 [info] UploadPackV2: fetch response 1674 bytes
23:27:19.726 [info] UploadPackV2: processing fetch command
23:27:19.726 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.727 [info] UploadPackV2: collected 15 objects, generating pack
23:27:19.727 [info] UploadPackV2: pack generated, 923 bytes
23:27:19.727 [info] UploadPackV2: fetch response 945 bytes
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
23:27:19.732 [info] UploadPackV2: processing fetch command
23:27:19.732 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.734 [info] UploadPackV2: collected 36 objects, generating pack
23:27:19.734 [info] UploadPackV2: pack generated, 2132 bytes
23:27:19.735 [info] UploadPackV2: fetch response 2154 bytes
23:27:19.741 [info] UploadPackV2: processing fetch command
23:27:19.741 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.742 [info] UploadPackV2: collected 34 objects, generating pack
23:27:19.749 [info] UploadPackV2: pack generated, 2098 bytes
23:27:19.749 [info] UploadPackV2: fetch response 2120 bytes
23:27:19.771 [info] UploadPackV2: processing fetch command
23:27:19.803 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.804 [info] UploadPackV2: collected 31 objects, generating pack
23:27:19.805 [info] UploadPackV2: pack generated, 1867 bytes
23:27:19.805 [info] UploadPackV2: fetch response 1889 bytes
23:27:19.817 [info] UploadPackV2: processing fetch command
23:27:19.817 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.818 [info] UploadPackV2: collected 20 objects, generating pack
23:27:19.823 [info] UploadPackV2: pack generated, 1170 bytes
23:27:19.823 [info] UploadPackV2: fetch response 1192 bytes
23:27:19.831 [info] UploadPackV2: processing fetch command
23:27:19.831 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.839 [info] UploadPackV2: collected 36 objects, generating pack
.
23:27:19.843 [info] UploadPackV2: pack generated, 2104 bytes
23:27:19.843 [info] UploadPackV2: fetch response 2126 bytes
23:27:19.851 [info] UploadPackV2: processing fetch command
23:27:19.851 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.851 [info] UploadPackV2: collected 4 objects, generating pack
23:27:19.851 [info] UploadPackV2: pack generated, 241 bytes
.
23:27:19.851 [info] UploadPackV2: fetch response 263 bytes
.
23:27:19.853 [info] UploadPackV2: processing fetch command
23:27:19.857 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:19.858 [info] UploadPackV2: collected 7 objects, generating pack
23:27:19.858 [info] UploadPackV2: pack generated, 475 bytes
23:27:19.858 [info] UploadPackV2: fetch response 497 bytes
23:27:19.866 [info] UploadPackV2: processing fetch command
23:27:19.866 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.866 [info] UploadPackV2: collected 7 objects, generating pack
23:27:19.867 [info] UploadPackV2: pack generated, 475 bytes
23:27:19.869 [info] UploadPackV2: fetch response 497 bytes
23:27:19.880 [info] UploadPackV2: processing fetch command
23:27:19.880 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.881 [info] UploadPackV2: collected 4 objects, generating pack
23:27:19.881 [info] UploadPackV2: pack generated, 241 bytes
23:27:19.881 [info] UploadPackV2: fetch response 263 bytes
23:27:19.885 [info] UploadPackV2: processing fetch command
23:27:19.886 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.886 [info] UploadPackV2: collected 8 objects, generating pack
23:27:19.886 [info] UploadPackV2: pack generated, 482 bytes
23:27:19.886 [info] UploadPackV2: fetch response 504 bytes
23:27:19.898 [info] UploadPackV2: processing fetch command
23:27:19.898 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.902 [info] UploadPackV2: collected 24 objects, generating pack
23:27:19.903 [info] UploadPackV2: pack generated, 1443 bytes
23:27:19.903 [info] UploadPackV2: fetch response 1465 bytes
23:27:19.907 [info] UploadPackV2: processing fetch command
23:27:19.907 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.911 [info] UploadPackV2: collected 24 objects, generating pack
23:27:19.911 [info] UploadPackV2: pack generated, 1443 bytes
23:27:19.911 [info] UploadPackV2: fetch response 1465 bytes
23:27:19.916 [info] UploadPackV2: processing fetch command
23:27:19.916 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.917 [info] UploadPackV2: collected 16 objects, generating pack
23:27:19.917 [info] UploadPackV2: pack generated, 962 bytes
23:27:19.917 [info] UploadPackV2: fetch response 984 bytes
23:27:19.920 [info] UploadPackV2: processing fetch command
23:27:19.920 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.925 [info] UploadPackV2: collected 15 objects, generating pack
23:27:19.926 [info] UploadPackV2: pack generated, 956 bytes
23:27:19.926 [info] UploadPackV2: fetch response 978 bytes
23:27:19.933 [info] UploadPackV2: processing fetch command
23:27:19.933 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.940 [info] UploadPackV2: collected 55 objects, generating pack
23:27:19.941 [info] UploadPackV2: pack generated, 3296 bytes
23:27:19.941 [info] UploadPackV2: fetch response 3318 bytes
23:27:19.951 [info] UploadPackV2: processing fetch command
23:27:19.952 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.952 [info] UploadPackV2: collected 14 objects, generating pack
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
23:27:19.953 [info] UploadPackV2: pack generated, 897 bytes
23:27:19.953 [info] UploadPackV2: fetch response 919 bytes
23:27:19.960 [info] UploadPackV2: processing fetch command
23:27:19.960 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.963 [info] UploadPackV2: collected 7 objects, generating pack
23:27:19.963 [info] UploadPackV2: pack generated, 475 bytes
23:27:19.964 [info] UploadPackV2: fetch response 497 bytes
23:27:19.967 [info] UploadPackV2: processing fetch command
23:27:19.967 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.968 [info] UploadPackV2: collected 4 objects, generating pack
23:27:19.969 [info] UploadPackV2: pack generated, 241 bytes
.
23:27:19.969 [info] UploadPackV2: fetch response 263 bytes
23:27:19.977 [info] UploadPackV2: processing fetch command
23:27:19.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:19.978 [info] UploadPackV2: collected 24 objects, generating pack
23:27:19.978 [info] UploadPackV2: pack generated, 1443 bytes
23:27:19.980 [info] UploadPackV2: fetch response 1465 bytes
23:27:19.989 [info] UploadPackV2: processing fetch command
23:27:19.989 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:27:19.989 [info] UploadPackV2: collected 11 objects, generating pack
23:27:19.990 [info] UploadPackV2: pack generated, 714 bytes
23:27:19.990 [info] UploadPackV2: fetch response 736 bytes
23:27:20.001 [info] UploadPackV2: processing fetch command
23:27:20.001 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.016 [info] UploadPackV2: collected 51 objects, generating pack
23:27:20.017 [info] UploadPackV2: pack generated, 3056 bytes
23:27:20.017 [info] UploadPackV2: fetch response 3078 bytes
23:27:20.031 [info] UploadPackV2: processing fetch command
23:27:20.031 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.032 [info] UploadPackV2: collected 31 objects, generating pack
23:27:20.033 [info] UploadPackV2: pack generated, 1885 bytes
23:27:20.033 [info] UploadPackV2: fetch response 1907 bytes
23:27:20.038 [info] UploadPackV2: processing fetch command
23:27:20.038 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.039 [info] UploadPackV2: collected 11 objects, generating pack
23:27:20.039 [info] UploadPackV2: pack generated, 714 bytes
23:27:20.039 [info] UploadPackV2: fetch response 736 bytes
23:27:20.043 [info] UploadPackV2: processing fetch command
23:27:20.043 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.045 [info] UploadPackV2: collected 47 objects, generating pack
23:27:20.045 [info] UploadPackV2: pack generated, 2817 bytes
23:27:20.046 [info] UploadPackV2: fetch response 2839 bytes
23:27:20.071 [info] UploadPackV2: processing fetch command
23:27:20.071 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.074 [info] UploadPackV2: collected 34 objects, generating pack
23:27:20.076 [info] UploadPackV2: pack generated, 2097 bytes
23:27:20.076 [info] UploadPackV2: fetch response 2119 bytes
23:27:20.082 [info] UploadPackV2: processing fetch command
23:27:20.082 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.083 [info] UploadPackV2: collected 19 objects, generating pack
23:27:20.083 [info] UploadPackV2: pack generated, 1194 bytes
23:27:20.083 [info] UploadPackV2: fetch response 1216 bytes
23:27:20.088 [info] UploadPackV2: processing fetch command
23:27:20.088 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.089 [info] UploadPackV2: collected 23 objects, generating pack
23:27:20.089 [info] UploadPackV2: pack generated, 1403 bytes
23:27:20.089 [info] UploadPackV2: fetch response 1425 bytes
23:27:20.094 [info] UploadPackV2: processing fetch command
23:27:20.094 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.095 [info] UploadPackV2: collected 23 objects, generating pack
23:27:20.095 [info] UploadPackV2: pack generated, 1435 bytes
23:27:20.095 [info] UploadPackV2: fetch response 1457 bytes
23:27:20.099 [info] UploadPackV2: processing fetch command
23:27:20.099 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.101 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.101 [info] UploadPackV2: pack generated, 1676 bytes
.
23:27:20.103 [info] UploadPackV2: fetch response 1698 bytes
23:27:20.107 [info] UploadPackV2: processing fetch command
23:27:20.108 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.108 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.108 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.108 [info] UploadPackV2: fetch response 497 bytes
23:27:20.113 [info] UploadPackV2: processing fetch command
23:27:20.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.114 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.115 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.115 [info] UploadPackV2: fetch response 497 bytes
23:27:20.119 [info] UploadPackV2: processing fetch command
23:27:20.120 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.120 [info] UploadPackV2: collected 8 objects, generating pack
23:27:20.120 [info] UploadPackV2: pack generated, 482 bytes
23:27:20.122 [info] UploadPackV2: fetch response 504 bytes
23:27:20.124 [info] UploadPackV2: processing fetch command
23:27:20.125 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.125 [info] UploadPackV2: collected 20 objects, generating pack
23:27:20.125 [info] UploadPackV2: pack generated, 1203 bytes
23:27:20.126 [info] UploadPackV2: fetch response 1225 bytes
23:27:20.139 [info] UploadPackV2: processing fetch command
23:27:20.170 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.174 [info] UploadPackV2: collected 15 objects, generating pack
23:27:20.177 [info] UploadPackV2: pack generated, 958 bytes
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: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: variable "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
23:27:20.178 [info] UploadPackV2: fetch response 980 bytes
23:27:20.182 [info] UploadPackV2: processing fetch command
23:27:20.182 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.183 [info] UploadPackV2: collected 24 objects, generating pack
23:27:20.184 [info] UploadPackV2: pack generated, 1443 bytes
23:27:20.184 [info] UploadPackV2: fetch response 1465 bytes
23:27:20.189 [info] UploadPackV2: processing fetch command
23:27:20.189 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.190 [info] UploadPackV2: collected 34 objects, generating pack
23:27:20.191 [info] UploadPackV2: pack generated, 2099 bytes
23:27:20.191 [info] UploadPackV2: fetch response 2121 bytes
23:27:20.197 [info] UploadPackV2: processing fetch command
23:27:20.197 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.199 [info] UploadPackV2: collected 31 objects, generating pack
23:27:20.200 [info] UploadPackV2: pack generated, 1887 bytes
23:27:20.200 [info] UploadPackV2: fetch response 1909 bytes
23:27:20.208 [info] UploadPackV2: processing fetch command
23:27:20.208 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.208 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.208 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.209 [info] UploadPackV2: fetch response 497 bytes
23:27:20.212 [info] UploadPackV2: processing fetch command
23:27:20.212 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.213 [info] UploadPackV2: collected 20 objects, generating pack
23:27:20.213 [info] UploadPackV2: pack generated, 1203 bytes
23:27:20.213 [info] UploadPackV2: fetch response 1225 bytes
23:27:20.217 [info] UploadPackV2: processing fetch command
23:27:20.217 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.217 [info] UploadPackV2: collected 8 objects, generating pack
23:27:20.217 [info] UploadPackV2: pack generated, 482 bytes
23:27:20.217 [info] UploadPackV2: fetch response 504 bytes
23:27:20.225 [info] UploadPackV2: processing fetch command
23:27:20.225 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.227 [info] UploadPackV2: collected 31 objects, generating pack
23:27:20.228 [info] UploadPackV2: pack generated, 1887 bytes
23:27:20.228 [info] UploadPackV2: fetch response 1909 bytes
23:27:20.234 [info] UploadPackV2: processing fetch command
23:27:20.234 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.236 [info] UploadPackV2: collected 47 objects, generating pack
23:27:20.237 [info] UploadPackV2: pack generated, 2813 bytes
23:27:20.237 [info] UploadPackV2: fetch response 2835 bytes
23:27:20.247 [info] UploadPackV2: processing fetch command
23:27:20.291 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.301 [info] UploadPackV2: collected 15 objects, generating pack
23:27:20.301 [info] UploadPackV2: pack generated, 956 bytes
23:27:20.301 [info] UploadPackV2: fetch response 978 bytes
23:27:20.307 [info] UploadPackV2: processing fetch command
23:27:20.307 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.308 [info] UploadPackV2: collected 28 objects, generating pack
23:27:20.309 [info] UploadPackV2: pack generated, 1652 bytes
23:27:20.309 [info] UploadPackV2: fetch response 1674 bytes
23:27:20.313 [info] UploadPackV2: processing fetch command
23:27:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.314 [info] UploadPackV2: collected 11 objects, generating pack
23:27:20.314 [info] UploadPackV2: pack generated, 717 bytes
23:27:20.314 [info] UploadPackV2: fetch response 739 bytes
23:27:20.318 [info] UploadPackV2: processing fetch command
23:27:20.318 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.333 [info] UploadPackV2: collected 31 objects, generating pack
23:27:20.334 [info] UploadPackV2: pack generated, 1887 bytes
23:27:20.334 [info] UploadPackV2: fetch response 1909 bytes
23:27:20.348 [info] UploadPackV2: processing fetch command
23:27:20.349 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.349 [info] UploadPackV2: collected 19 objects, generating pack
23:27:20.350 [info] UploadPackV2: pack generated, 1194 bytes
23:27:20.350 [info] UploadPackV2: fetch response 1216 bytes
23:27:20.359 [info] UploadPackV2: processing fetch command
23:27:20.359 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.360 [info] UploadPackV2: collected 16 objects, generating pack
23:27:20.360 [info] UploadPackV2: pack generated, 962 bytes
23:27:20.360 [info] UploadPackV2: fetch response 984 bytes
23:27:20.368 [info] UploadPackV2: processing fetch command
23:27:20.368 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.369 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.369 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.369 [info] UploadPackV2: fetch response 497 bytes
warning: default values for the optional arguments in the private function http_post/4 are never used
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
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
23:27:20.375 [info] UploadPackV2: processing fetch command
23:27:20.376 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.377 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.377 [info] UploadPackV2: pack generated, 1676 bytes
23:27:20.377 [info] UploadPackV2: fetch response 1698 bytes
23:27:20.391 [info] UploadPackV2: processing fetch command
23:27:20.391 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.393 [info] UploadPackV2: collected 54 objects, generating pack
23:27:20.394 [info] UploadPackV2: pack generated, 3295 bytes
23:27:20.394 [info] UploadPackV2: fetch response 3317 bytes
23:27:20.401 [info] UploadPackV2: processing fetch command
23:27:20.401 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.402 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.402 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.402 [info] UploadPackV2: fetch response 497 bytes
23:27:20.405 [info] UploadPackV2: processing fetch command
23:27:20.405 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.406 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.410 [info] UploadPackV2: pack generated, 1678 bytes
23:27:20.410 [info] UploadPackV2: fetch response 1700 bytes
23:27:20.420 [info] UploadPackV2: processing fetch command
23:27:20.420 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.422 [info] UploadPackV2: collected 36 objects, generating pack
23:27:20.426 [info] UploadPackV2: pack generated, 2102 bytes
23:27:20.426 [info] UploadPackV2: fetch response 2124 bytes
23:27:20.431 [info] UploadPackV2: processing fetch command
23:27:20.431 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.431 [info] UploadPackV2: collected 22 objects, generating pack
23:27:20.432 [info] UploadPackV2: pack generated, 1380 bytes
23:27:20.432 [info] UploadPackV2: fetch response 1402 bytes
23:27:20.437 [info] UploadPackV2: processing fetch command
.
23:27:20.437 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.438 [info] UploadPackV2: collected 19 objects, generating pack
23:27:20.439 [info] UploadPackV2: pack generated, 1194 bytes
23:27:20.439 [info] UploadPackV2: fetch response 1216 bytes
23:27:20.442 [info] UploadPackV2: processing fetch command
23:27:20.442 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.442 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.446 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.446 [info] UploadPackV2: fetch response 497 bytes
23:27:20.448 [info] UploadPackV2: processing fetch command
23:27:20.448 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.449 [info] UploadPackV2: collected 7 objects, generating pack
23:27:20.449 [info] UploadPackV2: pack generated, 475 bytes
23:27:20.449 [info] UploadPackV2: fetch response 497 bytes
23:27:20.453 [info] UploadPackV2: processing fetch command
23:27:20.453 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.454 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.454 [info] UploadPackV2: pack generated, 1678 bytes
23:27:20.455 [info] UploadPackV2: fetch response 1700 bytes
23:27:20.461 [info] UploadPackV2: processing fetch command
23:27:20.461 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.468 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.469 [info] UploadPackV2: pack generated, 1676 bytes
23:27:20.469 [info] UploadPackV2: fetch response 1698 bytes
23:27:20.481 [info] UploadPackV2: processing fetch command
23:27:20.481 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:20.483 [info] UploadPackV2: collected 39 objects, generating pack
23:27:20.484 [info] UploadPackV2: pack generated, 2347 bytes
23:27:20.484 [info] UploadPackV2: fetch response 2369 bytes
23:27:20.490 [info] UploadPackV2: processing fetch command
23:27:20.490 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.491 [info] UploadPackV2: collected 20 objects, generating pack
23:27:20.492 [info] UploadPackV2: pack generated, 1428 bytes
23:27:20.492 [info] UploadPackV2: fetch response 1450 bytes
23:27:20.497 [info] UploadPackV2: processing fetch command
23:27:20.497 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.498 [info] UploadPackV2: collected 20 objects, generating pack
23:27:20.500 [info] UploadPackV2: pack generated, 1490 bytes
23:27:20.517 [info] UploadPackV2: fetch response 1512 bytes
23:27:20.525 [info] UploadPackV2: processing fetch command
23:27:20.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.525 [info] UploadPackV2: collected 3 objects, generating pack
23:27:20.525 [info] UploadPackV2: pack generated, 214 bytes
.
23:27:20.526 [info] UploadPackV2: fetch response 236 bytes
23:27:20.537 [info] UploadPackV2: processing fetch command
23:27:20.537 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.538 [info] UploadPackV2: collected 17 objects, generating pack
23:27:20.543 [info] UploadPackV2: pack generated, 1276 bytes
23:27:20.543 [info] UploadPackV2: fetch response 1298 bytes
23:27:20.560 [info] UploadPackV2: processing fetch command
23:27:20.560 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.561 [info] UploadPackV2: collected 40 objects, generating pack
23:27:20.567 [info] UploadPackV2: pack generated, 2933 bytes
23:27:20.567 [info] UploadPackV2: fetch response 2955 bytes
23:27:20.583 [info] UploadPackV2: processing fetch command
23:27:20.583 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.584 [info] UploadPackV2: collected 30 objects, generating pack
23:27:20.584 [info] UploadPackV2: pack generated, 2074 bytes
23:27:20.585 [info] UploadPackV2: fetch response 2096 bytes
23:27:20.591 [info] UploadPackV2: processing fetch command
23:27:20.591 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.593 [info] UploadPackV2: collected 20 objects, generating pack
23:27:20.594 [info] UploadPackV2: pack generated, 1449 bytes
23:27:20.594 [info] UploadPackV2: fetch response 1471 bytes
23:27:20.603 [info] UploadPackV2: processing fetch command
23:27:20.603 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.603 [info] UploadPackV2: collected 3 objects, generating pack
23:27:20.603 [info] UploadPackV2: pack generated, 214 bytes
23:27:20.603 [info] UploadPackV2: fetch response 236 bytes
23:27:20.605 [info] UploadPackV2: processing fetch command
.
23:27:20.606 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.607 [info] UploadPackV2: collected 19 objects, generating pack
23:27:20.607 [info] UploadPackV2: pack generated, 1445 bytes
23:27:20.607 [info] UploadPackV2: fetch response 1467 bytes
23:27:20.617 [info] UploadPackV2: processing fetch command
23:27:20.617 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.618 [info] UploadPackV2: collected 8 objects, generating pack
23:27:20.618 [info] UploadPackV2: pack generated, 636 bytes
23:27:20.618 [info] UploadPackV2: fetch response 658 bytes
23:27:20.623 [info] UploadPackV2: processing fetch command
23:27:20.623 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.623 [info] UploadPackV2: collected 21 objects, generating pack
23:27:20.624 [info] UploadPackV2: pack generated, 1463 bytes
23:27:20.624 [info] UploadPackV2: fetch response 1485 bytes
23:27:20.631 [info] UploadPackV2: processing fetch command
23:27:20.631 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.633 [info] UploadPackV2: collected 40 objects, generating pack
23:27:20.634 [info] UploadPackV2: pack generated, 2936 bytes
23:27:20.634 [info] UploadPackV2: fetch response 2958 bytes
23:27:20.643 [info] UploadPackV2: processing fetch command
23:27:20.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.643 [info] UploadPackV2: collected 11 objects, generating pack
23:27:20.644 [info] UploadPackV2: pack generated, 853 bytes
.
23:27:20.644 [info] UploadPackV2: fetch response 875 bytes
23:27:20.647 [info] UploadPackV2: processing fetch command
23:27:20.648 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.648 [info] UploadPackV2: collected 17 objects, generating pack
23:27:20.649 [info] UploadPackV2: pack generated, 1276 bytes
23:27:20.649 [info] UploadPackV2: fetch response 1298 bytes
23:27:20.653 [info] UploadPackV2: processing fetch command
23:27:20.720 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.720 [info] UploadPackV2: collected 5 objects, generating pack
23:27:20.721 [info] UploadPackV2: pack generated, 424 bytes
23:27:20.721 [info] UploadPackV2: fetch response 446 bytes
23:27:20.729 [info] UploadPackV2: processing fetch command
23:27:20.729 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.730 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.730 [info] UploadPackV2: pack generated, 1889 bytes
23:27:20.730 [info] UploadPackV2: fetch response 1911 bytes
23:27:20.745 [info] UploadPackV2: processing fetch command
23:27:20.746 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.751 [info] UploadPackV2: collected 17 objects, generating pack
23:27:20.752 [info] UploadPackV2: pack generated, 1233 bytes
23:27:20.752 [info] UploadPackV2: fetch response 1255 bytes
23:27:20.758 [info] UploadPackV2: processing fetch command
23:27:20.758 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.763 [info] UploadPackV2: collected 21 objects, generating pack
23:27:20.764 [info] UploadPackV2: pack generated, 1463 bytes
23:27:20.764 [info] UploadPackV2: fetch response 1485 bytes
23:27:20.770 [info] UploadPackV2: processing fetch command
23:27:20.770 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:20.770 [info] UploadPackV2: collected 11 objects, generating pack
23:27:20.771 [info] UploadPackV2: pack generated, 818 bytes
23:27:20.771 [info] UploadPackV2: fetch response 840 bytes
23:27:20.789 [info] UploadPackV2: processing fetch command
23:27:20.789 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.790 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.791 [info] UploadPackV2: pack generated, 1889 bytes
23:27:20.791 [info] UploadPackV2: fetch response 1911 bytes
23:27:20.797 [info] UploadPackV2: processing fetch command
23:27:20.797 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.799 [info] UploadPackV2: collected 25 objects, generating pack
23:27:20.800 [info] UploadPackV2: pack generated, 1870 bytes
23:27:20.800 [info] UploadPackV2: fetch response 1892 bytes
23:27:20.812 [info] UploadPackV2: processing fetch command
23:27:20.829 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.831 [info] UploadPackV2: collected 23 objects, generating pack
23:27:20.832 [info] UploadPackV2: pack generated, 1663 bytes
23:27:20.832 [info] UploadPackV2: fetch response 1685 bytes
23:27:20.841 [info] UploadPackV2: processing fetch command
23:27:20.841 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.841 [info] UploadPackV2: collected 15 objects, generating pack
23:27:20.843 [info] UploadPackV2: pack generated, 1035 bytes
23:27:20.843 [info] UploadPackV2: fetch response 1057 bytes
23:27:20.852 [info] UploadPackV2: processing fetch command
23:27:20.852 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.857 [info] UploadPackV2: collected 27 objects, generating pack
23:27:20.858 [info] UploadPackV2: pack generated, 1861 bytes
23:27:20.858 [info] UploadPackV2: fetch response 1883 bytes
23:27:20.876 [info] UploadPackV2: processing fetch command
23:27:20.876 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.876 [info] UploadPackV2: collected 3 objects, generating pack
23:27:20.877 [info] UploadPackV2: pack generated, 214 bytes
23:27:20.877 [info] UploadPackV2: fetch response 236 bytes
23:27:20.879 [info] UploadPackV2: processing fetch command
23:27:20.879 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.879 [info] UploadPackV2: collected 5 objects, generating pack
23:27:20.880 [info] UploadPackV2: pack generated, 424 bytes
23:27:20.880 [info] UploadPackV2: fetch response 446 bytes
23:27:20.881 [info] UploadPackV2: processing fetch command
23:27:20.881 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.881 [info] UploadPackV2: collected 5 objects, generating pack
23:27:20.882 [info] UploadPackV2: pack generated, 424 bytes
23:27:20.882 [info] UploadPackV2: fetch response 446 bytes
.
23:27:20.889 [info] UploadPackV2: processing fetch command
23:27:20.889 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.889 [info] UploadPackV2: collected 3 objects, generating pack
23:27:20.890 [info] UploadPackV2: pack generated, 214 bytes
23:27:20.890 [info] UploadPackV2: fetch response 236 bytes
23:27:20.896 [info] UploadPackV2: processing fetch command
23:27:20.896 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.897 [info] UploadPackV2: collected 6 objects, generating pack
23:27:20.897 [info] UploadPackV2: pack generated, 428 bytes
23:27:20.897 [info] UploadPackV2: fetch response 450 bytes
.....
23:27:20.928 [info] UploadPackV2: processing fetch command
23:27:20.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.929 [info] UploadPackV2: collected 18 objects, generating pack
23:27:20.934 [info] UploadPackV2: pack generated, 1281 bytes
23:27:20.934 [info] UploadPackV2: fetch response 1303 bytes
23:27:20.946 [info] UploadPackV2: processing fetch command
23:27:20.946 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.947 [info] UploadPackV2: collected 18 objects, generating pack
23:27:20.948 [info] UploadPackV2: pack generated, 1281 bytes
23:27:20.948 [info] UploadPackV2: fetch response 1303 bytes
23:27:20.971 [info] UploadPackV2: processing fetch command
23:27:20.971 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:27:20.972 [info] UploadPackV2: collected 12 objects, generating pack
23:27:20.973 [info] UploadPackV2: pack generated, 854 bytes
.
23:27:20.973 [info] UploadPackV2: fetch response 876 bytes
....
23:27:20.977 [info] UploadPackV2: processing fetch command
.
23:27:20.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:20.979 [info] UploadPackV2: collected 11 objects, generating pack
.
23:27:20.980 [info] UploadPackV2: pack generated, 851 bytes
.
23:27:20.980 [info] UploadPackV2: fetch response 873 bytes
..
23:27:20.987 [info] UploadPackV2: processing fetch command
.
23:27:20.987 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:20.989 [info] UploadPackV2: collected 41 objects, generating pack
.
23:27:20.990 [info] UploadPackV2: pack generated, 2921 bytes
.
23:27:20.990 [info] UploadPackV2: fetch response 2943 bytes
.
23:27:21.000 [info] UploadPackV2: processing fetch command
.
23:27:21.000 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:21.001 [info] UploadPackV2: collected 10 objects, generating pack
.
23:27:21.001 [info] UploadPackV2: pack generated, 804 bytes
.
23:27:21.001 [info] UploadPackV2: fetch response 826 bytes
.
23:27:21.004 [info] UploadPackV2: processing fetch command
.
23:27:21.004 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:21.004 [info] UploadPackV2: collected 5 objects, generating pack
.
23:27:21.005 [info] UploadPackV2: pack generated, 424 bytes
.
23:27:21.005 [info] UploadPackV2: fetch response 446 bytes
.
23:27:21.006 [info] UploadPackV2: processing fetch command
...
23:27:21.006 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:21.007 [info] UploadPackV2: collected 3 objects, generating pack
.
23:27:21.007 [info] UploadPackV2: pack generated, 214 bytes
.
23:27:21.007 [info] UploadPackV2: fetch response 236 bytes
.
23:27:21.021 [info] UploadPackV2: processing fetch command
.
23:27:21.023 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:21.025 [info] UploadPackV2: collected 18 objects, generating pack
.
23:27:21.026 [info] UploadPackV2: pack generated, 1281 bytes
.
23:27:21.026 [info] UploadPackV2: fetch response 1303 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
.
23:27:21.041 [info] UploadPackV2: processing fetch command
.
23:27:21.041 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:21.042 [info] UploadPackV2: collected 8 objects, generating pack
.
23:27:21.043 [info] UploadPackV2: pack generated, 636 bytes
.
23:27:21.044 [info] UploadPackV2: fetch response 658 bytes
.
23:27:21.062 [info] UploadPackV2: processing fetch command
.
23:27:21.063 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
23:27:21.067 [info] UploadPackV2: collected 38 objects, generating pack
.
23:27:21.069 [info] UploadPackV2: pack generated, 2708 bytes
.
23:27:21.069 [info] UploadPackV2: fetch response 2730 bytes
....................................
23:27:22.415 [info] UploadPackV2: processing fetch command
23:27:22.416 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:22.431 [info] UploadPackV2: reused pack 12211 bytes, 160 objects
23:27:22.431 [info] UploadPackV2: fetch response 12233 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
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
..............................................................................................................................................................................................................
23:27:23.485 [info] The function passed as a handler with ID #Reference<0.3247557299.2523398145.182929> 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
......................................................................................................................................................................................
23:27:27.116 [info] UploadPackV2: processing fetch command
23:27:27.116 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:27.127 [info] UploadPackV2: reused pack 12415 bytes, 160 objects
23:27:27.127 [info] UploadPackV2: fetch response 12437 bytes
................................
23:27:28.592 [info] UploadPackV2: processing fetch command
23:27:28.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:28.604 [info] UploadPackV2: collected 163 objects, generating pack
23:27:28.610 [info] UploadPackV2: pack generated, 15091 bytes
23:27:28.610 [info] UploadPackV2: fetch response 15113 bytes
.................................***********
23:27:29.234 [info] UploadPackV2: processing ls-refs command
23:27:29.236 [info] UploadPackV2: processing fetch command
23:27:29.236 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:29.236 [info] UploadPackV2: collected 3 objects, generating pack
23:27:29.236 [info] UploadPackV2: pack generated, 196 bytes
23:27:29.237 [info] UploadPackV2: fetch response 218 bytes
..
23:27:44.370 [info] UploadPackV2: processing ls-refs command
23:27:44.372 [info] UploadPackV2: processing fetch command
23:27:44.372 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:44.372 [info] UploadPackV2: collected 3 objects, generating pack
23:27:44.372 [info] UploadPackV2: pack generated, 185 bytes
23:27:44.372 [info] UploadPackV2: fetch response 207 bytes
........
23:27:44.554 [info] UploadPackV2: processing ls-refs command
23:27:44.556 [info] UploadPackV2: processing fetch command
23:27:44.556 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:44.557 [info] UploadPackV2: collected 3 objects, generating pack
23:27:44.557 [info] UploadPackV2: pack generated, 185 bytes
23:27:44.557 [info] UploadPackV2: fetch response 207 bytes
23:27:44.626 [info] UploadPackV2: processing ls-refs command
.
23:27:44.686 [info] UploadPackV2: processing ls-refs command
23:27:44.688 [info] UploadPackV2: processing fetch command
23:27:44.688 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:44.688 [info] UploadPackV2: collected 3 objects, generating pack
23:27:44.689 [info] UploadPackV2: pack generated, 196 bytes
23:27:44.689 [info] UploadPackV2: fetch response 218 bytes
.
23:27:44.758 [info] UploadPackV2: processing ls-refs command
23:27:44.760 [info] UploadPackV2: processing fetch command
23:27:44.760 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:44.761 [info] UploadPackV2: collected 15 objects, generating pack
23:27:44.761 [info] UploadPackV2: pack generated, 952 bytes
23:27:44.761 [info] UploadPackV2: fetch response 974 bytes
.
23:27:44.842 [info] UploadPackV2: processing ls-refs command
23:27:44.843 [info] UploadPackV2: processing fetch command
23:27:44.843 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:27:44.844 [info] UploadPackV2: collected 3 objects, generating pack
23:27:44.844 [info] UploadPackV2: pack generated, 200 bytes
23:27:44.844 [info] UploadPackV2: fetch response 256 bytes
.
23:27:44.852 [info] The function passed as a handler with ID "graph-query-test-16450" 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
..
23:27:44.855 [info] The function passed as a handler with ID "graph-query-test-20355" 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
.
23:27:44.857 [info] The function passed as a handler with ID "graph-query-test-20419" 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
.
23:27:44.862 [info] The function passed as a handler with ID "rev-list-range-test-15332" 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
...
23:27:44.869 [info] The function passed as a handler with ID "rev-list-range-test-13477" 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
.....
23:27:44.876 [info] The function passed as a handler with ID "rev-list-range-test-20483" 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
..........................
23:27:46.129 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303400190" 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
23:27:46.129 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303406591" 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
.
23:27:46.131 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303406559" 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
23:27:46.131 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303406527" 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
.
23:27:46.132 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303406495" 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
23:27:46.132 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303406463" 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
.
23:27:46.133 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303406431" 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
23:27:46.133 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303406399" 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
..*****..........
23:27:46.226 [info] UploadPackV2: processing ls-refs command
23:27:46.227 [info] UploadPackV2: processing ls-refs command
23:27:46.229 [info] UploadPackV2: processing fetch command
23:27:46.229 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:46.229 [info] UploadPackV2: processing fetch command
23:27:46.229 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:46.229 [info] UploadPackV2: collected 6 objects, generating pack
23:27:46.230 [info] UploadPackV2: pack generated, 365 bytes
23:27:46.230 [info] UploadPackV2: collected 6 objects, generating pack
23:27:46.230 [info] UploadPackV2: fetch response 387 bytes
23:27:46.230 [info] UploadPackV2: pack generated, 365 bytes
23:27:46.230 [info] UploadPackV2: fetch response 387 bytes
.
23:27:46.370 [info] UploadPackV2: processing ls-refs command
23:27:46.372 [info] UploadPackV2: processing fetch command
23:27:46.372 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:46.373 [info] UploadPackV2: collected 6 objects, generating pack
23:27:46.373 [info] UploadPackV2: pack generated, 365 bytes
23:27:46.373 [info] UploadPackV2: fetch response 387 bytes
23:27:48.946 [info] UploadPackV2: processing ls-refs command
.
23:27:49.030 [info] UploadPackV2: processing ls-refs command
23:27:49.032 [info] UploadPackV2: processing fetch command
23:27:49.032 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:27:49.033 [info] UploadPackV2: collected 6 objects, generating pack
23:27:49.033 [info] UploadPackV2: pack generated, 365 bytes
23:27:49.033 [info] UploadPackV2: fetch response 387 bytes
.
23:28:04.098 [info] UploadPackV2: processing ls-refs command
23:28:04.100 [info] UploadPackV2: processing fetch command
23:28:04.100 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.102 [info] UploadPackV2: collected 90 objects, generating pack
23:28:04.104 [info] UploadPackV2: pack generated, 5649 bytes
23:28:04.104 [info] UploadPackV2: fetch response 5671 bytes
23:28:04.382 [info] UploadPackV2: processing ls-refs command
.
23:28:04.442 [info] UploadPackV2: processing ls-refs command
23:28:04.444 [info] UploadPackV2: processing fetch command
23:28:04.444 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.444 [info] UploadPackV2: collected 6 objects, generating pack
23:28:04.444 [info] UploadPackV2: pack generated, 366 bytes
23:28:04.444 [info] UploadPackV2: fetch response 388 bytes
23:28:04.506 [info] UploadPackV2: processing ls-refs command
23:28:04.507 [info] UploadPackV2: processing fetch command
23:28:04.507 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
23:28:04.507 [info] UploadPackV2: fetch response 32 bytes
23:28:04.508 [info] UploadPackV2: processing fetch command
23:28:04.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.508 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.508 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.508 [info] UploadPackV2: fetch response 205 bytes
.
23:28:04.515 [info] UploadPackV2: processing fetch command
23:28:04.515 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.516 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.516 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.516 [info] UploadPackV2: fetch response 205 bytes
.
23:28:04.578 [info] UploadPackV2: processing ls-refs command
23:28:04.579 [info] UploadPackV2: processing fetch command
23:28:04.579 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:04.579 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.579 [info] UploadPackV2: pack generated, 216 bytes
23:28:04.580 [info] UploadPackV2: fetch response 346 bytes
.
23:28:04.638 [info] UploadPackV2: processing ls-refs command
23:28:04.640 [info] UploadPackV2: processing fetch command
23:28:04.640 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.640 [info] UploadPackV2: collected 6 objects, generating pack
23:28:04.640 [info] UploadPackV2: pack generated, 365 bytes
23:28:04.640 [info] UploadPackV2: fetch response 387 bytes
23:28:04.658 [info] UploadPackV2: processing fetch command
23:28:04.658 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
23:28:04.658 [info] UploadPackV2: fetch response 122 bytes
.
23:28:04.710 [info] UploadPackV2: processing ls-refs command
23:28:04.712 [info] UploadPackV2: processing fetch command
23:28:04.712 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.712 [info] UploadPackV2: collected 9 objects, generating pack
23:28:04.712 [info] UploadPackV2: pack generated, 547 bytes
23:28:04.712 [info] UploadPackV2: fetch response 569 bytes
23:28:04.778 [info] UploadPackV2: processing ls-refs command
.
23:28:04.784 [info] UploadPackV2: processing fetch command
23:28:04.784 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.784 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.784 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.784 [info] UploadPackV2: fetch response 205 bytes
23:28:04.784 [info] UploadPackV2: processing fetch command
23:28:04.784 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.785 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.785 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.785 [info] UploadPackV2: fetch response 205 bytes
23:28:04.785 [info] UploadPackV2: processing fetch command
23:28:04.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.785 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.785 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.785 [info] UploadPackV2: fetch response 205 bytes
23:28:04.785 [info] UploadPackV2: processing fetch command
23:28:04.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.786 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.786 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.786 [info] UploadPackV2: fetch response 205 bytes
23:28:04.786 [info] UploadPackV2: processing fetch command
23:28:04.786 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.786 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.786 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.786 [info] UploadPackV2: fetch response 205 bytes
23:28:04.786 [info] UploadPackV2: processing fetch command
23:28:04.786 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.786 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.787 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.787 [info] UploadPackV2: fetch response 205 bytes
23:28:04.787 [info] UploadPackV2: processing fetch command
23:28:04.787 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.787 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.787 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.787 [info] UploadPackV2: fetch response 205 bytes
23:28:04.787 [info] UploadPackV2: processing fetch command
23:28:04.787 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.787 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.787 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.787 [info] UploadPackV2: fetch response 205 bytes
23:28:04.787 [info] UploadPackV2: processing fetch command
23:28:04.787 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.787 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.788 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.788 [info] UploadPackV2: fetch response 205 bytes
23:28:04.788 [info] UploadPackV2: processing fetch command
23:28:04.788 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.788 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.788 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.788 [info] UploadPackV2: fetch response 205 bytes
23:28:04.788 [info] UploadPackV2: processing fetch command
23:28:04.788 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.788 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.788 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.788 [info] UploadPackV2: fetch response 205 bytes
23:28:04.788 [info] UploadPackV2: processing fetch command
23:28:04.788 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.788 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.789 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.789 [info] UploadPackV2: fetch response 205 bytes
23:28:04.789 [info] UploadPackV2: processing fetch command
23:28:04.789 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.789 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.789 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.789 [info] UploadPackV2: fetch response 205 bytes
23:28:04.789 [info] UploadPackV2: processing fetch command
23:28:04.789 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.789 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.789 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.789 [info] UploadPackV2: fetch response 205 bytes
23:28:04.789 [info] UploadPackV2: processing fetch command
23:28:04.789 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.789 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.790 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.790 [info] UploadPackV2: fetch response 205 bytes
23:28:04.790 [info] UploadPackV2: processing fetch command
23:28:04.790 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.790 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.790 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.790 [info] UploadPackV2: fetch response 205 bytes
23:28:04.790 [info] UploadPackV2: processing fetch command
23:28:04.790 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.790 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.790 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.790 [info] UploadPackV2: fetch response 205 bytes
23:28:04.790 [info] UploadPackV2: processing fetch command
23:28:04.790 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.791 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.791 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.791 [info] UploadPackV2: fetch response 205 bytes
23:28:04.791 [info] UploadPackV2: processing fetch command
23:28:04.791 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.791 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.791 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.791 [info] UploadPackV2: fetch response 205 bytes
23:28:04.791 [info] UploadPackV2: processing fetch command
23:28:04.791 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.791 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.792 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.793 [info] UploadPackV2: fetch response 205 bytes
23:28:04.793 [info] UploadPackV2: processing fetch command
23:28:04.793 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
23:28:04.794 [info] UploadPackV2: collected 3 objects, generating pack
23:28:04.794 [info] UploadPackV2: pack generated, 183 bytes
23:28:04.794 [info] UploadPackV2: fetch response 205 bytes
23:28:04.842 [info] UploadPackV2: processing ls-refs command
.
23:28:04.910 [info] UploadPackV2: processing ls-refs command
23:28:04.912 [info] UploadPackV2: processing fetch command
23:28:04.912 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.918 [info] UploadPackV2: collected 240 objects, generating pack
23:28:04.922 [info] UploadPackV2: pack generated, 16258 bytes
23:28:04.922 [info] UploadPackV2: fetch response 16280 bytes
.
23:28:04.945 [info] UploadPackV2: processing fetch command
23:28:04.945 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:04.946 [info] UploadPackV2: collected 0 objects, generating pack
23:28:04.946 [info] UploadPackV2: pack generated, 32 bytes
23:28:04.946 [info] UploadPackV2: fetch response 54 bytes
.
23:28:05.234 [info] UploadPackV2: processing ls-refs command
23:28:05.236 [info] UploadPackV2: processing fetch command
23:28:05.236 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.258 [info] UploadPackV2: collected 600 objects, generating pack
23:28:05.276 [info] UploadPackV2: pack generated, 45197 bytes
23:28:05.276 [info] UploadPackV2: fetch response 45219 bytes
.
23:28:05.350 [info] UploadPackV2: processing ls-refs command
.
23:28:05.462 [info] UploadPackV2: processing ls-refs command
23:28:05.464 [info] UploadPackV2: processing fetch command
23:28:05.464 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:05.464 [info] UploadPackV2: collected 3 objects, generating pack
23:28:05.464 [info] UploadPackV2: pack generated, 231 bytes
23:28:05.464 [info] UploadPackV2: fetch response 327 bytes
.
23:28:05.505 [info] UploadPackV2: processing ls-refs command
23:28:05.507 [info] UploadPackV2: processing fetch command
23:28:05.508 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.512 [info] UploadPackV2: collected 180 objects, generating pack
23:28:05.514 [info] UploadPackV2: pack generated, 11106 bytes
23:28:05.514 [info] UploadPackV2: fetch response 11128 bytes
.
23:28:05.554 [info] UploadPackV2: processing ls-refs command
23:28:05.556 [info] UploadPackV2: processing fetch command
23:28:05.556 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.557 [info] UploadPackV2: collected 9 objects, generating pack
23:28:05.557 [info] UploadPackV2: pack generated, 549 bytes
23:28:05.557 [info] UploadPackV2: fetch response 571 bytes
23:28:05.585 [info] UploadPackV2: processing ls-refs command
.
23:28:05.610 [info] UploadPackV2: processing ls-refs command
23:28:05.612 [info] UploadPackV2: processing fetch command
23:28:05.612 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.613 [info] UploadPackV2: collected 3 objects, generating pack
23:28:05.613 [info] UploadPackV2: pack generated, 183 bytes
23:28:05.613 [info] UploadPackV2: fetch response 205 bytes
.
23:28:05.706 [info] UploadPackV2: processing fetch command
23:28:05.706 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.706 [info] UploadPackV2: collected 3 objects, generating pack
23:28:05.707 [info] UploadPackV2: pack generated, 183 bytes
23:28:05.707 [info] UploadPackV2: fetch response 205 bytes
.
23:28:05.732 [info] UploadPackV2: processing ls-refs command
23:28:05.734 [info] UploadPackV2: processing fetch command
23:28:05.735 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.735 [info] UploadPackV2: collected 15 objects, generating pack
23:28:05.735 [info] UploadPackV2: pack generated, 919 bytes
23:28:05.736 [info] UploadPackV2: fetch response 941 bytes
..
23:28:05.810 [info] UploadPackV2: processing ls-refs command
23:28:05.813 [info] UploadPackV2: processing fetch command
23:28:05.813 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:05.813 [info] UploadPackV2: collected 6 objects, generating pack
23:28:05.814 [info] UploadPackV2: pack generated, 366 bytes
23:28:05.814 [info] UploadPackV2: fetch response 388 bytes
23:28:05.845 [info] UploadPackV2: processing ls-refs command
.
23:28:05.902 [info] UploadPackV2: processing ls-refs command
23:28:05.904 [info] UploadPackV2: processing fetch command
23:28:05.904 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:05.904 [info] UploadPackV2: collected 9 objects, generating pack
23:28:05.905 [info] UploadPackV2: pack generated, 585 bytes
23:28:05.905 [info] UploadPackV2: fetch response 681 bytes
.
23:28:05.974 [info] UploadPackV2: processing ls-refs command
23:28:05.977 [info] UploadPackV2: processing fetch command
23:28:05.977 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
23:28:05.978 [info] UploadPackV2: collected 3 objects, generating pack
23:28:05.978 [info] UploadPackV2: pack generated, 381 bytes
23:28:05.978 [info] UploadPackV2: fetch response 403 bytes
.
23:28:06.046 [info] UploadPackV2: processing ls-refs command
23:28:06.048 [info] UploadPackV2: processing fetch command
23:28:06.048 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:06.048 [info] UploadPackV2: collected 3 objects, generating pack
23:28:06.048 [info] UploadPackV2: pack generated, 218 bytes
23:28:06.048 [info] UploadPackV2: fetch response 314 bytes
.
23:28:06.122 [info] UploadPackV2: processing ls-refs command
23:28:06.125 [info] UploadPackV2: processing fetch command
23:28:06.125 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:28:06.126 [info] UploadPackV2: collected 6 objects, generating pack
23:28:06.126 [info] UploadPackV2: pack generated, 513 bytes
23:28:06.126 [info] UploadPackV2: fetch response 535 bytes
.
23:28:06.194 [info] UploadPackV2: processing ls-refs command
.
23:28:06.246 [info] UploadPackV2: processing ls-refs command
23:28:06.249 [info] UploadPackV2: processing fetch command
23:28:06.249 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
23:28:06.250 [info] UploadPackV2: collected 5 objects, generating pack
23:28:06.250 [info] UploadPackV2: pack generated, 319 bytes
23:28:06.250 [info] UploadPackV2: fetch response 341 bytes
.
23:28:06.314 [info] UploadPackV2: processing ls-refs command
.
23:28:06.370 [info] UploadPackV2: processing ls-refs command
23:28:06.373 [info] UploadPackV2: processing fetch command
23:28:06.373 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
23:28:06.374 [info] UploadPackV2: collected 3 objects, generating pack
23:28:06.374 [info] UploadPackV2: pack generated, 381 bytes
23:28:06.374 [info] UploadPackV2: fetch response 403 bytes
.
23:28:06.442 [info] UploadPackV2: processing ls-refs command
23:28:06.444 [info] UploadPackV2: processing fetch command
23:28:06.444 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:06.444 [info] UploadPackV2: collected 3 objects, generating pack
23:28:06.444 [info] UploadPackV2: pack generated, 216 bytes
23:28:06.444 [info] UploadPackV2: fetch response 312 bytes
23:28:06.506 [info] UploadPackV2: processing ls-refs command
23:28:06.507 [info] UploadPackV2: processing fetch command
23:28:06.507 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:06.508 [info] UploadPackV2: collected 12 objects, generating pack
23:28:06.508 [info] UploadPackV2: pack generated, 768 bytes
23:28:06.508 [info] UploadPackV2: fetch response 1002 bytes
.
23:28:06.562 [info] UploadPackV2: processing ls-refs command
..
23:28:06.618 [info] UploadPackV2: processing ls-refs command
23:28:06.620 [info] UploadPackV2: processing fetch command
23:28:06.620 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:06.620 [info] UploadPackV2: collected 3 objects, generating pack
23:28:06.620 [info] UploadPackV2: pack generated, 216 bytes
23:28:06.620 [info] UploadPackV2: fetch response 312 bytes
.
23:28:06.690 [info] UploadPackV2: processing ls-refs command
23:28:06.692 [info] UploadPackV2: processing fetch command
23:28:06.692 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:06.692 [info] UploadPackV2: collected 9 objects, generating pack
23:28:06.692 [info] UploadPackV2: pack generated, 549 bytes
23:28:06.693 [info] UploadPackV2: fetch response 571 bytes
23:28:06.709 [info] UploadPackV2: processing fetch command
23:28:06.709 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
23:28:06.709 [info] UploadPackV2: fetch response 171 bytes
.
23:28:06.762 [info] UploadPackV2: processing ls-refs command
23:28:06.765 [info] UploadPackV2: processing fetch command
23:28:06.765 [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
23:28:06.766 [info] UploadPackV2: collected 6 objects, generating pack
23:28:06.766 [info] UploadPackV2: pack generated, 513 bytes
23:28:06.766 [info] UploadPackV2: fetch response 535 bytes
.
23:28:06.834 [info] UploadPackV2: processing ls-refs command
..
23:28:06.841 [info] The function passed as a handler with ID "telemetry-test-17250" 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
.
23:28:21.905 [info] The function passed as a handler with ID "telemetry-test-17282" 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
.
23:28:21.906 [info] UploadPackV2: processing fetch command
23:28:21.906 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:21.906 [info] UploadPackV2: collected 3 objects, generating pack
23:28:21.906 [info] UploadPackV2: pack generated, 186 bytes
23:28:21.906 [info] UploadPackV2: fetch response 208 bytes
23:28:21.906 [info] The function passed as a handler with ID "telemetry-test-17314" 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
23:28:21.907 [info] UploadPackV2: processing fetch command
23:28:21.907 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
23:28:21.908 [info] UploadPackV2: collected 3 objects, generating pack
23:28:21.908 [info] UploadPackV2: pack generated, 183 bytes
23:28:21.908 [info] UploadPackV2: fetch response 205 bytes
.
23:28:21.908 [info] The function passed as a handler with ID "telemetry-test-17346" 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
23:28:21.909 [info] UploadPackV2: processing fetch command
23:28:21.909 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
23:28:21.909 [info] UploadPackV2: collected 2 objects, generating pack
23:28:21.909 [info] UploadPackV2: pack generated, 169 bytes
23:28:21.909 [info] UploadPackV2: fetch response 191 bytes
..
23:28:38.878 [info] UploadPackV2: processing ls-refs command
23:28:38.895 [info] UploadPackV2: processing fetch command
23:28:38.895 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:28:38.896 [info] UploadPackV2: collected 3 objects, generating pack
23:28:38.896 [info] UploadPackV2: pack generated, 201 bytes
23:28:38.896 [info] UploadPackV2: fetch response 223 bytes
...
23:29:24.630 [info] UploadPackV2: processing ls-refs command
23:29:24.632 [info] UploadPackV2: processing fetch command
23:29:24.632 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:29:24.632 [info] UploadPackV2: collected 3 objects, generating pack
23:29:24.633 [info] UploadPackV2: pack generated, 183 bytes
23:29:24.633 [info] UploadPackV2: fetch response 205 bytes
...
23:29:54.898 [info] UploadPackV2: processing ls-refs command
23:29:54.900 [info] UploadPackV2: processing fetch command
23:29:54.900 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:29:54.900 [info] UploadPackV2: collected 6 objects, generating pack
23:29:54.901 [info] UploadPackV2: pack generated, 365 bytes
23:29:54.901 [info] UploadPackV2: fetch response 387 bytes
.
23:29:54.978 [info] UploadPackV2: processing ls-refs command
23:29:54.980 [info] UploadPackV2: processing fetch command
23:29:54.980 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:29:54.980 [info] UploadPackV2: collected 3 objects, generating pack
23:29:54.980 [info] UploadPackV2: pack generated, 183 bytes
23:29:54.980 [info] UploadPackV2: fetch response 205 bytes
..
23:30:25.174 [info] UploadPackV2: processing ls-refs command
23:30:25.176 [info] UploadPackV2: processing fetch command
23:30:25.176 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
23:30:25.177 [info] UploadPackV2: collected 6 objects, generating pack
23:30:25.177 [info] UploadPackV2: pack generated, 365 bytes
23:30:25.177 [info] UploadPackV2: fetch response 387 bytes
.
Finished in 204.7 seconds (13.7s async, 191.0s sync)
Result: 1032 passed (2 properties, 1030 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"]
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
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)