ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 602203, max_cases: 8
Excluding tags: [:s3]
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:63:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
497 │ {_tip, parent} =
│ ~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: the variable "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: 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 "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:151:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
..........................................................................................................................................................................................................................................................................................................................
20:32:08.151 [info] The function passed as a handler with ID "test-#Reference<0.2566762173.1042808836.242374>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
.......................................................
20:32:09.417 [info] UploadPackV2: processing fetch command
20:32:09.417 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:09.424 [info] UploadPackV2: collected 15 objects, generating pack
.
20:32:09.425 [info] UploadPackV2: pack generated, 984 bytes
.
20:32:09.425 [info] UploadPackV2: fetch response 1006 bytes
.
20:32:09.428 [info] UploadPackV2: processing fetch command
.
20:32:09.428 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:09.428 [info] UploadPackV2: collected 3 objects, generating pack
20:32:09.428 [info] UploadPackV2: pack generated, 194 bytes
20:32:09.428 [info] UploadPackV2: fetch response 216 bytes
20:32:09.431 [info] UploadPackV2: processing fetch command
20:32:09.431 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:09.432 [info] UploadPackV2: collected 15 objects, generating pack
20:32:09.433 [info] UploadPackV2: pack generated, 984 bytes
20:32:09.433 [info] UploadPackV2: fetch response 1006 bytes
20:32:09.433 [info] UploadPackV2: processing fetch command
20:32:09.433 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:09.439 [info] UploadPackV2: collected 15 objects, streaming pack
20:32:09.442 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
20:32:09.442 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
20:32:09.445 [info] UploadPackV2: processing ls-refs command
20:32:09.448 [info] UploadPackV2: processing fetch command
20:32:09.448 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:09.449 [info] UploadPackV2: collected 3 objects, generating pack
20:32:09.450 [info] UploadPackV2: pack generated, 195 bytes
20:32:09.450 [info] UploadPackV2: fetch response 217 bytes
.
20:32:09.643 [info] UploadPackV2: processing ls-refs command
20:32:09.644 [info] UploadPackV2: processing fetch command
20:32:09.644 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:09.650 [info] UploadPackV2: collected 3 objects, generating pack
20:32:09.650 [info] UploadPackV2: pack generated, 210 bytes
20:32:09.650 [info] UploadPackV2: fetch response 232 bytes
............................................
20:32:10.026 [info] UploadPackV2: processing fetch command
.
20:32:10.026 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:10.028 [info] UploadPackV2: collected 3 objects, generating pack
.
20:32:10.029 [info] UploadPackV2: pack generated, 191 bytes
..
20:32:10.029 [info] UploadPackV2: fetch response 213 bytes
.
20:32:10.038 [info] UploadPackV2: processing fetch command
.
20:32:10.038 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:10.044 [info] UploadPackV2: collected 3 objects, generating pack
.
20:32:10.045 [info] UploadPackV2: pack generated, 191 bytes
.
20:32:10.045 [info] UploadPackV2: fetch response 213 bytes
.
20:32:10.055 [info] UploadPackV2: processing ls-refs command
.
20:32:10.058 [info] UploadPackV2: processing ls-refs command
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
...........................................
20:32:10.371 [info] UploadPackV2: processing fetch command
.
20:32:10.372 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
..........
20:32:10.475 [info] UploadPackV2: collected 700 objects, generating pack
.
20:32:10.490 [info] UploadPackV2: pack generated, 48139 bytes
.
20:32:10.490 [info] UploadPackV2: fetch response 48161 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)
...................................................
20:32:10.654 [info] UploadPackV2: processing fetch command
.
20:32:10.655 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:10.662 [info] UploadPackV2: collected 90 objects, generating pack
20:32:10.664 [info] UploadPackV2: pack generated, 5946 bytes
20:32:10.664 [info] UploadPackV2: fetch response 5968 bytes
.
20:32:10.691 [info] UploadPackV2: processing fetch command
20:32:10.691 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:10.692 [info] UploadPackV2: collected 3 objects, streaming pack
20:32:10.698 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
20:32:10.698 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
.
20:32:10.704 [info] UploadPackV2: processing fetch command
.
20:32:10.704 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....
20:32:10.705 [info] UploadPackV2: collected 3 objects, generating pack
.
20:32:10.705 [info] UploadPackV2: pack generated, 191 bytes
20:32:10.706 [info] UploadPackV2: fetch response 213 bytes
20:32:10.707 [info] UploadPackV2: processing fetch command
20:32:10.708 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:10.708 [info] UploadPackV2: collected 3 objects, generating pack
20:32:10.709 [info] UploadPackV2: pack generated, 195 bytes
20:32:10.709 [info] UploadPackV2: fetch response 217 bytes
20:32:10.823 [info] UploadPackV2: processing fetch command
20:32:10.823 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:10.864 [info] UploadPackV2: collected 600 objects, generating pack
20:32:10.883 [info] UploadPackV2: pack generated, 39862 bytes
20:32:10.884 [info] UploadPackV2: fetch response 39884 bytes
....................................
20:32:11.240 [info] UploadPackV2: processing fetch command
20:32:11.240 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:11.271 [info] UploadPackV2: collected 32 objects, streaming pack
......................
20:32:11.433 [info] The function passed as a handler with ID #Reference<0.2566762173.1042808835.204395> 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
........
20:32:11.522 [info] UploadPackV2: streamed pack 2459752 bytes, 32 objects
20:32:11.522 [info] UploadPackV2: fetch streamed 2459752 pack bytes, 32 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
.
20:32:11.926 [info] UploadPackV2: processing fetch command
20:32:11.927 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
..
20:32:11.951 [info] UploadPackV2: collected 32 objects, generating pack
..
20:32:11.989 [info] The function passed as a handler with ID #Reference<0.2566762173.1042808833.223605> 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
...........
20:32:12.084 [info] UploadPackV2: pack generated, 2459821 bytes
20:32:12.090 [info] UploadPackV2: fetch response 2460028 bytes
20:32:12.090 [info] UploadPackV2: processing fetch command
20:32:12.090 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:12.099 [info] UploadPackV2: collected 32 objects, streaming pack
20:32:12.241 [info] UploadPackV2: streamed pack 2459821 bytes, 32 objects
.
20:32:12.241 [info] UploadPackV2: fetch streamed 2459821 pack bytes, 32 objects
.
20:32:12.245 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
20:32:12.248 [info] UploadPackV2: processing fetch command
.
20:32:12.248 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:12.250 [info] UploadPackV2: collected 0 objects, generating pack
.
20:32:12.250 [info] UploadPackV2: pack generated, 32 bytes
.
20:32:12.250 [info] UploadPackV2: fetch response 54 bytes
.
20:32:12.252 [info] UploadPackV2: processing fetch command
.
20:32:12.252 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:12.253 [info] UploadPackV2: collected 6 objects, generating pack
.
20:32:12.253 [info] UploadPackV2: pack generated, 414 bytes
.
20:32:12.254 [info] UploadPackV2: fetch response 436 bytes
.
20:32:12.256 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
20:32:12.265 [info] UploadPackV2: processing fetch command
..
20:32:12.265 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:12.268 [info] UploadPackV2: collected 3 objects, streaming pack
.
20:32:12.270 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
20:32:12.270 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
20:32:12.302 [info] UploadPackV2: processing ls-refs command
.
20:32:12.352 [info] UploadPackV2: processing fetch command
.
20:32:12.353 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:12.399 [info] UploadPackV2: collected 3 objects, generating pack
.
20:32:12.399 [info] UploadPackV2: pack generated, 223 bytes
.
20:32:12.400 [info] UploadPackV2: fetch response 245 bytes
.
20:32:12.412 [info] UploadPackV2: processing fetch command
.
20:32:12.413 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
20:32:12.413 [info] UploadPackV2: fetch response 73 bytes
.
20:32:12.413 [info] UploadPackV2: processing fetch command
.
20:32:12.413 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
20:32:12.413 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
20:32:12.415 [info] UploadPackV2: processing fetch command
.
20:32:12.415 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:12.418 [info] UploadPackV2: collected 9 objects, streaming pack
.
20:32:12.422 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
20:32:12.422 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
20:32:12.430 [info] UploadPackV2: processing ls-refs command
.
20:32:12.432 [info] UploadPackV2: processing fetch command
.
20:32:12.432 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:12.439 [info] UploadPackV2: collected 3 objects, generating pack
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
.
20:32:12.440 [info] UploadPackV2: pack generated, 206 bytes
.
20:32:12.443 [info] UploadPackV2: fetch response 228 bytes
.
20:32:12.455 [warning] post_receive hook failed: "webhook failed"
.....................................................
20:32:13.411 [info] UploadPackV2: processing fetch command
20:32:13.411 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.413 [info] UploadPackV2: collected 33 objects, generating pack
20:32:13.414 [info] UploadPackV2: pack generated, 2285 bytes
20:32:13.414 [info] UploadPackV2: fetch response 2307 bytes
20:32:13.446 [info] UploadPackV2: processing fetch command
20:32:13.446 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.450 [info] UploadPackV2: collected 15 objects, generating pack
20:32:13.451 [info] UploadPackV2: pack generated, 1068 bytes
20:32:13.451 [info] UploadPackV2: fetch response 1090 bytes
20:32:13.466 [info] UploadPackV2: processing fetch command
20:32:13.466 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.470 [info] UploadPackV2: collected 26 objects, generating pack
20:32:13.473 [info] UploadPackV2: pack generated, 1884 bytes
20:32:13.473 [info] UploadPackV2: fetch response 1906 bytes
.
20:32:13.486 [info] UploadPackV2: processing fetch command
20:32:13.486 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.493 [info] UploadPackV2: collected 8 objects, generating pack
20:32:13.493 [info] UploadPackV2: pack generated, 639 bytes
20:32:13.493 [info] UploadPackV2: fetch response 661 bytes
20:32:13.499 [info] UploadPackV2: processing fetch command
20:32:13.499 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.499 [info] UploadPackV2: collected 6 objects, generating pack
20:32:13.500 [info] UploadPackV2: pack generated, 428 bytes
20:32:13.500 [info] UploadPackV2: fetch response 450 bytes
20:32:13.522 [info] UploadPackV2: processing fetch command
20:32:13.522 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.524 [info] UploadPackV2: collected 26 objects, generating pack
20:32:13.525 [info] UploadPackV2: pack generated, 1875 bytes
20:32:13.525 [info] UploadPackV2: fetch response 1897 bytes
20:32:13.577 [info] UploadPackV2: processing fetch command
20:32:13.577 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.578 [info] UploadPackV2: collected 15 objects, generating pack
20:32:13.579 [info] UploadPackV2: pack generated, 1068 bytes
20:32:13.579 [info] UploadPackV2: fetch response 1090 bytes
20:32:13.612 [info] UploadPackV2: processing fetch command
20:32:13.613 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.614 [info] UploadPackV2: collected 8 objects, generating pack
20:32:13.616 [info] UploadPackV2: pack generated, 636 bytes
20:32:13.617 [info] UploadPackV2: fetch response 658 bytes
20:32:13.637 [info] UploadPackV2: processing fetch command
20:32:13.637 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.640 [info] UploadPackV2: collected 15 objects, generating pack
20:32:13.641 [info] UploadPackV2: pack generated, 1068 bytes
20:32:13.642 [info] UploadPackV2: fetch response 1090 bytes
20:32:13.670 [info] UploadPackV2: processing fetch command
20:32:13.671 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.676 [info] UploadPackV2: collected 11 objects, generating pack
20:32:13.676 [info] UploadPackV2: pack generated, 853 bytes
20:32:13.677 [info] UploadPackV2: fetch response 875 bytes
20:32:13.693 [info] UploadPackV2: processing fetch command
20:32:13.693 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.699 [info] UploadPackV2: collected 15 objects, generating pack
20:32:13.700 [info] UploadPackV2: pack generated, 1068 bytes
20:32:13.701 [info] UploadPackV2: fetch response 1090 bytes
20:32:13.724 [info] UploadPackV2: processing fetch command
20:32:13.724 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.730 [info] UploadPackV2: collected 22 objects, generating pack
20:32:13.731 [info] UploadPackV2: pack generated, 1660 bytes
20:32:13.732 [info] UploadPackV2: fetch response 1682 bytes
20:32:13.770 [info] UploadPackV2: processing fetch command
20:32:13.770 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.783 [info] UploadPackV2: collected 46 objects, generating pack
20:32:13.785 [info] UploadPackV2: pack generated, 3358 bytes
20:32:13.785 [info] UploadPackV2: fetch response 3380 bytes
20:32:13.838 [info] UploadPackV2: processing fetch command
20:32:13.838 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.841 [info] UploadPackV2: collected 17 objects, generating pack
20:32:13.842 [info] UploadPackV2: pack generated, 1235 bytes
20:32:13.842 [info] UploadPackV2: fetch response 1257 bytes
.....
20:32:13.897 [info] UploadPackV2: processing fetch command
.
20:32:13.897 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
20:32:13.902 [info] UploadPackV2: collected 17 objects, generating pack
.
20:32:13.903 [info] UploadPackV2: pack generated, 1276 bytes
.
20:32:13.903 [info] UploadPackV2: fetch response 1298 bytes
...
20:32:13.930 [info] UploadPackV2: processing fetch command
20:32:13.930 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.933 [info] UploadPackV2: collected 6 objects, generating pack
20:32:13.933 [info] UploadPackV2: pack generated, 428 bytes
20:32:13.934 [info] UploadPackV2: fetch response 450 bytes
20:32:13.953 [info] UploadPackV2: processing fetch command
20:32:13.953 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.955 [info] UploadPackV2: collected 17 objects, generating pack
20:32:13.956 [info] UploadPackV2: pack generated, 1276 bytes
20:32:13.956 [info] UploadPackV2: fetch response 1298 bytes
20:32:13.976 [info] UploadPackV2: processing fetch command
20:32:13.976 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.976 [info] UploadPackV2: collected 8 objects, generating pack
20:32:13.977 [info] UploadPackV2: pack generated, 636 bytes
20:32:13.977 [info] UploadPackV2: fetch response 658 bytes
20:32:13.985 [info] UploadPackV2: processing fetch command
20:32:13.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:13.990 [info] UploadPackV2: collected 14 objects, generating pack
20:32:13.991 [info] UploadPackV2: pack generated, 1064 bytes
20:32:13.991 [info] UploadPackV2: fetch response 1086 bytes
20:32:14.007 [info] UploadPackV2: processing fetch command
20:32:14.007 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.014 [info] UploadPackV2: collected 47 objects, generating pack
20:32:14.015 [info] UploadPackV2: pack generated, 3364 bytes
20:32:14.015 [info] UploadPackV2: fetch response 3386 bytes
20:32:14.046 [info] UploadPackV2: processing fetch command
20:32:14.047 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.047 [info] UploadPackV2: collected 17 objects, generating pack
20:32:14.048 [info] UploadPackV2: pack generated, 1278 bytes
20:32:14.048 [info] UploadPackV2: fetch response 1300 bytes
20:32:14.068 [info] UploadPackV2: processing fetch command
20:32:14.068 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.071 [info] UploadPackV2: collected 29 objects, generating pack
20:32:14.073 [info] UploadPackV2: pack generated, 2097 bytes
20:32:14.073 [info] UploadPackV2: fetch response 2119 bytes
20:32:14.090 [info] UploadPackV2: processing fetch command
20:32:14.091 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.094 [info] UploadPackV2: collected 8 objects, generating pack
20:32:14.095 [info] UploadPackV2: pack generated, 636 bytes
20:32:14.095 [info] UploadPackV2: fetch response 658 bytes
20:32:14.116 [info] UploadPackV2: processing fetch command
20:32:14.116 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.119 [info] UploadPackV2: collected 34 objects, generating pack
20:32:14.120 [info] UploadPackV2: pack generated, 2512 bytes
.
20:32:14.120 [info] UploadPackV2: fetch response 2534 bytes
20:32:14.133 [info] UploadPackV2: processing fetch command
20:32:14.133 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.134 [info] UploadPackV2: collected 9 objects, generating pack
20:32:14.134 [info] UploadPackV2: pack generated, 610 bytes
20:32:14.134 [info] UploadPackV2: fetch response 632 bytes
20:32:14.137 [info] UploadPackV2: processing fetch command
20:32:14.137 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.137 [info] UploadPackV2: collected 3 objects, generating pack
20:32:14.137 [info] UploadPackV2: pack generated, 214 bytes
20:32:14.137 [info] UploadPackV2: fetch response 236 bytes
20:32:14.142 [info] UploadPackV2: processing fetch command
20:32:14.142 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.144 [info] UploadPackV2: collected 29 objects, generating pack
20:32:14.145 [info] UploadPackV2: pack generated, 2066 bytes
20:32:14.145 [info] UploadPackV2: fetch response 2088 bytes
20:32:14.159 [info] UploadPackV2: processing fetch command
20:32:14.159 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.160 [info] UploadPackV2: collected 20 objects, generating pack
20:32:14.162 [info] UploadPackV2: pack generated, 1492 bytes
20:32:14.163 [info] UploadPackV2: fetch response 1514 bytes
20:32:14.170 [info] UploadPackV2: processing fetch command
20:32:14.227 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.235 [info] UploadPackV2: collected 18 objects, generating pack
20:32:14.235 [info] UploadPackV2: pack generated, 1281 bytes
20:32:14.236 [info] UploadPackV2: fetch response 1303 bytes
20:32:14.264 [info] UploadPackV2: processing fetch command
20:32:14.264 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.276 [info] UploadPackV2: collected 23 objects, generating pack
20:32:14.276 [info] UploadPackV2: pack generated, 1673 bytes
20:32:14.276 [info] UploadPackV2: fetch response 1695 bytes
20:32:14.286 [info] UploadPackV2: processing fetch command
20:32:14.286 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.288 [info] UploadPackV2: collected 17 objects, generating pack
20:32:14.288 [info] UploadPackV2: pack generated, 1276 bytes
20:32:14.288 [info] UploadPackV2: fetch response 1298 bytes
20:32:14.305 [info] UploadPackV2: processing fetch command
20:32:14.305 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.306 [info] UploadPackV2: collected 15 objects, generating pack
20:32:14.307 [info] UploadPackV2: pack generated, 1068 bytes
20:32:14.307 [info] UploadPackV2: fetch response 1090 bytes
20:32:14.316 [info] UploadPackV2: processing fetch command
20:32:14.316 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.317 [info] UploadPackV2: collected 11 objects, generating pack
20:32:14.317 [info] UploadPackV2: pack generated, 853 bytes
20:32:14.317 [info] UploadPackV2: fetch response 875 bytes
20:32:14.325 [info] UploadPackV2: processing fetch command
20:32:14.325 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.330 [info] UploadPackV2: collected 37 objects, generating pack
20:32:14.337 [info] UploadPackV2: pack generated, 2725 bytes
20:32:14.337 [info] UploadPackV2: fetch response 2747 bytes
20:32:14.350 [info] UploadPackV2: processing fetch command
20:32:14.351 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.353 [info] UploadPackV2: collected 3 objects, generating pack
20:32:14.354 [info] UploadPackV2: pack generated, 214 bytes
20:32:14.354 [info] UploadPackV2: fetch response 236 bytes
20:32:14.358 [info] UploadPackV2: processing fetch command
20:32:14.358 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.360 [info] UploadPackV2: collected 14 objects, generating pack
20:32:14.361 [info] UploadPackV2: pack generated, 1064 bytes
20:32:14.361 [info] UploadPackV2: fetch response 1086 bytes
20:32:14.375 [info] UploadPackV2: processing fetch command
20:32:14.375 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.376 [info] UploadPackV2: collected 20 objects, generating pack
20:32:14.383 [info] UploadPackV2: pack generated, 1450 bytes
20:32:14.383 [info] UploadPackV2: fetch response 1472 bytes
20:32:14.411 [info] UploadPackV2: processing fetch command
20:32:14.412 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.412 [info] UploadPackV2: collected 9 objects, generating pack
20:32:14.413 [info] UploadPackV2: pack generated, 642 bytes
20:32:14.414 [info] UploadPackV2: fetch response 664 bytes
20:32:14.424 [info] UploadPackV2: processing fetch command
20:32:14.424 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.427 [info] UploadPackV2: collected 25 objects, generating pack
20:32:14.428 [info] UploadPackV2: pack generated, 1873 bytes
20:32:14.428 [info] UploadPackV2: fetch response 1895 bytes
20:32:14.444 [info] UploadPackV2: processing fetch command
20:32:14.444 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:32:14.445 [info] UploadPackV2: collected 5 objects, generating pack
.
20:32:14.446 [info] UploadPackV2: pack generated, 424 bytes
20:32:14.446 [info] UploadPackV2: fetch response 446 bytes
20:32:14.455 [info] UploadPackV2: processing fetch command
20:32:14.455 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.458 [info] UploadPackV2: collected 44 objects, generating pack
20:32:14.460 [info] UploadPackV2: pack generated, 2582 bytes
20:32:14.460 [info] UploadPackV2: fetch response 2604 bytes
20:32:14.476 [info] UploadPackV2: processing fetch command
20:32:14.476 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.484 [info] UploadPackV2: collected 20 objects, generating pack
20:32:14.485 [info] UploadPackV2: pack generated, 1203 bytes
20:32:14.485 [info] UploadPackV2: fetch response 1225 bytes
20:32:14.494 [info] UploadPackV2: processing fetch command
20:32:14.494 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.496 [info] UploadPackV2: collected 35 objects, generating pack
20:32:14.497 [info] UploadPackV2: pack generated, 2124 bytes
20:32:14.497 [info] UploadPackV2: fetch response 2146 bytes
20:32:14.504 [info] UploadPackV2: processing fetch command
20:32:14.504 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.506 [info] UploadPackV2: collected 11 objects, generating pack
20:32:14.506 [info] UploadPackV2: pack generated, 717 bytes
20:32:14.506 [info] UploadPackV2: fetch response 739 bytes
20:32:14.509 [info] UploadPackV2: processing fetch command
20:32:14.509 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.510 [info] UploadPackV2: collected 8 objects, generating pack
20:32:14.510 [info] UploadPackV2: pack generated, 482 bytes
20:32:14.511 [info] UploadPackV2: fetch response 504 bytes
20:32:14.516 [info] UploadPackV2: processing fetch command
20:32:14.517 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.519 [info] UploadPackV2: collected 35 objects, generating pack
20:32:14.524 [info] UploadPackV2: pack generated, 2106 bytes
20:32:14.524 [info] UploadPackV2: fetch response 2128 bytes
20:32:14.544 [info] UploadPackV2: processing fetch command
20:32:14.544 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.548 [info] UploadPackV2: collected 20 objects, generating pack
20:32:14.549 [info] UploadPackV2: pack generated, 1203 bytes
20:32:14.549 [info] UploadPackV2: fetch response 1225 bytes
20:32:14.555 [info] UploadPackV2: processing fetch command
20:32:14.555 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.556 [info] UploadPackV2: collected 11 objects, generating pack
20:32:14.557 [info] UploadPackV2: pack generated, 714 bytes
20:32:14.557 [info] UploadPackV2: fetch response 736 bytes
20:32:14.570 [info] UploadPackV2: processing fetch command
20:32:14.571 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.572 [info] UploadPackV2: collected 20 objects, generating pack
20:32:14.576 [info] UploadPackV2: pack generated, 1203 bytes
20:32:14.576 [info] UploadPackV2: fetch response 1225 bytes
.
20:32:14.588 [info] UploadPackV2: processing fetch command
20:32:14.588 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.590 [info] UploadPackV2: collected 15 objects, generating pack
20:32:14.590 [info] UploadPackV2: pack generated, 958 bytes
20:32:14.591 [info] UploadPackV2: fetch response 980 bytes
20:32:14.596 [info] UploadPackV2: processing fetch command
20:32:14.596 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.598 [info] UploadPackV2: collected 20 objects, generating pack
.
20:32:14.599 [info] UploadPackV2: pack generated, 1203 bytes
.
20:32:14.599 [info] UploadPackV2: fetch response 1225 bytes
.
20:32:14.605 [info] UploadPackV2: processing fetch command
.
20:32:14.605 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....
20:32:14.607 [info] UploadPackV2: collected 30 objects, generating pack
.
20:32:14.608 [info] UploadPackV2: pack generated, 1861 bytes
.
20:32:14.608 [info] UploadPackV2: fetch response 1883 bytes
..
20:32:14.627 [info] UploadPackV2: processing fetch command
.
20:32:14.627 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
20:32:14.637 [info] UploadPackV2: collected 62 objects, generating pack
20:32:14.640 [info] UploadPackV2: pack generated, 3775 bytes
20:32:14.640 [info] UploadPackV2: fetch response 3797 bytes
........
20:32:14.668 [info] UploadPackV2: processing fetch command
.
20:32:14.668 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.670 [info] UploadPackV2: collected 23 objects, generating pack
.
20:32:14.671 [info] UploadPackV2: pack generated, 1385 bytes
.
20:32:14.671 [info] UploadPackV2: fetch response 1407 bytes
.
20:32:14.694 [info] UploadPackV2: processing fetch command
.
20:32:14.694 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.695 [info] UploadPackV2: collected 23 objects, generating pack
.
20:32:14.696 [info] UploadPackV2: pack generated, 1435 bytes
.
20:32:14.696 [info] UploadPackV2: fetch response 1457 bytes
.
20:32:14.707 [info] UploadPackV2: processing fetch command
.
20:32:14.707 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.708 [info] UploadPackV2: collected 8 objects, generating pack
.
20:32:14.708 [info] UploadPackV2: pack generated, 482 bytes
.
20:32:14.708 [info] UploadPackV2: fetch response 504 bytes
.
20:32:14.717 [info] UploadPackV2: processing fetch command
.
20:32:14.717 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.719 [info] UploadPackV2: collected 23 objects, generating pack
.
20:32:14.720 [info] UploadPackV2: pack generated, 1435 bytes
.
20:32:14.720 [info] UploadPackV2: fetch response 1457 bytes
.
20:32:14.725 [info] UploadPackV2: processing fetch command
.
20:32:14.725 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.728 [info] UploadPackV2: collected 11 objects, generating pack
.
20:32:14.729 [info] UploadPackV2: pack generated, 714 bytes
.
20:32:14.729 [info] UploadPackV2: fetch response 736 bytes
..
20:32:14.736 [info] UploadPackV2: processing fetch command
.
20:32:14.736 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
20:32:14.739 [info] UploadPackV2: collected 19 objects, generating pack
20:32:14.739 [info] UploadPackV2: pack generated, 1196 bytes
20:32:14.739 [info] UploadPackV2: fetch response 1218 bytes
20:32:14.751 [info] UploadPackV2: processing fetch command
20:32:14.751 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.755 [info] UploadPackV2: collected 63 objects, generating pack
20:32:14.756 [info] UploadPackV2: pack generated, 3784 bytes
20:32:14.756 [info] UploadPackV2: fetch response 3806 bytes
20:32:14.769 [info] UploadPackV2: processing fetch command
20:32:14.769 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.772 [info] UploadPackV2: collected 23 objects, generating pack
20:32:14.774 [info] UploadPackV2: pack generated, 1437 bytes
20:32:14.775 [info] UploadPackV2: fetch response 1459 bytes
20:32:14.784 [info] UploadPackV2: processing fetch command
20:32:14.784 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.787 [info] UploadPackV2: collected 39 objects, generating pack
20:32:14.788 [info] UploadPackV2: pack generated, 2364 bytes
20:32:14.788 [info] UploadPackV2: fetch response 2386 bytes
20:32:14.801 [info] UploadPackV2: processing fetch command
20:32:14.801 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.802 [info] UploadPackV2: collected 11 objects, generating pack
20:32:14.803 [info] UploadPackV2: pack generated, 714 bytes
20:32:14.803 [info] UploadPackV2: fetch response 736 bytes
.
20:32:14.810 [info] UploadPackV2: processing fetch command
20:32:14.810 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.812 [info] UploadPackV2: collected 46 objects, generating pack
20:32:14.819 [info] UploadPackV2: pack generated, 2821 bytes
20:32:14.819 [info] UploadPackV2: fetch response 2843 bytes
20:32:14.831 [info] UploadPackV2: processing fetch command
20:32:14.831 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.832 [info] UploadPackV2: collected 12 objects, generating pack
20:32:14.832 [info] UploadPackV2: pack generated, 691 bytes
20:32:14.832 [info] UploadPackV2: fetch response 713 bytes
20:32:14.836 [info] UploadPackV2: processing fetch command
20:32:14.836 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.837 [info] UploadPackV2: collected 4 objects, generating pack
20:32:14.838 [info] UploadPackV2: pack generated, 241 bytes
20:32:14.838 [info] UploadPackV2: fetch response 263 bytes
20:32:14.844 [info] UploadPackV2: processing fetch command
20:32:14.844 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.846 [info] UploadPackV2: collected 39 objects, generating pack
20:32:14.847 [info] UploadPackV2: pack generated, 2333 bytes
20:32:14.847 [info] UploadPackV2: fetch response 2355 bytes
20:32:14.864 [info] UploadPackV2: processing fetch command
20:32:14.864 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.866 [info] UploadPackV2: collected 27 objects, generating pack
20:32:14.867 [info] UploadPackV2: pack generated, 1678 bytes
20:32:14.867 [info] UploadPackV2: fetch response 1700 bytes
20:32:14.872 [info] UploadPackV2: processing fetch command
20:32:14.872 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.874 [info] UploadPackV2: collected 24 objects, generating pack
20:32:14.875 [info] UploadPackV2: pack generated, 1443 bytes
20:32:14.875 [info] UploadPackV2: fetch response 1465 bytes
20:32:14.882 [info] UploadPackV2: processing fetch command
20:32:14.882 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.884 [info] UploadPackV2: collected 31 objects, generating pack
20:32:14.884 [info] UploadPackV2: pack generated, 1886 bytes
20:32:14.884 [info] UploadPackV2: fetch response 1908 bytes
20:32:14.891 [info] UploadPackV2: processing fetch command
20:32:14.891 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.892 [info] UploadPackV2: collected 23 objects, generating pack
20:32:14.893 [info] UploadPackV2: pack generated, 1435 bytes
20:32:14.893 [info] UploadPackV2: fetch response 1457 bytes
20:32:14.900 [info] UploadPackV2: processing fetch command
20:32:14.900 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.901 [info] UploadPackV2: collected 20 objects, generating pack
20:32:14.902 [info] UploadPackV2: pack generated, 1203 bytes
20:32:14.902 [info] UploadPackV2: fetch response 1225 bytes
20:32:14.913 [info] UploadPackV2: processing fetch command
20:32:14.913 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.918 [info] UploadPackV2: collected 15 objects, generating pack
20:32:14.918 [info] UploadPackV2: pack generated, 958 bytes
20:32:14.918 [info] UploadPackV2: fetch response 980 bytes
20:32:14.924 [info] UploadPackV2: processing fetch command
20:32:14.924 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.929 [info] UploadPackV2: collected 50 objects, generating pack
20:32:14.930 [info] UploadPackV2: pack generated, 3061 bytes
.
20:32:14.930 [info] UploadPackV2: fetch response 3083 bytes
...
20:32:14.940 [info] UploadPackV2: processing fetch command
.
20:32:14.940 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:14.941 [info] UploadPackV2: collected 4 objects, generating pack
20:32:14.941 [info] UploadPackV2: pack generated, 241 bytes
.
20:32:14.941 [info] UploadPackV2: fetch response 263 bytes
.
20:32:14.943 [info] UploadPackV2: processing fetch command
.
20:32:14.943 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.945 [info] UploadPackV2: collected 19 objects, generating pack
.
20:32:14.946 [info] UploadPackV2: pack generated, 1196 bytes
.
20:32:14.946 [info] UploadPackV2: fetch response 1218 bytes
.
20:32:14.951 [info] UploadPackV2: processing fetch command
.
20:32:14.951 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.952 [info] UploadPackV2: collected 27 objects, generating pack
.
20:32:14.952 [info] UploadPackV2: pack generated, 1627 bytes
.
20:32:14.952 [info] UploadPackV2: fetch response 1649 bytes
.
20:32:14.985 [info] UploadPackV2: processing fetch command
.
20:32:14.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:14.989 [info] UploadPackV2: collected 12 objects, generating pack
.
20:32:14.989 [info] UploadPackV2: pack generated, 723 bytes
.
20:32:14.990 [info] UploadPackV2: fetch response 745 bytes
.
20:32:15.003 [info] UploadPackV2: processing fetch command
.
20:32:15.003 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:15.005 [info] UploadPackV2: collected 34 objects, generating pack
.
20:32:15.014 [info] UploadPackV2: pack generated, 2101 bytes
.
20:32:15.014 [info] UploadPackV2: fetch response 2123 bytes
.
20:32:15.032 [info] UploadPackV2: processing fetch command
.
20:32:15.032 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:32:15.032 [info] UploadPackV2: collected 7 objects, generating pack
.
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
20:32:15.035 [info] UploadPackV2: pack generated, 475 bytes
.
20:32:15.035 [info] UploadPackV2: fetch response 497 bytes
20:32:15.050 [info] UploadPackV2: processing fetch command
20:32:15.050 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.051 [info] UploadPackV2: collected 23 objects, generating pack
20:32:15.052 [info] UploadPackV2: pack generated, 1437 bytes
20:32:15.052 [info] UploadPackV2: fetch response 1459 bytes
20:32:15.063 [info] UploadPackV2: processing fetch command
20:32:15.063 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.070 [info] UploadPackV2: collected 47 objects, generating pack
20:32:15.071 [info] UploadPackV2: pack generated, 2828 bytes
20:32:15.071 [info] UploadPackV2: fetch response 2850 bytes
20:32:15.082 [info] UploadPackV2: processing fetch command
20:32:15.082 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.084 [info] UploadPackV2: collected 27 objects, generating pack
20:32:15.085 [info] UploadPackV2: pack generated, 1678 bytes
.
20:32:15.085 [info] UploadPackV2: fetch response 1700 bytes
20:32:15.090 [info] UploadPackV2: processing fetch command
20:32:15.091 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.091 [info] UploadPackV2: collected 8 objects, generating pack
20:32:15.091 [info] UploadPackV2: pack generated, 482 bytes
20:32:15.091 [info] UploadPackV2: fetch response 504 bytes
20:32:15.093 [info] UploadPackV2: processing fetch command
20:32:15.093 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.093 [info] UploadPackV2: collected 11 objects, generating pack
20:32:15.094 [info] UploadPackV2: pack generated, 714 bytes
20:32:15.094 [info] UploadPackV2: fetch response 736 bytes
20:32:15.096 [info] UploadPackV2: processing fetch command
20:32:15.097 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.098 [info] UploadPackV2: collected 31 objects, generating pack
20:32:15.098 [info] UploadPackV2: pack generated, 1866 bytes
20:32:15.098 [info] UploadPackV2: fetch response 1888 bytes
20:32:15.103 [info] UploadPackV2: processing fetch command
20:32:15.103 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.103 [info] UploadPackV2: collected 20 objects, generating pack
20:32:15.104 [info] UploadPackV2: pack generated, 1203 bytes
20:32:15.104 [info] UploadPackV2: fetch response 1225 bytes
20:32:15.108 [info] UploadPackV2: processing fetch command
20:32:15.108 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.109 [info] UploadPackV2: collected 35 objects, generating pack
20:32:15.110 [info] UploadPackV2: pack generated, 2123 bytes
20:32:15.110 [info] UploadPackV2: fetch response 2145 bytes
20:32:15.120 [info] UploadPackV2: processing fetch command
20:32:15.120 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.122 [info] UploadPackV2: collected 34 objects, generating pack
20:32:15.123 [info] UploadPackV2: pack generated, 2098 bytes
20:32:15.123 [info] UploadPackV2: fetch response 2120 bytes
.
20:32:15.132 [info] UploadPackV2: processing fetch command
20:32:15.213 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.225 [info] UploadPackV2: collected 19 objects, generating pack
20:32:15.231 [info] UploadPackV2: pack generated, 1196 bytes
20:32:15.231 [info] UploadPackV2: fetch response 1218 bytes
20:32:15.261 [info] UploadPackV2: processing fetch command
20:32:15.261 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.263 [info] UploadPackV2: collected 27 objects, generating pack
20:32:15.263 [info] UploadPackV2: pack generated, 1678 bytes
20:32:15.263 [info] UploadPackV2: fetch response 1700 bytes
20:32:15.270 [info] UploadPackV2: processing fetch command
20:32:15.270 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.282 [info] UploadPackV2: collected 16 objects, generating pack
20:32:15.283 [info] UploadPackV2: pack generated, 962 bytes
20:32:15.283 [info] UploadPackV2: fetch response 984 bytes
20:32:15.309 [info] UploadPackV2: processing fetch command
20:32:15.309 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.316 [info] UploadPackV2: collected 58 objects, generating pack
20:32:15.323 [info] UploadPackV2: pack generated, 3539 bytes
20:32:15.323 [info] UploadPackV2: fetch response 3561 bytes
20:32:15.346 [info] UploadPackV2: processing fetch command
20:32:15.347 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.355 [info] UploadPackV2: collected 46 objects, generating pack
20:32:15.356 [info] UploadPackV2: pack generated, 2819 bytes
20:32:15.356 [info] UploadPackV2: fetch response 2841 bytes
20:32:15.373 [info] UploadPackV2: processing fetch command
20:32:15.374 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.376 [info] UploadPackV2: collected 56 objects, generating pack
20:32:15.381 [info] UploadPackV2: pack generated, 3303 bytes
20:32:15.381 [info] UploadPackV2: fetch response 3325 bytes
20:32:15.403 [info] UploadPackV2: processing fetch command
20:32:15.403 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.408 [info] UploadPackV2: collected 20 objects, generating pack
20:32:15.408 [info] UploadPackV2: pack generated, 1203 bytes
20:32:15.409 [info] UploadPackV2: fetch response 1225 bytes
20:32:15.418 [info] UploadPackV2: processing fetch command
20:32:15.419 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.419 [info] UploadPackV2: collected 12 objects, generating pack
20:32:15.420 [info] UploadPackV2: pack generated, 723 bytes
20:32:15.420 [info] UploadPackV2: fetch response 745 bytes
20:32:15.424 [info] UploadPackV2: processing fetch command
20:32:15.424 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.436 [info] UploadPackV2: collected 30 objects, generating pack
20:32:15.437 [info] UploadPackV2: pack generated, 1861 bytes
20:32:15.437 [info] UploadPackV2: fetch response 1883 bytes
20:32:15.455 [info] UploadPackV2: processing fetch command
20:32:15.455 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.457 [info] UploadPackV2: collected 32 objects, generating pack
20:32:15.458 [info] UploadPackV2: pack generated, 1892 bytes
20:32:15.458 [info] UploadPackV2: fetch response 1914 bytes
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
20:32:15.473 [info] UploadPackV2: processing fetch command
20:32:15.473 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.479 [info] UploadPackV2: collected 19 objects, generating pack
.
20:32:15.480 [info] UploadPackV2: pack generated, 1196 bytes
20:32:15.480 [info] UploadPackV2: fetch response 1218 bytes
20:32:15.487 [info] UploadPackV2: processing fetch command
20:32:15.487 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.488 [info] UploadPackV2: collected 19 objects, generating pack
20:32:15.488 [info] UploadPackV2: pack generated, 1194 bytes
20:32:15.489 [info] UploadPackV2: fetch response 1216 bytes
20:32:15.503 [info] UploadPackV2: processing fetch command
20:32:15.503 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.503 [info] UploadPackV2: collected 20 objects, generating pack
20:32:15.504 [info] UploadPackV2: pack generated, 1203 bytes
20:32:15.504 [info] UploadPackV2: fetch response 1225 bytes
20:32:15.510 [info] UploadPackV2: processing fetch command
20:32:15.510 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.512 [info] UploadPackV2: collected 4 objects, generating pack
20:32:15.512 [info] UploadPackV2: pack generated, 241 bytes
20:32:15.513 [info] UploadPackV2: fetch response 263 bytes
20:32:15.518 [info] UploadPackV2: processing fetch command
20:32:15.518 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.519 [info] UploadPackV2: collected 27 objects, generating pack
20:32:15.520 [info] UploadPackV2: pack generated, 1647 bytes
20:32:15.520 [info] UploadPackV2: fetch response 1669 bytes
20:32:15.525 [info] UploadPackV2: processing fetch command
20:32:15.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.525 [info] UploadPackV2: collected 8 objects, generating pack
20:32:15.526 [info] UploadPackV2: pack generated, 482 bytes
20:32:15.526 [info] UploadPackV2: fetch response 504 bytes
20:32:15.528 [info] UploadPackV2: processing fetch command
20:32:15.528 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.529 [info] UploadPackV2: collected 16 objects, generating pack
20:32:15.529 [info] UploadPackV2: pack generated, 962 bytes
20:32:15.529 [info] UploadPackV2: fetch response 984 bytes
20:32:15.532 [info] UploadPackV2: processing fetch command
20:32:15.532 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.533 [info] UploadPackV2: collected 16 objects, generating pack
20:32:15.534 [info] UploadPackV2: pack generated, 962 bytes
20:32:15.534 [info] UploadPackV2: fetch response 984 bytes
20:32:15.539 [info] UploadPackV2: processing fetch command
20:32:15.539 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.543 [info] UploadPackV2: collected 35 objects, generating pack
20:32:15.544 [info] UploadPackV2: pack generated, 2125 bytes
20:32:15.546 [info] UploadPackV2: fetch response 2147 bytes
20:32:15.557 [info] UploadPackV2: processing fetch command
20:32:15.557 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.558 [info] UploadPackV2: collected 23 objects, generating pack
20:32:15.559 [info] UploadPackV2: pack generated, 1437 bytes
20:32:15.559 [info] UploadPackV2: fetch response 1459 bytes
20:32:15.572 [info] UploadPackV2: processing fetch command
20:32:15.572 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.575 [info] UploadPackV2: collected 50 objects, generating pack
20:32:15.581 [info] UploadPackV2: pack generated, 3062 bytes
20:32:15.581 [info] UploadPackV2: fetch response 3084 bytes
.
20:32:15.590 [info] UploadPackV2: processing fetch command
20:32:15.590 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.591 [info] UploadPackV2: collected 12 objects, generating pack
20:32:15.592 [info] UploadPackV2: pack generated, 723 bytes
20:32:15.592 [info] UploadPackV2: fetch response 745 bytes
20:32:15.596 [info] UploadPackV2: processing fetch command
20:32:15.596 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.597 [info] UploadPackV2: collected 7 objects, generating pack
20:32:15.598 [info] UploadPackV2: pack generated, 475 bytes
20:32:15.598 [info] UploadPackV2: fetch response 497 bytes
20:32:15.603 [info] UploadPackV2: processing fetch command
20:32:15.604 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.605 [info] UploadPackV2: collected 11 objects, generating pack
20:32:15.605 [info] UploadPackV2: pack generated, 714 bytes
.
20:32:15.606 [info] UploadPackV2: fetch response 736 bytes
.
20:32:15.613 [info] UploadPackV2: processing fetch command
.
20:32:15.613 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.616 [info] UploadPackV2: collected 44 objects, generating pack
20:32:15.618 [info] UploadPackV2: pack generated, 2582 bytes
20:32:15.618 [info] UploadPackV2: fetch response 2604 bytes
20:32:15.632 [info] UploadPackV2: processing fetch command
20:32:15.632 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.635 [info] UploadPackV2: collected 23 objects, generating pack
20:32:15.636 [info] UploadPackV2: pack generated, 1435 bytes
20:32:15.636 [info] UploadPackV2: fetch response 1457 bytes
20:32:15.642 [info] UploadPackV2: processing fetch command
20:32:15.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.643 [info] UploadPackV2: collected 12 objects, generating pack
20:32:15.643 [info] UploadPackV2: pack generated, 723 bytes
20:32:15.643 [info] UploadPackV2: fetch response 745 bytes
20:32:15.652 [info] UploadPackV2: processing fetch command
20:32:15.652 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.655 [info] UploadPackV2: collected 40 objects, generating pack
20:32:15.658 [info] UploadPackV2: pack generated, 2372 bytes
20:32:15.658 [info] UploadPackV2: fetch response 2394 bytes
20:32:15.666 [info] UploadPackV2: processing fetch command
20:32:15.666 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.668 [info] UploadPackV2: collected 15 objects, generating pack
20:32:15.668 [info] UploadPackV2: pack generated, 956 bytes
20:32:15.668 [info] UploadPackV2: fetch response 978 bytes
20:32:15.672 [info] UploadPackV2: processing fetch command
20:32:15.672 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.674 [info] UploadPackV2: collected 24 objects, generating pack
20:32:15.674 [info] UploadPackV2: pack generated, 1443 bytes
20:32:15.674 [info] UploadPackV2: fetch response 1465 bytes
20:32:15.680 [info] UploadPackV2: processing fetch command
20:32:15.680 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:15.680 [info] UploadPackV2: collected 15 objects, generating pack
20:32:15.681 [info] UploadPackV2: pack generated, 958 bytes
20:32:15.681 [info] UploadPackV2: fetch response 980 bytes
........................
20:32:19.393 [info] UploadPackV2: processing ls-refs command
20:32:19.395 [info] UploadPackV2: processing fetch command
20:32:19.395 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:19.396 [info] UploadPackV2: collected 6 objects, generating pack
20:32:19.396 [info] UploadPackV2: pack generated, 365 bytes
20:32:19.396 [info] UploadPackV2: fetch response 387 bytes
20:32:19.412 [info] UploadPackV2: processing fetch command
20:32:19.412 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
20:32:19.413 [info] UploadPackV2: fetch response 122 bytes
.
20:32:19.481 [info] UploadPackV2: processing ls-refs command
20:32:19.483 [info] UploadPackV2: processing fetch command
20:32:19.483 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:19.486 [info] UploadPackV2: collected 90 objects, generating pack
20:32:19.487 [info] UploadPackV2: pack generated, 5649 bytes
20:32:19.487 [info] UploadPackV2: fetch response 5671 bytes
20:32:19.773 [info] UploadPackV2: processing ls-refs command
.
20:32:19.841 [info] UploadPackV2: processing ls-refs command
20:32:19.842 [info] UploadPackV2: processing fetch command
20:32:19.842 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:32:19.842 [info] UploadPackV2: collected 3 objects, generating pack
20:32:19.843 [info] UploadPackV2: pack generated, 216 bytes
20:32:19.843 [info] UploadPackV2: fetch response 346 bytes
.
20:32:19.989 [info] UploadPackV2: processing ls-refs command
20:32:19.991 [info] UploadPackV2: processing fetch command
20:32:19.991 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:19.991 [info] UploadPackV2: collected 6 objects, generating pack
20:32:19.992 [info] UploadPackV2: pack generated, 365 bytes
20:32:19.992 [info] UploadPackV2: fetch response 387 bytes
20:32:22.309 [info] UploadPackV2: processing ls-refs command
.
20:32:22.389 [info] UploadPackV2: processing ls-refs command
20:32:22.391 [info] UploadPackV2: processing fetch command
20:32:22.391 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:22.392 [info] UploadPackV2: collected 6 objects, generating pack
20:32:22.392 [info] UploadPackV2: pack generated, 365 bytes
20:32:22.392 [info] UploadPackV2: fetch response 387 bytes
.
20:32:37.397 [info] UploadPackV2: processing fetch command
.
20:32:37.397 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:37.397 [info] UploadPackV2: collected 3 objects, generating pack
20:32:37.397 [info] UploadPackV2: pack generated, 183 bytes
20:32:37.398 [info] UploadPackV2: fetch response 205 bytes
20:32:37.457 [info] UploadPackV2: processing ls-refs command
20:32:37.459 [info] UploadPackV2: processing fetch command
20:32:37.459 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:37.459 [info] UploadPackV2: collected 6 objects, generating pack
20:32:37.459 [info] UploadPackV2: pack generated, 366 bytes
20:32:37.460 [info] UploadPackV2: fetch response 388 bytes
20:32:37.521 [info] UploadPackV2: processing ls-refs command
20:32:37.522 [info] UploadPackV2: processing fetch command
20:32:37.522 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
20:32:37.522 [info] UploadPackV2: fetch response 32 bytes
20:32:37.522 [info] UploadPackV2: processing fetch command
20:32:37.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:37.523 [info] UploadPackV2: collected 3 objects, generating pack
20:32:37.523 [info] UploadPackV2: pack generated, 183 bytes
20:32:37.523 [info] UploadPackV2: fetch response 205 bytes
.
20:32:37.581 [info] UploadPackV2: processing ls-refs command
20:32:37.583 [info] UploadPackV2: processing fetch command
20:32:37.583 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:37.584 [info] UploadPackV2: collected 9 objects, generating pack
20:32:37.584 [info] UploadPackV2: pack generated, 547 bytes
20:32:37.584 [info] UploadPackV2: fetch response 569 bytes
20:32:37.657 [info] UploadPackV2: processing ls-refs command
.
20:32:37.717 [info] UploadPackV2: processing ls-refs command
20:32:37.717 [info] UploadPackV2: processing ls-refs command
20:32:37.719 [info] UploadPackV2: processing fetch command
20:32:37.719 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:37.720 [info] UploadPackV2: processing fetch command
20:32:37.720 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:37.722 [info] UploadPackV2: collected 6 objects, generating pack
20:32:37.722 [info] UploadPackV2: collected 6 objects, generating pack
20:32:37.722 [info] UploadPackV2: pack generated, 365 bytes
20:32:37.722 [info] UploadPackV2: fetch response 387 bytes
20:32:37.723 [info] UploadPackV2: pack generated, 365 bytes
20:32:37.723 [info] UploadPackV2: fetch response 387 bytes
..
20:32:52.881 [info] UploadPackV2: processing ls-refs command
20:32:52.883 [info] UploadPackV2: processing fetch command
20:32:52.883 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:52.884 [info] UploadPackV2: collected 3 objects, generating pack
20:32:52.884 [info] UploadPackV2: pack generated, 196 bytes
20:32:52.884 [info] UploadPackV2: fetch response 218 bytes
.
20:32:52.961 [info] UploadPackV2: processing ls-refs command
20:32:52.963 [info] UploadPackV2: processing fetch command
20:32:52.963 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:32:52.964 [info] UploadPackV2: collected 3 objects, generating pack
20:32:52.964 [info] UploadPackV2: pack generated, 185 bytes
20:32:52.964 [info] UploadPackV2: fetch response 207 bytes
.
20:32:52.989 [info] The function passed as a handler with ID "telemetry-test-11939" 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
.
20:33:08.055 [info] The function passed as a handler with ID "telemetry-test-11971" 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
.
20:33:08.056 [info] UploadPackV2: processing fetch command
.
20:33:08.056 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
.
20:33:08.056 [info] UploadPackV2: collected 3 objects, generating pack
20:33:08.056 [info] UploadPackV2: pack generated, 183 bytes
20:33:08.056 [info] UploadPackV2: fetch response 205 bytes
.
20:33:08.056 [info] The function passed as a handler with ID "telemetry-test-12003" 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
20:33:08.057 [info] UploadPackV2: processing fetch command
20:33:08.057 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:33:08.058 [info] UploadPackV2: collected 3 objects, generating pack
20:33:08.058 [info] UploadPackV2: pack generated, 186 bytes
20:33:08.058 [info] UploadPackV2: fetch response 208 bytes
20:33:08.058 [info] The function passed as a handler with ID "telemetry-test-12035" 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
20:33:08.059 [info] UploadPackV2: processing fetch command
20:33:08.059 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:33:08.059 [info] UploadPackV2: collected 2 objects, generating pack
20:33:08.059 [info] UploadPackV2: pack generated, 169 bytes
20:33:08.059 [info] UploadPackV2: fetch response 191 bytes
...**************.
20:33:24.453 [info] UploadPackV2: processing ls-refs command
20:33:24.455 [info] UploadPackV2: processing fetch command
20:33:24.455 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:33:24.455 [info] UploadPackV2: collected 3 objects, generating pack
20:33:24.455 [info] UploadPackV2: pack generated, 183 bytes
20:33:24.456 [info] UploadPackV2: fetch response 205 bytes
.
20:33:24.581 [info] UploadPackV2: processing ls-refs command
20:33:24.583 [info] UploadPackV2: processing fetch command
20:33:24.583 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:33:24.583 [info] UploadPackV2: collected 3 objects, generating pack
20:33:24.583 [info] UploadPackV2: pack generated, 183 bytes
20:33:24.583 [info] UploadPackV2: fetch response 205 bytes
....
20:34:24.965 [info] UploadPackV2: processing ls-refs command
20:34:24.967 [info] UploadPackV2: processing fetch command
20:34:24.967 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:34:24.968 [info] UploadPackV2: collected 6 objects, generating pack
20:34:24.968 [info] UploadPackV2: pack generated, 365 bytes
20:34:24.968 [info] UploadPackV2: fetch response 387 bytes
.
20:34:25.057 [info] UploadPackV2: processing ls-refs command
20:34:25.059 [info] UploadPackV2: processing fetch command
20:34:25.059 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:34:25.060 [info] UploadPackV2: collected 3 objects, generating pack
20:34:25.060 [info] UploadPackV2: pack generated, 201 bytes
20:34:25.060 [info] UploadPackV2: fetch response 223 bytes
..
20:34:55.273 [info] UploadPackV2: processing ls-refs command
20:34:55.275 [info] UploadPackV2: processing fetch command
20:34:55.275 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:34:55.276 [info] UploadPackV2: collected 6 objects, generating pack
20:34:55.276 [info] UploadPackV2: pack generated, 365 bytes
20:34:55.276 [info] UploadPackV2: fetch response 387 bytes
.......................
20:35:25.464 [info] The function passed as a handler with ID "graph-query-test-8773" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..
20:35:25.468 [info] The function passed as a handler with ID "graph-query-test-8132" 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
......
20:35:25.480 [info] The function passed as a handler with ID "graph-query-test-8292" 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
..
20:35:25.529 [info] UploadPackV2: processing ls-refs command
.
20:35:25.581 [info] UploadPackV2: processing ls-refs command
.
20:35:25.689 [info] UploadPackV2: processing ls-refs command
20:35:25.691 [info] UploadPackV2: processing fetch command
20:35:25.691 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.718 [info] UploadPackV2: collected 600 objects, generating pack
20:35:25.736 [info] UploadPackV2: pack generated, 45197 bytes
20:35:25.736 [info] UploadPackV2: fetch response 45219 bytes
.
20:35:25.775 [info] UploadPackV2: processing fetch command
20:35:25.775 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
20:35:25.775 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.775 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.775 [info] UploadPackV2: fetch response 205 bytes
20:35:25.775 [info] UploadPackV2: processing fetch command
20:35:25.775 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.775 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.775 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.775 [info] UploadPackV2: fetch response 205 bytes
20:35:25.775 [info] UploadPackV2: processing fetch command
20:35:25.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.776 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.776 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.776 [info] UploadPackV2: fetch response 205 bytes
20:35:25.776 [info] UploadPackV2: processing fetch command
20:35:25.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.776 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.776 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.776 [info] UploadPackV2: fetch response 205 bytes
20:35:25.776 [info] UploadPackV2: processing fetch command
20:35:25.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.776 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.776 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.776 [info] UploadPackV2: fetch response 205 bytes
20:35:25.777 [info] UploadPackV2: processing fetch command
20:35:25.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.777 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.777 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.777 [info] UploadPackV2: fetch response 205 bytes
20:35:25.777 [info] UploadPackV2: processing fetch command
20:35:25.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.777 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.777 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.777 [info] UploadPackV2: fetch response 205 bytes
20:35:25.777 [info] UploadPackV2: processing fetch command
20:35:25.778 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.778 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.778 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.778 [info] UploadPackV2: fetch response 205 bytes
20:35:25.778 [info] UploadPackV2: processing fetch command
20:35:25.778 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.778 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.778 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.778 [info] UploadPackV2: fetch response 205 bytes
20:35:25.778 [info] UploadPackV2: processing fetch command
20:35:25.778 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.778 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.778 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.778 [info] UploadPackV2: fetch response 205 bytes
20:35:25.779 [info] UploadPackV2: processing fetch command
20:35:25.779 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.779 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.779 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.779 [info] UploadPackV2: fetch response 205 bytes
20:35:25.779 [info] UploadPackV2: processing fetch command
20:35:25.779 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.779 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.779 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.779 [info] UploadPackV2: fetch response 205 bytes
20:35:25.779 [info] UploadPackV2: processing fetch command
20:35:25.779 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.779 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.779 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.780 [info] UploadPackV2: fetch response 205 bytes
20:35:25.780 [info] UploadPackV2: processing fetch command
20:35:25.780 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.780 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.780 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.780 [info] UploadPackV2: fetch response 205 bytes
20:35:25.780 [info] UploadPackV2: processing fetch command
20:35:25.780 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.780 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.780 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.780 [info] UploadPackV2: fetch response 205 bytes
20:35:25.780 [info] UploadPackV2: processing fetch command
20:35:25.780 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.780 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.781 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.781 [info] UploadPackV2: fetch response 205 bytes
20:35:25.781 [info] UploadPackV2: processing fetch command
20:35:25.781 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.781 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.781 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.781 [info] UploadPackV2: fetch response 205 bytes
20:35:25.781 [info] UploadPackV2: processing fetch command
20:35:25.781 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.781 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.781 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.781 [info] UploadPackV2: fetch response 205 bytes
20:35:25.782 [info] UploadPackV2: processing fetch command
20:35:25.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.782 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.782 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.782 [info] UploadPackV2: fetch response 205 bytes
20:35:25.782 [info] UploadPackV2: processing fetch command
20:35:25.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.782 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.782 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.782 [info] UploadPackV2: fetch response 205 bytes
20:35:25.782 [info] UploadPackV2: processing fetch command
20:35:25.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.782 [info] UploadPackV2: collected 3 objects, generating pack
20:35:25.783 [info] UploadPackV2: pack generated, 183 bytes
20:35:25.783 [info] UploadPackV2: fetch response 205 bytes
20:35:25.790 [info] UploadPackV2: processing fetch command
20:35:25.798 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:25.798 [info] UploadPackV2: collected 0 objects, generating pack
20:35:25.798 [info] UploadPackV2: pack generated, 32 bytes
20:35:25.798 [info] UploadPackV2: fetch response 54 bytes
.
20:35:26.057 [info] UploadPackV2: processing ls-refs command
20:35:26.059 [info] UploadPackV2: processing fetch command
20:35:26.059 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.066 [info] UploadPackV2: collected 240 objects, generating pack
20:35:26.070 [info] UploadPackV2: pack generated, 16258 bytes
20:35:26.070 [info] UploadPackV2: fetch response 16280 bytes
.
20:35:26.209 [info] UploadPackV2: processing ls-refs command
20:35:26.211 [info] UploadPackV2: processing fetch command
20:35:26.211 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:26.211 [info] UploadPackV2: collected 3 objects, generating pack
20:35:26.211 [info] UploadPackV2: pack generated, 231 bytes
20:35:26.211 [info] UploadPackV2: fetch response 327 bytes
..
20:35:26.293 [info] UploadPackV2: processing ls-refs command
20:35:26.297 [info] UploadPackV2: processing fetch command
20:35:26.297 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.298 [info] UploadPackV2: collected 9 objects, generating pack
20:35:26.298 [info] UploadPackV2: pack generated, 549 bytes
20:35:26.298 [info] UploadPackV2: fetch response 571 bytes
20:35:26.332 [info] UploadPackV2: processing ls-refs command
.
20:35:26.358 [info] UploadPackV2: processing ls-refs command
20:35:26.361 [info] UploadPackV2: processing fetch command
20:35:26.361 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.362 [info] UploadPackV2: collected 15 objects, generating pack
20:35:26.362 [info] UploadPackV2: pack generated, 919 bytes
20:35:26.362 [info] UploadPackV2: fetch response 941 bytes
.
20:35:26.414 [info] UploadPackV2: processing ls-refs command
20:35:26.417 [info] UploadPackV2: processing fetch command
20:35:26.417 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.422 [info] UploadPackV2: collected 180 objects, generating pack
20:35:26.425 [info] UploadPackV2: pack generated, 11106 bytes
20:35:26.425 [info] UploadPackV2: fetch response 11128 bytes
.
20:35:26.527 [info] UploadPackV2: processing fetch command
20:35:26.528 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.528 [info] UploadPackV2: collected 3 objects, generating pack
20:35:26.528 [info] UploadPackV2: pack generated, 183 bytes
20:35:26.528 [info] UploadPackV2: fetch response 205 bytes
.
20:35:26.553 [info] UploadPackV2: processing ls-refs command
20:35:26.556 [info] UploadPackV2: processing fetch command
20:35:26.556 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.557 [info] UploadPackV2: collected 3 objects, generating pack
20:35:26.557 [info] UploadPackV2: pack generated, 183 bytes
20:35:26.557 [info] UploadPackV2: fetch response 205 bytes
.
20:35:26.599 [info] UploadPackV2: processing ls-refs command
20:35:26.603 [info] UploadPackV2: processing fetch command
20:35:26.603 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.603 [info] UploadPackV2: collected 6 objects, generating pack
20:35:26.604 [info] UploadPackV2: pack generated, 366 bytes
20:35:26.604 [info] UploadPackV2: fetch response 388 bytes
20:35:26.638 [info] UploadPackV2: processing ls-refs command
............
20:35:26.725 [info] UploadPackV2: processing ls-refs command
20:35:26.727 [info] UploadPackV2: processing fetch command
20:35:26.727 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.727 [info] UploadPackV2: collected 3 objects, generating pack
20:35:26.728 [info] UploadPackV2: pack generated, 185 bytes
20:35:26.728 [info] UploadPackV2: fetch response 207 bytes
20:35:26.797 [info] UploadPackV2: processing ls-refs command
.
20:35:26.857 [info] UploadPackV2: processing ls-refs command
20:35:26.859 [info] UploadPackV2: processing fetch command
20:35:26.859 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.860 [info] UploadPackV2: collected 15 objects, generating pack
20:35:26.860 [info] UploadPackV2: pack generated, 952 bytes
20:35:26.860 [info] UploadPackV2: fetch response 974 bytes
.
20:35:26.933 [info] UploadPackV2: processing ls-refs command
20:35:26.935 [info] UploadPackV2: processing fetch command
20:35:26.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:26.935 [info] UploadPackV2: collected 3 objects, generating pack
20:35:26.936 [info] UploadPackV2: pack generated, 196 bytes
20:35:26.936 [info] UploadPackV2: fetch response 218 bytes
.
20:35:27.025 [info] UploadPackV2: processing ls-refs command
20:35:27.026 [info] UploadPackV2: processing fetch command
20:35:27.026 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:27.027 [info] UploadPackV2: collected 3 objects, generating pack
20:35:27.027 [info] UploadPackV2: pack generated, 200 bytes
20:35:27.027 [info] UploadPackV2: fetch response 256 bytes
.
20:35:27.034 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303414556" 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
20:35:27.034 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303414524" 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
.
20:35:27.035 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303414492" 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
20:35:27.035 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303414460" 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
.
20:35:27.036 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303414428" 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
20:35:27.036 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303414396" 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
.
20:35:27.037 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303415101" 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
.
20:35:27.037 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303414364" 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
20:35:27.093 [info] UploadPackV2: processing ls-refs command
20:35:27.095 [info] UploadPackV2: processing fetch command
20:35:27.095 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:27.096 [info] UploadPackV2: collected 3 objects, generating pack
20:35:27.096 [info] UploadPackV2: pack generated, 216 bytes
20:35:27.096 [info] UploadPackV2: fetch response 312 bytes
.
20:35:27.169 [info] UploadPackV2: processing ls-refs command
.
20:35:27.221 [info] UploadPackV2: processing ls-refs command
.
20:35:27.273 [info] UploadPackV2: processing ls-refs command
20:35:27.275 [info] UploadPackV2: processing fetch command
20:35:27.275 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:27.275 [info] UploadPackV2: collected 3 objects, generating pack
20:35:27.276 [info] UploadPackV2: pack generated, 218 bytes
20:35:27.276 [info] UploadPackV2: fetch response 314 bytes
.
20:35:27.349 [info] UploadPackV2: processing ls-refs command
20:35:27.352 [info] UploadPackV2: processing fetch command
20:35:27.352 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
20:35:27.353 [info] UploadPackV2: collected 3 objects, generating pack
20:35:27.353 [info] UploadPackV2: pack generated, 381 bytes
20:35:27.353 [info] UploadPackV2: fetch response 403 bytes
.
20:35:27.429 [info] UploadPackV2: processing ls-refs command
20:35:27.432 [info] UploadPackV2: processing fetch command
20:35:27.432 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
20:35:27.433 [info] UploadPackV2: collected 6 objects, generating pack
20:35:27.433 [info] UploadPackV2: pack generated, 513 bytes
20:35:27.433 [info] UploadPackV2: fetch response 535 bytes
.
20:35:27.509 [info] UploadPackV2: processing ls-refs command
20:35:27.511 [info] UploadPackV2: processing fetch command
20:35:27.511 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:27.511 [info] UploadPackV2: collected 3 objects, generating pack
20:35:27.511 [info] UploadPackV2: pack generated, 216 bytes
20:35:27.511 [info] UploadPackV2: fetch response 312 bytes
20:35:27.577 [info] UploadPackV2: processing ls-refs command
20:35:27.578 [info] UploadPackV2: processing fetch command
20:35:27.578 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:27.579 [info] UploadPackV2: collected 12 objects, generating pack
20:35:27.579 [info] UploadPackV2: pack generated, 768 bytes
20:35:27.579 [info] UploadPackV2: fetch response 1002 bytes
.
20:35:27.645 [info] UploadPackV2: processing ls-refs command
20:35:27.711 [info] UploadPackV2: processing fetch command
20:35:27.711 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
20:35:27.712 [info] UploadPackV2: collected 3 objects, generating pack
20:35:27.712 [info] UploadPackV2: pack generated, 381 bytes
20:35:27.712 [info] UploadPackV2: fetch response 403 bytes
.
20:35:27.793 [info] UploadPackV2: processing ls-refs command
20:35:27.795 [info] UploadPackV2: processing fetch command
20:35:27.795 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
20:35:27.796 [info] UploadPackV2: collected 9 objects, generating pack
20:35:27.796 [info] UploadPackV2: pack generated, 549 bytes
20:35:27.796 [info] UploadPackV2: fetch response 571 bytes
20:35:27.816 [info] UploadPackV2: processing fetch command
20:35:27.817 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
20:35:27.817 [info] UploadPackV2: fetch response 171 bytes
..
20:35:27.869 [info] UploadPackV2: processing ls-refs command
20:35:27.873 [info] UploadPackV2: processing fetch command
20:35:27.873 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
20:35:27.874 [info] UploadPackV2: collected 5 objects, generating pack
20:35:27.875 [info] UploadPackV2: pack generated, 319 bytes
20:35:27.875 [info] UploadPackV2: fetch response 341 bytes
..
20:35:27.945 [info] UploadPackV2: processing ls-refs command
.
20:35:27.997 [info] UploadPackV2: processing ls-refs command
.
20:35:28.053 [info] UploadPackV2: processing ls-refs command
20:35:28.055 [info] UploadPackV2: processing fetch command
20:35:28.055 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
20:35:28.056 [info] UploadPackV2: collected 9 objects, generating pack
20:35:28.056 [info] UploadPackV2: pack generated, 585 bytes
20:35:28.056 [info] UploadPackV2: fetch response 681 bytes
.
20:35:28.137 [info] UploadPackV2: processing ls-refs command
20:35:28.141 [info] UploadPackV2: processing fetch command
20:35:28.141 [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
20:35:28.142 [info] UploadPackV2: collected 6 objects, generating pack
20:35:28.142 [info] UploadPackV2: pack generated, 513 bytes
20:35:28.142 [info] UploadPackV2: fetch response 535 bytes
.
Finished in 206.4 seconds (17.6s async, 188.8s sync)
Result: 971 passed (2 properties, 969 tests), 14 skipped, 51 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"]
LCOV written to cover/lcov.info