ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Cover compiling modules ...
Running ExUnit with seed: 714467, 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
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: the variable "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
............................................................................................................
08:04:19.315 [info] The function passed as a handler with ID #Reference<0.841771606.2747793409.215344> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: 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: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
...........................................................................................................................................................................
08:04:20.708 [info] The function passed as a handler with ID #Reference<0.841771606.2747793410.211615> 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
...........................................................
08:04:21.108 [info] The function passed as a handler with ID "test-fail-#Reference<0.841771606.2747793410.212198>" 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
.
08:04:21.109 [info] The function passed as a handler with ID "test-#Reference<0.841771606.2747793410.212277>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: 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)
.........................................................................................................................................................................
08:04:23.207 [info] UploadPackV2: processing fetch command
08:04:23.208 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.217 [info] UploadPackV2: processing fetch command
08:04:23.217 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.217 [info] UploadPackV2: collected 3 objects, streaming pack
08:04:23.218 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
08:04:23.218 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
08:04:23.224 [info] UploadPackV2: collected 163 objects, generating pack
.
08:04:23.231 [info] UploadPackV2: processing fetch command
.
08:04:23.231 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:23.231 [info] UploadPackV2: collected 3 objects, generating pack
08:04:23.231 [info] UploadPackV2: pack generated, 194 bytes
08:04:23.231 [info] UploadPackV2: fetch response 216 bytes
08:04:23.232 [info] UploadPackV2: processing fetch command
08:04:23.232 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.232 [info] UploadPackV2: collected 3 objects, generating pack
08:04:23.232 [info] UploadPackV2: pack generated, 223 bytes
08:04:23.232 [info] UploadPackV2: fetch response 245 bytes
08:04:23.232 [info] UploadPackV2: pack generated, 15091 bytes
08:04:23.232 [info] UploadPackV2: fetch response 15113 bytes
08:04:23.320 [info] UploadPackV2: processing fetch command
08:04:23.320 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.343 [info] UploadPackV2: collected 600 objects, generating pack
08:04:23.357 [info] UploadPackV2: pack generated, 39862 bytes
08:04:23.357 [info] UploadPackV2: fetch response 39884 bytes
.
08:04:23.418 [info] UploadPackV2: processing fetch command
08:04:23.422 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.427 [info] UploadPackV2: collected 9 objects, streaming pack
.
08:04:23.431 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
08:04:23.431 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
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
.
08:04:23.434 [info] UploadPackV2: processing fetch command
.
08:04:23.434 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.438 [info] UploadPackV2: collected 6 objects, generating pack
08:04:23.439 [info] UploadPackV2: pack generated, 414 bytes
08:04:23.439 [info] UploadPackV2: fetch response 436 bytes
08:04:23.440 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
08:04:23.441 [info] UploadPackV2: processing fetch command
08:04:23.441 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.441 [info] UploadPackV2: collected 3 objects, generating pack
08:04:23.441 [info] UploadPackV2: pack generated, 195 bytes
08:04:23.441 [info] UploadPackV2: fetch response 217 bytes
.
08:04:23.731 [info] UploadPackV2: processing ls-refs command
08:04:23.731 [info] UploadPackV2: processing fetch command
08:04:23.732 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.733 [info] UploadPackV2: collected 3 objects, generating pack
08:04:23.733 [info] UploadPackV2: pack generated, 210 bytes
08:04:23.733 [info] UploadPackV2: fetch response 232 bytes
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
..........
08:04:23.930 [info] UploadPackV2: processing fetch command
08:04:23.930 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:23.930 [info] UploadPackV2: collected 3 objects, streaming pack
.
08:04:23.934 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
08:04:23.934 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
08:04:24.080 [info] UploadPackV2: processing fetch command
08:04:24.080 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:24.088 [info] UploadPackV2: collected 32 objects, streaming pack
.....
08:04:24.217 [info] UploadPackV2: streamed pack 2459749 bytes, 32 objects
08:04:24.218 [info] UploadPackV2: fetch streamed 2459749 pack bytes, 32 objects
warning: module attribute @git_lfs_available was set but never used
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: the variable "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 "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
.............................
08:04:24.592 [info] UploadPackV2: processing fetch command
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
08:04:24.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:24.594 [info] UploadPackV2: collected 15 objects, generating pack
08:04:24.595 [info] UploadPackV2: pack generated, 984 bytes
08:04:24.596 [info] UploadPackV2: fetch response 1006 bytes
08:04:24.604 [info] UploadPackV2: processing fetch command
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
08:04:24.604 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:24.608 [info] UploadPackV2: collected 90 objects, generating pack
.
08:04:24.611 [info] UploadPackV2: pack generated, 5946 bytes
08:04:24.611 [info] UploadPackV2: fetch response 5968 bytes
08:04:24.633 [info] UploadPackV2: processing ls-refs command
.
08:04:24.636 [info] UploadPackV2: processing fetch command
08:04:24.636 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:24.636 [info] UploadPackV2: collected 15 objects, generating pack
08:04:24.637 [info] UploadPackV2: pack generated, 984 bytes
08:04:24.637 [info] UploadPackV2: fetch response 1006 bytes
08:04:24.638 [info] UploadPackV2: processing fetch command
.
08:04:24.638 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:24.639 [info] UploadPackV2: collected 15 objects, streaming pack
08:04:24.640 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
08:04:24.640 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.....
08:04:24.763 [info] UploadPackV2: processing fetch command
08:04:24.763 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:24.770 [info] UploadPackV2: collected 32 objects, generating pack
..................
08:04:24.874 [info] UploadPackV2: pack generated, 2459812 bytes
08:04:24.877 [info] UploadPackV2: fetch response 2460019 bytes
08:04:24.877 [info] UploadPackV2: processing fetch command
08:04:24.878 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:24.885 [info] UploadPackV2: collected 32 objects, streaming pack
....
08:04:25.003 [info] UploadPackV2: streamed pack 2459812 bytes, 32 objects
08:04:25.003 [info] UploadPackV2: fetch streamed 2459812 pack bytes, 32 objects
..
08:04:25.054 [info] UploadPackV2: processing fetch command
08:04:25.055 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
08:04:25.081 [info] UploadPackV2: collected 700 objects, generating pack
08:04:25.093 [info] UploadPackV2: pack generated, 48139 bytes
08:04:25.093 [info] UploadPackV2: fetch response 48161 bytes
.
08:04:25.141 [info] UploadPackV2: processing fetch command
08:04:25.141 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.141 [info] UploadPackV2: collected 0 objects, generating pack
08:04:25.142 [info] UploadPackV2: pack generated, 32 bytes
.
08:04:25.142 [info] UploadPackV2: fetch response 54 bytes
08:04:25.143 [info] UploadPackV2: processing ls-refs command
.
08:04:25.143 [info] UploadPackV2: processing ls-refs command
08:04:25.146 [info] UploadPackV2: processing fetch command
08:04:25.147 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
08:04:25.147 [info] UploadPackV2: fetch response 73 bytes
.
08:04:25.147 [info] UploadPackV2: processing fetch command
.
08:04:25.147 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
08:04:25.148 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
08:04:25.148 [info] UploadPackV2: processing ls-refs command
08:04:25.150 [info] UploadPackV2: processing fetch command
08:04:25.150 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.151 [info] UploadPackV2: collected 3 objects, generating pack
.
08:04:25.151 [info] UploadPackV2: pack generated, 191 bytes
08:04:25.152 [info] UploadPackV2: fetch response 213 bytes
08:04:25.153 [info] UploadPackV2: processing fetch command
.
08:04:25.153 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.154 [info] UploadPackV2: collected 3 objects, generating pack
08:04:25.154 [info] UploadPackV2: pack generated, 191 bytes
08:04:25.154 [info] UploadPackV2: fetch response 213 bytes
.
08:04:25.155 [info] UploadPackV2: processing ls-refs command
.
08:04:25.156 [info] UploadPackV2: processing fetch command
.
08:04:25.156 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.156 [info] UploadPackV2: collected 3 objects, generating pack
08:04:25.157 [info] UploadPackV2: pack generated, 206 bytes
08:04:25.157 [info] UploadPackV2: fetch response 228 bytes
08:04:25.157 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
08:04:25.158 [info] UploadPackV2: processing fetch command
08:04:25.158 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.158 [info] UploadPackV2: collected 3 objects, generating pack
08:04:25.159 [info] UploadPackV2: pack generated, 191 bytes
08:04:25.159 [info] UploadPackV2: fetch response 213 bytes
08:04:25.160 [info] UploadPackV2: processing fetch command
08:04:25.160 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.160 [info] UploadPackV2: collected 3 objects, generating pack
.
08:04:25.161 [info] UploadPackV2: pack generated, 195 bytes
.
08:04:25.161 [info] UploadPackV2: fetch response 217 bytes
..............................................................................................
08:04:25.684 [info] UploadPackV2: processing fetch command
08:04:25.684 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.690 [info] UploadPackV2: reused pack 12125 bytes, 160 objects
08:04:25.690 [info] UploadPackV2: fetch response 12147 bytes
....
08:04:25.836 [warning] post_receive hook failed: "webhook failed"
........
08:04:25.860 [info] UploadPackV2: processing fetch command
.
08:04:25.860 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.861 [info] UploadPackV2: collected 11 objects, generating pack
.
08:04:25.862 [info] UploadPackV2: pack generated, 714 bytes
.
08:04:25.867 [info] UploadPackV2: fetch response 736 bytes
.....
08:04:25.892 [info] UploadPackV2: processing fetch command
.
08:04:25.892 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.896 [info] UploadPackV2: collected 20 objects, generating pack
08:04:25.897 [info] UploadPackV2: pack generated, 1172 bytes
08:04:25.897 [info] UploadPackV2: fetch response 1194 bytes
08:04:25.923 [info] UploadPackV2: processing fetch command
08:04:25.924 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.931 [info] UploadPackV2: collected 51 objects, generating pack
08:04:25.932 [info] UploadPackV2: pack generated, 3059 bytes
08:04:25.933 [info] UploadPackV2: fetch response 3081 bytes
08:04:25.967 [info] UploadPackV2: processing fetch command
08:04:25.967 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.968 [info] UploadPackV2: collected 11 objects, generating pack
08:04:25.968 [info] UploadPackV2: pack generated, 717 bytes
08:04:25.969 [info] UploadPackV2: fetch response 739 bytes
08:04:25.973 [info] UploadPackV2: processing fetch command
08:04:25.973 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:25.974 [info] UploadPackV2: collected 19 objects, generating pack
08:04:25.974 [info] UploadPackV2: pack generated, 1145 bytes
08:04:25.975 [info] UploadPackV2: fetch response 1167 bytes
08:04:25.980 [info] UploadPackV2: processing fetch command
08:04:25.980 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.981 [info] UploadPackV2: collected 27 objects, generating pack
.
08:04:25.983 [info] UploadPackV2: pack generated, 1676 bytes
.
08:04:25.983 [info] UploadPackV2: fetch response 1698 bytes
.
08:04:25.989 [info] UploadPackV2: processing fetch command
.
08:04:25.989 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.990 [info] UploadPackV2: collected 27 objects, generating pack
.
08:04:25.991 [info] UploadPackV2: pack generated, 1676 bytes
.
08:04:25.991 [info] UploadPackV2: fetch response 1698 bytes
.
08:04:25.996 [info] UploadPackV2: processing fetch command
.
08:04:25.996 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:25.997 [info] UploadPackV2: collected 24 objects, generating pack
.
08:04:25.998 [info] UploadPackV2: pack generated, 1443 bytes
.
08:04:25.998 [info] UploadPackV2: fetch response 1465 bytes
.
08:04:26.001 [info] UploadPackV2: processing fetch command
.
08:04:26.001 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.002 [info] UploadPackV2: collected 7 objects, generating pack
.
08:04:26.003 [info] UploadPackV2: pack generated, 475 bytes
.
08:04:26.003 [info] UploadPackV2: fetch response 497 bytes
.
08:04:26.005 [info] UploadPackV2: processing fetch command
.
08:04:26.005 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.007 [info] UploadPackV2: collected 15 objects, generating pack
.
08:04:26.007 [info] UploadPackV2: pack generated, 958 bytes
.
08:04:26.007 [info] UploadPackV2: fetch response 980 bytes
.
08:04:26.012 [info] UploadPackV2: processing fetch command
.
08:04:26.012 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.014 [info] UploadPackV2: collected 39 objects, generating pack
.
08:04:26.015 [info] UploadPackV2: pack generated, 2340 bytes
.
08:04:26.016 [info] UploadPackV2: fetch response 2362 bytes
.
08:04:26.025 [info] UploadPackV2: processing fetch command
.
08:04:26.025 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.025 [info] UploadPackV2: collected 11 objects, generating pack
.
08:04:26.026 [info] UploadPackV2: pack generated, 714 bytes
.
08:04:26.026 [info] UploadPackV2: fetch response 736 bytes
.
08:04:26.032 [info] UploadPackV2: processing fetch command
.
08:04:26.032 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.039 [info] UploadPackV2: collected 19 objects, generating pack
.
08:04:26.040 [info] UploadPackV2: pack generated, 1196 bytes
.
08:04:26.040 [info] UploadPackV2: fetch response 1218 bytes
.
08:04:26.051 [info] UploadPackV2: processing fetch command
.
08:04:26.051 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.061 [info] UploadPackV2: collected 35 objects, generating pack
.
08:04:26.062 [info] UploadPackV2: pack generated, 2107 bytes
.
08:04:26.062 [info] UploadPackV2: fetch response 2129 bytes
.
08:04:26.078 [info] UploadPackV2: processing fetch command
.
08:04:26.078 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.089 [info] UploadPackV2: collected 20 objects, generating pack
.
08:04:26.089 [info] UploadPackV2: pack generated, 1203 bytes
.
08:04:26.090 [info] UploadPackV2: fetch response 1225 bytes
.
08:04:26.096 [info] UploadPackV2: processing fetch command
.
08:04:26.096 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.097 [info] UploadPackV2: collected 11 objects, generating pack
.
08:04:26.097 [info] UploadPackV2: pack generated, 714 bytes
.
08:04:26.097 [info] UploadPackV2: fetch response 736 bytes
.
08:04:26.103 [info] UploadPackV2: processing fetch command
.
08:04:26.103 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.106 [info] UploadPackV2: collected 50 objects, generating pack
.
08:04:26.108 [info] UploadPackV2: pack generated, 3055 bytes
.
08:04:26.108 [info] UploadPackV2: fetch response 3077 bytes
.
08:04:26.115 [info] UploadPackV2: processing fetch command
.
08:04:26.115 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.124 [info] UploadPackV2: collected 16 objects, generating pack
.
08:04:26.124 [info] UploadPackV2: pack generated, 962 bytes
.
08:04:26.125 [info] UploadPackV2: fetch response 984 bytes
.
08:04:26.141 [info] UploadPackV2: processing fetch command
.
08:04:26.141 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.142 [info] UploadPackV2: collected 27 objects, generating pack
.
08:04:26.143 [info] UploadPackV2: pack generated, 1676 bytes
.
08:04:26.143 [info] UploadPackV2: fetch response 1698 bytes
.
08:04:26.148 [info] UploadPackV2: processing fetch command
.
08:04:26.439 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.445 [info] UploadPackV2: collected 23 objects, generating pack
.
08:04:26.446 [info] UploadPackV2: pack generated, 1383 bytes
.
08:04:26.446 [info] UploadPackV2: fetch response 1405 bytes
08:04:26.457 [info] UploadPackV2: processing fetch command
08:04:26.457 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.459 [info] UploadPackV2: collected 34 objects, generating pack
08:04:26.460 [info] UploadPackV2: pack generated, 2099 bytes
08:04:26.460 [info] UploadPackV2: fetch response 2121 bytes
08:04:26.467 [info] UploadPackV2: processing fetch command
08:04:26.467 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.468 [info] UploadPackV2: collected 28 objects, generating pack
08:04:26.469 [info] UploadPackV2: pack generated, 1652 bytes
...................
08:04:26.469 [info] UploadPackV2: fetch response 1674 bytes
08:04:27.978 [notice] Handler :default switched from :sync to :drop mode
08:04:26.473 [info] UploadPackV2: processing fetch command
.
08:04:26.473 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.475 [info] UploadPackV2: collected 47 objects, generating pack
.
08:04:26.476 [info] UploadPackV2: pack generated, 2848 bytes
.
08:04:26.476 [info] UploadPackV2: fetch response 2870 bytes
.
08:04:26.483 [info] UploadPackV2: processing fetch command
.
08:04:26.483 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.484 [info] UploadPackV2: collected 39 objects, generating pack
.
08:04:26.485 [info] UploadPackV2: pack generated, 2340 bytes
.
08:04:26.485 [info] UploadPackV2: fetch response 2362 bytes
.
08:04:26.491 [info] UploadPackV2: processing fetch command
.
08:04:26.491 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.493 [info] UploadPackV2: collected 19 objects, generating pack
.
08:04:26.493 [info] UploadPackV2: pack generated, 1196 bytes
.
08:04:26.493 [info] UploadPackV2: fetch response 1218 bytes
.
08:04:26.495 [info] UploadPackV2: processing fetch command
.
08:04:26.495 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.496 [info] UploadPackV2: collected 11 objects, generating pack
.
08:04:26.496 [info] UploadPackV2: pack generated, 717 bytes
.
08:04:26.496 [info] UploadPackV2: fetch response 739 bytes
.
08:04:26.498 [info] UploadPackV2: processing fetch command
.
08:04:26.498 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.499 [info] UploadPackV2: collected 28 objects, generating pack
.
08:04:26.500 [info] UploadPackV2: pack generated, 1652 bytes
.
08:04:26.500 [info] UploadPackV2: fetch response 1674 bytes
.
08:04:26.504 [info] UploadPackV2: processing fetch command
.
08:04:26.504 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.506 [info] UploadPackV2: collected 38 objects, generating pack
.
08:04:26.507 [info] UploadPackV2: pack generated, 2340 bytes
.
08:04:26.507 [info] UploadPackV2: fetch response 2362 bytes
.
08:04:26.513 [info] UploadPackV2: processing fetch command
.
08:04:26.513 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.514 [info] UploadPackV2: collected 43 objects, generating pack
.
08:04:26.515 [info] UploadPackV2: pack generated, 2581 bytes
08:04:26.515 [info] UploadPackV2: fetch response 2603 bytes
08:04:26.520 [info] UploadPackV2: processing fetch command
08:04:26.520 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.521 [info] UploadPackV2: collected 39 objects, generating pack
08:04:26.522 [info] UploadPackV2: pack generated, 2364 bytes
08:04:26.522 [info] UploadPackV2: fetch response 2386 bytes
08:04:26.527 [info] UploadPackV2: processing fetch command
08:04:26.527 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.528 [info] UploadPackV2: collected 31 objects, generating pack
08:04:26.528 [info] UploadPackV2: pack generated, 1883 bytes
08:04:26.528 [info] UploadPackV2: fetch response 1905 bytes
08:04:26.532 [info] UploadPackV2: processing fetch command
08:04:26.532 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.532 [info] UploadPackV2: collected 11 objects, generating pack
08:04:26.533 [info] UploadPackV2: pack generated, 717 bytes
.
08:04:26.533 [info] UploadPackV2: fetch response 739 bytes
.
08:04:26.535 [info] UploadPackV2: processing fetch command
.
08:04:26.535 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.537 [info] UploadPackV2: collected 46 objects, generating pack
.
08:04:26.537 [info] UploadPackV2: pack generated, 2819 bytes
.
08:04:26.537 [info] UploadPackV2: fetch response 2841 bytes
.
08:04:26.544 [info] UploadPackV2: processing fetch command
.
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
08:04:26.544 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.546 [info] UploadPackV2: collected 55 objects, generating pack
08:04:26.547 [info] UploadPackV2: pack generated, 3299 bytes
08:04:26.547 [info] UploadPackV2: fetch response 3321 bytes
08:04:26.553 [info] UploadPackV2: processing fetch command
08:04:26.553 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.553 [info] UploadPackV2: collected 19 objects, generating pack
08:04:26.554 [info] UploadPackV2: pack generated, 1194 bytes
08:04:26.554 [info] UploadPackV2: fetch response 1216 bytes
.
08:04:26.556 [info] UploadPackV2: processing fetch command
08:04:26.556 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.556 [info] UploadPackV2: collected 7 objects, generating pack
08:04:26.556 [info] UploadPackV2: pack generated, 475 bytes
08:04:26.556 [info] UploadPackV2: fetch response 497 bytes
08:04:26.559 [info] UploadPackV2: processing fetch command
08:04:26.559 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.560 [info] UploadPackV2: collected 23 objects, generating pack
08:04:26.560 [info] UploadPackV2: pack generated, 1385 bytes
08:04:26.560 [info] UploadPackV2: fetch response 1407 bytes
.
08:04:26.563 [info] UploadPackV2: processing fetch command
08:04:26.563 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.564 [info] UploadPackV2: collected 27 objects, generating pack
08:04:26.564 [info] UploadPackV2: pack generated, 1676 bytes
08:04:26.564 [info] UploadPackV2: fetch response 1698 bytes
08:04:26.568 [info] UploadPackV2: processing fetch command
08:04:26.568 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.569 [info] UploadPackV2: collected 24 objects, generating pack
08:04:26.569 [info] UploadPackV2: pack generated, 1443 bytes
08:04:26.569 [info] UploadPackV2: fetch response 1465 bytes
08:04:26.573 [info] UploadPackV2: processing fetch command
08:04:26.573 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.574 [info] UploadPackV2: collected 16 objects, generating pack
08:04:26.574 [info] UploadPackV2: pack generated, 962 bytes
.
08:04:26.574 [info] UploadPackV2: fetch response 984 bytes
08:04:26.576 [info] UploadPackV2: processing fetch command
08:04:26.576 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.577 [info] UploadPackV2: collected 24 objects, generating pack
08:04:26.577 [info] UploadPackV2: pack generated, 1443 bytes
08:04:26.577 [info] UploadPackV2: fetch response 1465 bytes
08:04:26.580 [info] UploadPackV2: processing fetch command
08:04:26.580 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.581 [info] UploadPackV2: collected 24 objects, generating pack
08:04:26.581 [info] UploadPackV2: pack generated, 1443 bytes
08:04:26.581 [info] UploadPackV2: fetch response 1465 bytes
08:04:26.584 [info] UploadPackV2: processing fetch command
08:04:26.584 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.585 [info] UploadPackV2: collected 11 objects, generating pack
08:04:26.585 [info] UploadPackV2: pack generated, 714 bytes
08:04:26.585 [info] UploadPackV2: fetch response 736 bytes
08:04:26.586 [info] UploadPackV2: processing fetch command
08:04:26.586 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.587 [info] UploadPackV2: collected 7 objects, generating pack
08:04:26.587 [info] UploadPackV2: pack generated, 475 bytes
08:04:26.587 [info] UploadPackV2: fetch response 497 bytes
08:04:26.588 [info] UploadPackV2: processing fetch command
08:04:26.588 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.588 [info] UploadPackV2: collected 11 objects, generating pack
08:04:26.589 [info] UploadPackV2: pack generated, 714 bytes
.
08:04:26.589 [info] UploadPackV2: fetch response 736 bytes
08:04:26.591 [info] UploadPackV2: processing fetch command
08:04:26.591 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.592 [info] UploadPackV2: collected 36 objects, generating pack
08:04:26.593 [info] UploadPackV2: pack generated, 2103 bytes
08:04:26.593 [info] UploadPackV2: fetch response 2125 bytes
08:04:26.600 [info] UploadPackV2: processing fetch command
08:04:26.600 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.601 [info] UploadPackV2: collected 30 objects, generating pack
08:04:26.602 [info] UploadPackV2: pack generated, 1858 bytes
08:04:26.602 [info] UploadPackV2: fetch response 1880 bytes
08:04:26.607 [info] UploadPackV2: processing fetch command
08:04:26.607 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.607 [info] UploadPackV2: collected 23 objects, generating pack
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
08:04:26.608 [info] UploadPackV2: pack generated, 1404 bytes
08:04:26.608 [info] UploadPackV2: fetch response 1426 bytes
08:04:26.612 [info] UploadPackV2: processing fetch command
.
08:04:26.612 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.613 [info] UploadPackV2: collected 31 objects, generating pack
08:04:26.614 [info] UploadPackV2: pack generated, 1887 bytes
08:04:26.614 [info] UploadPackV2: fetch response 1909 bytes
08:04:26.618 [info] UploadPackV2: processing fetch command
08:04:26.618 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.619 [info] UploadPackV2: collected 19 objects, generating pack
08:04:26.619 [info] UploadPackV2: pack generated, 1194 bytes
08:04:26.619 [info] UploadPackV2: fetch response 1216 bytes
08:04:26.623 [info] UploadPackV2: processing fetch command
08:04:26.623 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.624 [info] UploadPackV2: collected 24 objects, generating pack
08:04:26.625 [info] UploadPackV2: pack generated, 1443 bytes
08:04:26.625 [info] UploadPackV2: fetch response 1465 bytes
08:04:26.629 [info] UploadPackV2: processing fetch command
08:04:26.629 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.630 [info] UploadPackV2: collected 23 objects, generating pack
08:04:26.631 [info] UploadPackV2: pack generated, 1435 bytes
08:04:26.631 [info] UploadPackV2: fetch response 1457 bytes
08:04:26.635 [info] UploadPackV2: processing fetch command
08:04:26.635 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.636 [info] UploadPackV2: collected 35 objects, generating pack
08:04:26.637 [info] UploadPackV2: pack generated, 2104 bytes
08:04:26.637 [info] UploadPackV2: fetch response 2126 bytes
08:04:26.642 [info] UploadPackV2: processing fetch command
08:04:26.642 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.643 [info] UploadPackV2: collected 47 objects, generating pack
08:04:26.644 [info] UploadPackV2: pack generated, 2848 bytes
08:04:26.644 [info] UploadPackV2: fetch response 2870 bytes
08:04:26.650 [info] UploadPackV2: processing fetch command
08:04:26.650 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.651 [info] UploadPackV2: collected 39 objects, generating pack
08:04:26.652 [info] UploadPackV2: pack generated, 2367 bytes
08:04:26.652 [info] UploadPackV2: fetch response 2389 bytes
08:04:26.656 [info] UploadPackV2: processing fetch command
.
08:04:26.656 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.656 [info] UploadPackV2: collected 4 objects, generating pack
08:04:26.656 [info] UploadPackV2: pack generated, 241 bytes
08:04:26.656 [info] UploadPackV2: fetch response 263 bytes
08:04:26.658 [info] UploadPackV2: processing fetch command
08:04:26.659 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.659 [info] UploadPackV2: collected 36 objects, generating pack
08:04:26.660 [info] UploadPackV2: pack generated, 2132 bytes
08:04:26.660 [info] UploadPackV2: fetch response 2154 bytes
08:04:26.664 [info] UploadPackV2: processing fetch command
08:04:26.664 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.665 [info] UploadPackV2: collected 34 objects, generating pack
08:04:26.666 [info] UploadPackV2: pack generated, 2100 bytes
08:04:26.666 [info] UploadPackV2: fetch response 2122 bytes
08:04:26.672 [info] UploadPackV2: processing fetch command
08:04:26.672 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.674 [info] UploadPackV2: collected 67 objects, generating pack
08:04:26.676 [info] UploadPackV2: pack generated, 4022 bytes
08:04:26.676 [info] UploadPackV2: fetch response 4044 bytes
08:04:26.683 [info] UploadPackV2: processing fetch command
08:04:26.683 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.683 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.683 [info] UploadPackV2: pack generated, 482 bytes
08:04:26.683 [info] UploadPackV2: fetch response 504 bytes
08:04:26.686 [info] UploadPackV2: processing fetch command
08:04:26.686 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.687 [info] UploadPackV2: collected 24 objects, generating pack
08:04:26.687 [info] UploadPackV2: pack generated, 1443 bytes
08:04:26.687 [info] UploadPackV2: fetch response 1465 bytes
08:04:26.690 [info] UploadPackV2: processing fetch command
08:04:26.691 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.691 [info] UploadPackV2: collected 11 objects, generating pack
08:04:26.691 [info] UploadPackV2: pack generated, 717 bytes
08:04:26.691 [info] UploadPackV2: fetch response 739 bytes
08:04:26.693 [info] UploadPackV2: processing fetch command
08:04:26.693 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.694 [info] UploadPackV2: collected 12 objects, generating pack
08:04:26.694 [info] UploadPackV2: pack generated, 723 bytes
08:04:26.694 [info] UploadPackV2: fetch response 745 bytes
08:04:26.698 [info] UploadPackV2: processing fetch command
08:04:26.698 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.700 [info] UploadPackV2: collected 38 objects, generating pack
08:04:26.700 [info] UploadPackV2: pack generated, 2340 bytes
08:04:26.700 [info] UploadPackV2: fetch response 2362 bytes
08:04:26.704 [info] UploadPackV2: processing fetch command
08:04:26.704 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.705 [info] UploadPackV2: collected 11 objects, generating pack
.
08:04:26.705 [info] UploadPackV2: pack generated, 714 bytes
08:04:26.705 [info] UploadPackV2: fetch response 736 bytes
08:04:26.707 [info] UploadPackV2: processing fetch command
08:04:26.707 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.708 [info] UploadPackV2: collected 16 objects, generating pack
08:04:26.708 [info] UploadPackV2: pack generated, 962 bytes
08:04:26.708 [info] UploadPackV2: fetch response 984 bytes
08:04:26.710 [info] UploadPackV2: processing fetch command
08:04:26.710 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.710 [info] UploadPackV2: collected 15 objects, generating pack
08:04:26.711 [info] UploadPackV2: pack generated, 956 bytes
08:04:26.711 [info] UploadPackV2: fetch response 978 bytes
08:04:26.713 [info] UploadPackV2: processing fetch command
08:04:26.713 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.714 [info] UploadPackV2: collected 11 objects, generating pack
08:04:26.714 [info] UploadPackV2: pack generated, 714 bytes
08:04:26.714 [info] UploadPackV2: fetch response 736 bytes
08:04:26.716 [info] UploadPackV2: processing fetch command
08:04:26.717 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.718 [info] UploadPackV2: collected 42 objects, generating pack
08:04:26.718 [info] UploadPackV2: pack generated, 2581 bytes
08:04:26.718 [info] UploadPackV2: fetch response 2603 bytes
08:04:26.724 [info] UploadPackV2: processing fetch command
08:04:26.724 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.725 [info] UploadPackV2: collected 27 objects, generating pack
08:04:26.725 [info] UploadPackV2: pack generated, 1678 bytes
08:04:26.725 [info] UploadPackV2: fetch response 1700 bytes
08:04:26.729 [info] UploadPackV2: processing fetch command
08:04:26.729 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.729 [info] UploadPackV2: collected 7 objects, generating pack
08:04:26.729 [info] UploadPackV2: pack generated, 475 bytes
08:04:26.730 [info] UploadPackV2: fetch response 497 bytes
08:04:26.732 [info] UploadPackV2: processing fetch command
08:04:26.732 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.733 [info] UploadPackV2: collected 31 objects, generating pack
08:04:26.733 [info] UploadPackV2: pack generated, 1887 bytes
08:04:26.733 [info] UploadPackV2: fetch response 1909 bytes
08:04:26.737 [info] UploadPackV2: processing fetch command
08:04:26.737 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.737 [info] UploadPackV2: collected 19 objects, generating pack
08:04:26.738 [info] UploadPackV2: pack generated, 1144 bytes
08:04:26.738 [info] UploadPackV2: fetch response 1166 bytes
08:04:26.742 [info] UploadPackV2: processing fetch command
08:04:26.742 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.743 [info] UploadPackV2: collected 34 objects, generating pack
08:04:26.744 [info] UploadPackV2: pack generated, 2093 bytes
08:04:26.744 [info] UploadPackV2: fetch response 2115 bytes
08:04:26.748 [info] UploadPackV2: processing fetch command
08:04:26.748 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.749 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.749 [info] UploadPackV2: pack generated, 482 bytes
08:04:26.749 [info] UploadPackV2: fetch response 504 bytes
08:04:26.752 [info] UploadPackV2: processing fetch command
08:04:26.752 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
08:04:26.754 [info] UploadPackV2: collected 47 objects, generating pack
08:04:26.755 [info] UploadPackV2: pack generated, 2828 bytes
08:04:26.755 [info] UploadPackV2: fetch response 2850 bytes
08:04:26.761 [info] UploadPackV2: processing fetch command
08:04:26.761 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.761 [info] UploadPackV2: collected 15 objects, generating pack
08:04:26.761 [info] UploadPackV2: pack generated, 958 bytes
08:04:26.761 [info] UploadPackV2: fetch response 980 bytes
08:04:26.765 [info] UploadPackV2: processing fetch command
08:04:26.765 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.766 [info] UploadPackV2: collected 27 objects, generating pack
08:04:26.766 [info] UploadPackV2: pack generated, 1676 bytes
08:04:26.766 [info] UploadPackV2: fetch response 1698 bytes
08:04:26.769 [info] UploadPackV2: processing fetch command
08:04:26.770 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.770 [info] UploadPackV2: collected 12 objects, generating pack
08:04:26.770 [info] UploadPackV2: pack generated, 723 bytes
08:04:26.770 [info] UploadPackV2: fetch response 745 bytes
08:04:26.772 [info] UploadPackV2: processing fetch command
08:04:26.772 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:26.773 [info] UploadPackV2: collected 19 objects, generating pack
08:04:26.773 [info] UploadPackV2: pack generated, 1194 bytes
08:04:26.773 [info] UploadPackV2: fetch response 1216 bytes
08:04:26.777 [info] UploadPackV2: processing fetch command
08:04:26.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.777 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.777 [info] UploadPackV2: pack generated, 636 bytes
08:04:28.589 [notice] Handler :default switched from :drop to :sync mode
08:04:26.777 [info] UploadPackV2: fetch response 658 bytes
08:04:26.780 [info] UploadPackV2: processing fetch command
08:04:26.780 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.780 [info] UploadPackV2: collected 15 objects, generating pack
08:04:26.781 [info] UploadPackV2: pack generated, 1037 bytes
08:04:26.781 [info] UploadPackV2: fetch response 1059 bytes
08:04:26.786 [info] UploadPackV2: processing fetch command
08:04:26.786 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.787 [info] UploadPackV2: collected 38 objects, generating pack
08:04:26.788 [info] UploadPackV2: pack generated, 2720 bytes
08:04:26.788 [info] UploadPackV2: fetch response 2742 bytes
08:04:26.794 [info] UploadPackV2: processing fetch command
08:04:26.795 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.795 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.795 [info] UploadPackV2: pack generated, 639 bytes
08:04:26.795 [info] UploadPackV2: fetch response 661 bytes
08:04:26.799 [info] UploadPackV2: processing fetch command
08:04:26.799 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.799 [info] UploadPackV2: collected 14 objects, generating pack
08:04:26.800 [info] UploadPackV2: pack generated, 1022 bytes
08:04:26.800 [info] UploadPackV2: fetch response 1044 bytes
08:04:26.804 [info] UploadPackV2: processing fetch command
08:04:26.804 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.805 [info] UploadPackV2: collected 20 objects, generating pack
08:04:26.805 [info] UploadPackV2: pack generated, 1490 bytes
08:04:26.805 [info] UploadPackV2: fetch response 1512 bytes
08:04:26.810 [info] UploadPackV2: processing fetch command
08:04:26.811 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.811 [info] UploadPackV2: collected 20 objects, generating pack
08:04:26.812 [info] UploadPackV2: pack generated, 1490 bytes
08:04:26.812 [info] UploadPackV2: fetch response 1512 bytes
08:04:26.816 [info] UploadPackV2: processing fetch command
08:04:26.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
08:04:26.817 [info] UploadPackV2: collected 18 objects, generating pack
08:04:26.817 [info] UploadPackV2: pack generated, 1281 bytes
08:04:26.817 [info] UploadPackV2: fetch response 1303 bytes
08:04:26.821 [info] UploadPackV2: processing fetch command
08:04:26.821 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.821 [info] UploadPackV2: collected 5 objects, generating pack
08:04:26.822 [info] UploadPackV2: pack generated, 424 bytes
08:04:26.822 [info] UploadPackV2: fetch response 446 bytes
08:04:26.824 [info] UploadPackV2: processing fetch command
08:04:26.824 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.824 [info] UploadPackV2: collected 11 objects, generating pack
08:04:26.825 [info] UploadPackV2: pack generated, 853 bytes
08:04:26.825 [info] UploadPackV2: fetch response 875 bytes
08:04:26.828 [info] UploadPackV2: processing fetch command
08:04:26.829 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.830 [info] UploadPackV2: collected 29 objects, generating pack
08:04:26.830 [info] UploadPackV2: pack generated, 2082 bytes
08:04:26.830 [info] UploadPackV2: fetch response 2104 bytes
08:04:26.835 [info] UploadPackV2: processing fetch command
08:04:26.835 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.836 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.837 [info] UploadPackV2: pack generated, 636 bytes
08:04:26.837 [info] UploadPackV2: fetch response 658 bytes
08:04:26.839 [info] UploadPackV2: processing fetch command
08:04:26.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.840 [info] UploadPackV2: collected 14 objects, generating pack
08:04:26.840 [info] UploadPackV2: pack generated, 1064 bytes
08:04:26.840 [info] UploadPackV2: fetch response 1086 bytes
08:04:26.844 [info] UploadPackV2: processing fetch command
08:04:26.844 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.845 [info] UploadPackV2: collected 26 objects, generating pack
08:04:26.846 [info] UploadPackV2: pack generated, 1876 bytes
08:04:26.846 [info] UploadPackV2: fetch response 1898 bytes
08:04:26.851 [info] UploadPackV2: processing fetch command
08:04:26.851 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.851 [info] UploadPackV2: collected 15 objects, generating pack
08:04:26.852 [info] UploadPackV2: pack generated, 1068 bytes
08:04:26.852 [info] UploadPackV2: fetch response 1090 bytes
08:04:26.854 [info] UploadPackV2: processing fetch command
08:04:26.854 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.855 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.855 [info] UploadPackV2: pack generated, 636 bytes
08:04:26.855 [info] UploadPackV2: fetch response 658 bytes
08:04:26.859 [info] UploadPackV2: processing fetch command
08:04:26.859 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.860 [info] UploadPackV2: collected 37 objects, generating pack
08:04:26.860 [info] UploadPackV2: pack generated, 2719 bytes
08:04:26.860 [info] UploadPackV2: fetch response 2741 bytes
08:04:26.867 [info] UploadPackV2: processing fetch command
08:04:26.867 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.868 [info] UploadPackV2: collected 12 objects, generating pack
08:04:26.868 [info] UploadPackV2: pack generated, 854 bytes
08:04:26.868 [info] UploadPackV2: fetch response 876 bytes
08:04:26.871 [info] UploadPackV2: processing fetch command
08:04:26.872 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.872 [info] UploadPackV2: collected 20 objects, generating pack
08:04:26.872 [info] UploadPackV2: pack generated, 1490 bytes
08:04:26.873 [info] UploadPackV2: fetch response 1512 bytes
08:04:26.876 [info] UploadPackV2: processing fetch command
08:04:26.877 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.877 [info] UploadPackV2: collected 17 objects, generating pack
08:04:26.877 [info] UploadPackV2: pack generated, 1233 bytes
08:04:26.878 [info] UploadPackV2: fetch response 1255 bytes
08:04:26.881 [info] UploadPackV2: processing fetch command
08:04:26.881 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.882 [info] UploadPackV2: collected 25 objects, generating pack
08:04:26.883 [info] UploadPackV2: pack generated, 1871 bytes
08:04:26.883 [info] UploadPackV2: fetch response 1893 bytes
08:04:26.888 [info] UploadPackV2: processing fetch command
08:04:26.888 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.889 [info] UploadPackV2: collected 21 objects, generating pack
08:04:26.889 [info] UploadPackV2: pack generated, 1463 bytes
08:04:26.889 [info] UploadPackV2: fetch response 1485 bytes
08:04:26.894 [info] UploadPackV2: processing fetch command
08:04:26.894 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.895 [info] UploadPackV2: collected 35 objects, generating pack
08:04:26.896 [info] UploadPackV2: pack generated, 2527 bytes
08:04:26.896 [info] UploadPackV2: fetch response 2549 bytes
08:04:26.905 [info] UploadPackV2: processing fetch command
08:04:26.905 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.906 [info] UploadPackV2: collected 29 objects, generating pack
08:04:26.907 [info] UploadPackV2: pack generated, 2082 bytes
08:04:26.907 [info] UploadPackV2: fetch response 2104 bytes
08:04:26.913 [info] UploadPackV2: processing fetch command
08:04:26.914 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.914 [info] UploadPackV2: collected 14 objects, generating pack
08:04:26.915 [info] UploadPackV2: pack generated, 1064 bytes
08:04:26.915 [info] UploadPackV2: fetch response 1086 bytes
08:04:26.918 [info] UploadPackV2: processing fetch command
08:04:26.918 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.918 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.919 [info] UploadPackV2: pack generated, 639 bytes
08:04:26.919 [info] UploadPackV2: fetch response 661 bytes
08:04:26.921 [info] UploadPackV2: processing fetch command
08:04:26.921 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.922 [info] UploadPackV2: collected 21 objects, generating pack
08:04:26.923 [info] UploadPackV2: pack generated, 1463 bytes
08:04:26.923 [info] UploadPackV2: fetch response 1485 bytes
08:04:26.928 [info] UploadPackV2: processing fetch command
08:04:26.928 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.929 [info] UploadPackV2: collected 28 objects, generating pack
08:04:26.929 [info] UploadPackV2: pack generated, 2085 bytes
08:04:26.929 [info] UploadPackV2: fetch response 2107 bytes
08:04:26.937 [info] UploadPackV2: processing fetch command
08:04:26.937 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.938 [info] UploadPackV2: collected 32 objects, generating pack
08:04:26.939 [info] UploadPackV2: pack generated, 2296 bytes
08:04:26.939 [info] UploadPackV2: fetch response 2318 bytes
08:04:26.945 [info] UploadPackV2: processing fetch command
08:04:26.945 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.947 [info] UploadPackV2: collected 29 objects, generating pack
08:04:26.947 [info] UploadPackV2: pack generated, 2097 bytes
08:04:26.947 [info] UploadPackV2: fetch response 2119 bytes
08:04:26.955 [info] UploadPackV2: processing fetch command
08:04:26.955 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.956 [info] UploadPackV2: collected 23 objects, generating pack
08:04:26.957 [info] UploadPackV2: pack generated, 1670 bytes
08:04:26.957 [info] UploadPackV2: fetch response 1692 bytes
08:04:26.961 [info] UploadPackV2: processing fetch command
08:04:26.961 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.962 [info] UploadPackV2: collected 8 objects, generating pack
08:04:26.962 [info] UploadPackV2: pack generated, 639 bytes
08:04:26.962 [info] UploadPackV2: fetch response 661 bytes
08:04:26.965 [info] UploadPackV2: processing fetch command
08:04:26.965 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.966 [info] UploadPackV2: collected 34 objects, generating pack
08:04:26.967 [info] UploadPackV2: pack generated, 2510 bytes
08:04:26.967 [info] UploadPackV2: fetch response 2532 bytes
08:04:26.975 [info] UploadPackV2: processing fetch command
08:04:26.975 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.977 [info] UploadPackV2: collected 41 objects, generating pack
08:04:26.977 [info] UploadPackV2: pack generated, 2924 bytes
08:04:26.978 [info] UploadPackV2: fetch response 2946 bytes
08:04:26.985 [info] UploadPackV2: processing fetch command
08:04:26.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.986 [info] UploadPackV2: collected 14 objects, generating pack
08:04:26.986 [info] UploadPackV2: pack generated, 1062 bytes
08:04:26.986 [info] UploadPackV2: fetch response 1084 bytes
08:04:26.989 [info] UploadPackV2: processing fetch command
08:04:26.989 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.990 [info] UploadPackV2: collected 5 objects, generating pack
08:04:26.990 [info] UploadPackV2: pack generated, 424 bytes
08:04:26.990 [info] UploadPackV2: fetch response 446 bytes
08:04:26.993 [info] UploadPackV2: processing fetch command
08:04:26.993 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:26.994 [info] UploadPackV2: collected 17 objects, generating pack
08:04:26.994 [info] UploadPackV2: pack generated, 1235 bytes
08:04:26.994 [info] UploadPackV2: fetch response 1257 bytes
08:04:26.999 [info] UploadPackV2: processing fetch command
08:04:26.999 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:27.000 [info] UploadPackV2: collected 20 objects, generating pack
08:04:27.000 [info] UploadPackV2: pack generated, 1490 bytes
08:04:27.000 [info] UploadPackV2: fetch response 1512 bytes
.
08:04:27.005 [info] UploadPackV2: processing fetch command
08:04:27.005 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:27.006 [info] UploadPackV2: collected 18 objects, generating pack
08:04:27.007 [info] UploadPackV2: pack generated, 1281 bytes
08:04:27.007 [info] UploadPackV2: fetch response 1303 bytes
08:04:27.013 [info] UploadPackV2: processing fetch command
08:04:27.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:27.013 [info] UploadPackV2: collected 12 objects, generating pack
08:04:27.014 [info] UploadPackV2: pack generated, 854 bytes
08:04:27.014 [info] UploadPackV2: fetch response 876 bytes
08:04:27.069 [info] UploadPackV2: processing fetch command
08:04:27.069 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:27.073 [info] UploadPackV2: reused pack 12114 bytes, 160 objects
08:04:27.074 [info] UploadPackV2: fetch response 12136 bytes
............
08:04:35.174 [info] The function passed as a handler with ID "graph-query-test-25410" 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
..
08:04:35.176 [info] The function passed as a handler with ID "graph-query-test-9540" 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
.......
08:04:35.185 [info] The function passed as a handler with ID "graph-query-test-9668" 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
...
08:04:35.242 [info] UploadPackV2: processing ls-refs command
08:04:35.243 [info] UploadPackV2: processing fetch command
08:04:35.243 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:35.244 [info] UploadPackV2: collected 3 objects, generating pack
08:04:35.244 [info] UploadPackV2: pack generated, 185 bytes
08:04:35.244 [info] UploadPackV2: fetch response 207 bytes
08:04:35.298 [info] UploadPackV2: processing ls-refs command
.
08:04:35.366 [info] UploadPackV2: processing ls-refs command
08:04:35.367 [info] UploadPackV2: processing fetch command
08:04:35.367 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:35.367 [info] UploadPackV2: collected 3 objects, generating pack
08:04:35.367 [info] UploadPackV2: pack generated, 200 bytes
08:04:35.367 [info] UploadPackV2: fetch response 256 bytes
.
08:04:35.422 [info] UploadPackV2: processing ls-refs command
08:04:35.423 [info] UploadPackV2: processing fetch command
08:04:35.423 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:35.424 [info] UploadPackV2: collected 3 objects, generating pack
08:04:35.424 [info] UploadPackV2: pack generated, 196 bytes
08:04:35.424 [info] UploadPackV2: fetch response 218 bytes
.
08:04:35.486 [info] UploadPackV2: processing ls-refs command
08:04:35.487 [info] UploadPackV2: processing fetch command
08:04:35.487 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:35.488 [info] UploadPackV2: collected 15 objects, generating pack
08:04:35.488 [info] UploadPackV2: pack generated, 952 bytes
08:04:35.488 [info] UploadPackV2: fetch response 974 bytes
..
08:04:35.562 [info] UploadPackV2: processing ls-refs command
.
08:04:35.614 [info] UploadPackV2: processing ls-refs command
08:04:35.615 [info] UploadPackV2: processing fetch command
08:04:35.615 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:35.616 [info] UploadPackV2: collected 9 objects, generating pack
08:04:35.616 [info] UploadPackV2: pack generated, 585 bytes
08:04:35.616 [info] UploadPackV2: fetch response 681 bytes
.
08:04:35.682 [info] UploadPackV2: processing ls-refs command
08:04:35.685 [info] UploadPackV2: processing fetch command
08:04:35.685 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
08:04:35.685 [info] UploadPackV2: collected 5 objects, generating pack
08:04:35.686 [info] UploadPackV2: pack generated, 319 bytes
08:04:35.686 [info] UploadPackV2: fetch response 341 bytes
..
08:04:35.754 [info] UploadPackV2: processing ls-refs command
08:04:35.755 [info] UploadPackV2: processing fetch command
08:04:35.755 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:35.756 [info] UploadPackV2: collected 3 objects, generating pack
08:04:35.756 [info] UploadPackV2: pack generated, 218 bytes
08:04:35.756 [info] UploadPackV2: fetch response 314 bytes
.
08:04:35.822 [info] UploadPackV2: processing ls-refs command
08:04:35.823 [info] UploadPackV2: processing fetch command
08:04:35.823 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:35.824 [info] UploadPackV2: collected 3 objects, generating pack
08:04:35.824 [info] UploadPackV2: pack generated, 216 bytes
08:04:35.824 [info] UploadPackV2: fetch response 312 bytes
.
08:04:35.890 [info] UploadPackV2: processing ls-refs command
08:04:35.891 [info] UploadPackV2: processing fetch command
08:04:35.891 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:35.892 [info] UploadPackV2: collected 3 objects, generating pack
08:04:35.892 [info] UploadPackV2: pack generated, 216 bytes
08:04:35.892 [info] UploadPackV2: fetch response 312 bytes
08:04:35.950 [info] UploadPackV2: processing ls-refs command
08:04:35.950 [info] UploadPackV2: processing fetch command
08:04:35.951 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:35.951 [info] UploadPackV2: collected 12 objects, generating pack
08:04:35.951 [info] UploadPackV2: pack generated, 768 bytes
08:04:35.952 [info] UploadPackV2: fetch response 1002 bytes
.
08:04:36.006 [info] UploadPackV2: processing ls-refs command
..
08:04:36.054 [info] UploadPackV2: processing ls-refs command
.
08:04:36.098 [info] UploadPackV2: processing ls-refs command
.
08:04:36.150 [info] UploadPackV2: processing ls-refs command
08:04:36.153 [info] UploadPackV2: processing fetch command
08:04:36.153 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
08:04:36.153 [info] UploadPackV2: collected 3 objects, generating pack
08:04:36.153 [info] UploadPackV2: pack generated, 381 bytes
08:04:36.153 [info] UploadPackV2: fetch response 403 bytes
.
08:04:36.222 [info] UploadPackV2: processing ls-refs command
08:04:36.225 [info] UploadPackV2: processing fetch command
08:04:36.225 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:04:36.225 [info] UploadPackV2: collected 6 objects, generating pack
08:04:36.226 [info] UploadPackV2: pack generated, 513 bytes
08:04:36.226 [info] UploadPackV2: fetch response 535 bytes
.
08:04:36.290 [info] UploadPackV2: processing ls-refs command
08:04:36.293 [info] UploadPackV2: processing fetch command
08:04:36.293 [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
08:04:36.294 [info] UploadPackV2: collected 6 objects, generating pack
08:04:36.294 [info] UploadPackV2: pack generated, 513 bytes
08:04:36.294 [info] UploadPackV2: fetch response 535 bytes
.
08:04:36.358 [info] UploadPackV2: processing ls-refs command
08:04:36.359 [info] UploadPackV2: processing fetch command
08:04:36.359 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:36.360 [info] UploadPackV2: collected 9 objects, generating pack
08:04:36.360 [info] UploadPackV2: pack generated, 549 bytes
08:04:36.360 [info] UploadPackV2: fetch response 571 bytes
08:04:36.375 [info] UploadPackV2: processing fetch command
08:04:36.375 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
08:04:36.376 [info] UploadPackV2: fetch response 171 bytes
.
08:04:36.426 [info] UploadPackV2: processing ls-refs command
08:04:36.429 [info] UploadPackV2: processing fetch command
08:04:36.429 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
08:04:36.430 [info] UploadPackV2: collected 3 objects, generating pack
08:04:36.430 [info] UploadPackV2: pack generated, 381 bytes
08:04:36.430 [info] UploadPackV2: fetch response 403 bytes
.....
08:04:37.726 [info] UploadPackV2: processing ls-refs command
08:04:37.727 [info] UploadPackV2: processing fetch command
08:04:37.727 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:37.730 [info] UploadPackV2: collected 90 objects, generating pack
08:04:37.731 [info] UploadPackV2: pack generated, 5649 bytes
08:04:37.731 [info] UploadPackV2: fetch response 5671 bytes
08:04:37.986 [info] UploadPackV2: processing ls-refs command
.
08:04:38.042 [info] UploadPackV2: processing ls-refs command
08:04:38.044 [info] UploadPackV2: processing fetch command
08:04:38.045 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:38.045 [info] UploadPackV2: collected 6 objects, generating pack
08:04:38.045 [info] UploadPackV2: pack generated, 365 bytes
08:04:38.045 [info] UploadPackV2: fetch response 387 bytes
08:04:38.050 [info] UploadPackV2: processing ls-refs command
08:04:38.057 [info] UploadPackV2: processing fetch command
08:04:38.057 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:38.058 [info] UploadPackV2: collected 6 objects, generating pack
08:04:38.058 [info] UploadPackV2: pack generated, 365 bytes
08:04:38.058 [info] UploadPackV2: fetch response 387 bytes
.
08:04:38.178 [info] UploadPackV2: processing ls-refs command
08:04:38.179 [info] UploadPackV2: processing fetch command
08:04:38.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:38.180 [info] UploadPackV2: collected 6 objects, generating pack
08:04:38.180 [info] UploadPackV2: pack generated, 365 bytes
08:04:38.180 [info] UploadPackV2: fetch response 387 bytes
08:04:40.106 [info] UploadPackV2: processing ls-refs command
.
08:04:40.162 [info] UploadPackV2: processing ls-refs command
08:04:40.163 [info] UploadPackV2: processing fetch command
08:04:40.163 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:40.164 [info] UploadPackV2: collected 6 objects, generating pack
08:04:40.164 [info] UploadPackV2: pack generated, 365 bytes
08:04:40.164 [info] UploadPackV2: fetch response 387 bytes
08:04:40.197 [info] UploadPackV2: processing fetch command
08:04:40.197 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
08:04:40.197 [info] UploadPackV2: fetch response 122 bytes
.
08:04:40.199 [info] UploadPackV2: processing fetch command
.
08:04:40.199 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:40.200 [info] UploadPackV2: collected 3 objects, generating pack
08:04:40.200 [info] UploadPackV2: pack generated, 183 bytes
08:04:40.200 [info] UploadPackV2: fetch response 205 bytes
08:04:40.254 [info] UploadPackV2: processing ls-refs command
08:04:40.255 [info] UploadPackV2: processing fetch command
08:04:40.255 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:40.256 [info] UploadPackV2: collected 9 objects, generating pack
08:04:40.256 [info] UploadPackV2: pack generated, 547 bytes
08:04:40.256 [info] UploadPackV2: fetch response 569 bytes
08:04:40.322 [info] UploadPackV2: processing ls-refs command
.
08:04:40.378 [info] UploadPackV2: processing ls-refs command
08:04:40.379 [info] UploadPackV2: processing fetch command
08:04:40.379 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:40.380 [info] UploadPackV2: collected 6 objects, generating pack
08:04:40.380 [info] UploadPackV2: pack generated, 366 bytes
08:04:40.380 [info] UploadPackV2: fetch response 388 bytes
08:04:40.438 [info] UploadPackV2: processing ls-refs command
08:04:40.439 [info] UploadPackV2: processing fetch command
08:04:40.439 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
08:04:40.439 [info] UploadPackV2: fetch response 32 bytes
08:04:40.439 [info] UploadPackV2: processing fetch command
08:04:40.439 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:40.439 [info] UploadPackV2: collected 3 objects, generating pack
08:04:40.439 [info] UploadPackV2: pack generated, 183 bytes
08:04:40.439 [info] UploadPackV2: fetch response 205 bytes
.
08:04:40.506 [info] UploadPackV2: processing ls-refs command
08:04:40.506 [info] UploadPackV2: processing fetch command
08:04:40.506 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:04:40.507 [info] UploadPackV2: collected 3 objects, generating pack
08:04:40.507 [info] UploadPackV2: pack generated, 216 bytes
08:04:40.507 [info] UploadPackV2: fetch response 346 bytes
.
08:04:40.586 [info] UploadPackV2: processing ls-refs command
08:04:40.587 [info] UploadPackV2: processing fetch command
08:04:40.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:04:40.588 [info] UploadPackV2: collected 6 objects, generating pack
08:04:40.588 [info] UploadPackV2: pack generated, 365 bytes
08:04:40.588 [info] UploadPackV2: fetch response 387 bytes
...........
08:04:55.619 [info] The function passed as a handler with ID "telemetry-test-7427" 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
.
08:05:10.685 [info] The function passed as a handler with ID "telemetry-test-6917" 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
08:05:10.686 [info] UploadPackV2: processing fetch command
08:05:10.686 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
08:05:10.686 [info] UploadPackV2: collected 2 objects, generating pack
08:05:10.686 [info] UploadPackV2: pack generated, 169 bytes
08:05:10.686 [info] UploadPackV2: fetch response 191 bytes
.
08:05:10.687 [info] The function passed as a handler with ID "telemetry-test-7459" 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
08:05:10.688 [info] UploadPackV2: processing fetch command
08:05:10.688 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:05:10.688 [info] UploadPackV2: collected 3 objects, generating pack
08:05:10.688 [info] UploadPackV2: pack generated, 186 bytes
08:05:10.688 [info] UploadPackV2: fetch response 208 bytes
.
08:05:10.689 [info] The function passed as a handler with ID "telemetry-test-9700" 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
08:05:10.689 [info] UploadPackV2: processing fetch command
08:05:10.689 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:05:10.690 [info] UploadPackV2: collected 3 objects, generating pack
08:05:10.690 [info] UploadPackV2: pack generated, 183 bytes
08:05:10.690 [info] UploadPackV2: fetch response 205 bytes
.
08:05:10.750 [info] UploadPackV2: processing ls-refs command
08:05:10.753 [info] UploadPackV2: processing fetch command
08:05:10.753 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:05:10.753 [info] UploadPackV2: collected 3 objects, generating pack
08:05:10.754 [info] UploadPackV2: pack generated, 183 bytes
08:05:10.754 [info] UploadPackV2: fetch response 205 bytes
....
08:05:56.086 [info] UploadPackV2: processing ls-refs command
08:05:56.087 [info] UploadPackV2: processing fetch command
08:05:56.088 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:05:56.088 [info] UploadPackV2: collected 6 objects, generating pack
08:05:56.089 [info] UploadPackV2: pack generated, 365 bytes
08:05:56.089 [info] UploadPackV2: fetch response 387 bytes
.
08:05:56.174 [info] UploadPackV2: processing ls-refs command
08:05:56.175 [info] UploadPackV2: processing fetch command
08:05:56.175 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:05:56.176 [info] UploadPackV2: collected 6 objects, generating pack
08:05:56.176 [info] UploadPackV2: pack generated, 365 bytes
08:05:56.176 [info] UploadPackV2: fetch response 387 bytes
..
08:06:26.382 [info] UploadPackV2: processing ls-refs command
08:06:26.383 [info] UploadPackV2: processing fetch command
08:06:26.384 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:06:26.385 [info] UploadPackV2: collected 3 objects, generating pack
08:06:26.385 [info] UploadPackV2: pack generated, 183 bytes
08:06:26.385 [info] UploadPackV2: fetch response 205 bytes
...
08:07:11.694 [info] UploadPackV2: processing ls-refs command
08:07:11.695 [info] UploadPackV2: processing fetch command
08:07:11.695 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:11.696 [info] UploadPackV2: collected 3 objects, generating pack
08:07:11.697 [info] UploadPackV2: pack generated, 201 bytes
08:07:11.697 [info] UploadPackV2: fetch response 223 bytes
.*****
08:07:26.826 [info] UploadPackV2: processing ls-refs command
.
08:07:26.839 [info] UploadPackV2: processing fetch command
08:07:26.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.839 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.839 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.839 [info] UploadPackV2: fetch response 205 bytes
08:07:26.839 [info] UploadPackV2: processing fetch command
08:07:26.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.840 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.840 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.840 [info] UploadPackV2: fetch response 205 bytes
08:07:26.840 [info] UploadPackV2: processing fetch command
08:07:26.840 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.840 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.840 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.840 [info] UploadPackV2: fetch response 205 bytes
08:07:26.840 [info] UploadPackV2: processing fetch command
08:07:26.841 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.841 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.841 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.841 [info] UploadPackV2: fetch response 205 bytes
08:07:26.841 [info] UploadPackV2: processing fetch command
08:07:26.841 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.841 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.841 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.842 [info] UploadPackV2: fetch response 205 bytes
08:07:26.842 [info] UploadPackV2: processing fetch command
08:07:26.842 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.842 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.842 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.842 [info] UploadPackV2: fetch response 205 bytes
08:07:26.842 [info] UploadPackV2: processing fetch command
08:07:26.842 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.843 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.843 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.843 [info] UploadPackV2: fetch response 205 bytes
08:07:26.843 [info] UploadPackV2: processing fetch command
08:07:26.843 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.843 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.843 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.843 [info] UploadPackV2: fetch response 205 bytes
08:07:26.844 [info] UploadPackV2: processing fetch command
08:07:26.844 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.844 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.844 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.844 [info] UploadPackV2: fetch response 205 bytes
.
08:07:26.844 [info] UploadPackV2: processing fetch command
08:07:26.844 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.844 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.844 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.845 [info] UploadPackV2: fetch response 205 bytes
08:07:26.845 [info] UploadPackV2: processing fetch command
08:07:26.845 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.845 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.845 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.845 [info] UploadPackV2: fetch response 205 bytes
08:07:26.845 [info] UploadPackV2: processing fetch command
08:07:26.845 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.846 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.846 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.846 [info] UploadPackV2: fetch response 205 bytes
08:07:26.846 [info] UploadPackV2: processing fetch command
08:07:26.846 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.846 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.846 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.846 [info] UploadPackV2: fetch response 205 bytes
08:07:26.846 [info] UploadPackV2: processing fetch command
08:07:26.846 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.847 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.847 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.847 [info] UploadPackV2: fetch response 205 bytes
08:07:26.847 [info] UploadPackV2: processing fetch command
08:07:26.847 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.847 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.847 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.847 [info] UploadPackV2: fetch response 205 bytes
08:07:26.847 [info] UploadPackV2: processing fetch command
08:07:26.847 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.848 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.848 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.848 [info] UploadPackV2: fetch response 205 bytes
08:07:26.848 [info] UploadPackV2: processing fetch command
08:07:26.848 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.848 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.848 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.848 [info] UploadPackV2: fetch response 205 bytes
08:07:26.848 [info] UploadPackV2: processing fetch command
08:07:26.848 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.849 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.849 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.849 [info] UploadPackV2: fetch response 205 bytes
08:07:26.849 [info] UploadPackV2: processing fetch command
08:07:26.849 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.849 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.849 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.849 [info] UploadPackV2: fetch response 205 bytes
08:07:26.849 [info] UploadPackV2: processing fetch command
08:07:26.849 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.850 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.850 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.850 [info] UploadPackV2: fetch response 205 bytes
08:07:26.850 [info] UploadPackV2: processing fetch command
08:07:26.850 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.850 [info] UploadPackV2: collected 3 objects, generating pack
08:07:26.851 [info] UploadPackV2: pack generated, 183 bytes
08:07:26.851 [info] UploadPackV2: fetch response 205 bytes
08:07:26.898 [info] UploadPackV2: processing ls-refs command
.
08:07:26.905 [info] UploadPackV2: processing fetch command
08:07:26.905 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:26.905 [info] UploadPackV2: collected 0 objects, generating pack
08:07:26.905 [info] UploadPackV2: pack generated, 32 bytes
08:07:26.905 [info] UploadPackV2: fetch response 54 bytes
.
08:07:27.246 [info] UploadPackV2: processing ls-refs command
08:07:27.247 [info] UploadPackV2: processing fetch command
08:07:27.247 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
08:07:27.248 [info] UploadPackV2: collected 3 objects, generating pack
08:07:27.248 [info] UploadPackV2: pack generated, 231 bytes
08:07:27.248 [info] UploadPackV2: fetch response 327 bytes
.
08:07:27.322 [info] UploadPackV2: processing ls-refs command
08:07:27.323 [info] UploadPackV2: processing fetch command
08:07:27.323 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.329 [info] UploadPackV2: collected 240 objects, generating pack
08:07:27.333 [info] UploadPackV2: pack generated, 16258 bytes
08:07:27.333 [info] UploadPackV2: fetch response 16280 bytes
.
08:07:27.438 [info] UploadPackV2: processing ls-refs command
08:07:27.439 [info] UploadPackV2: processing fetch command
08:07:27.439 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.461 [info] UploadPackV2: collected 600 objects, generating pack
08:07:27.479 [info] UploadPackV2: pack generated, 45197 bytes
08:07:27.479 [info] UploadPackV2: fetch response 45219 bytes
.
08:07:27.508 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303392159" 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
08:07:27.508 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303392127" 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
.
08:07:27.509 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303415998" 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
08:07:27.509 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303415966" 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
.
08:07:27.510 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303415934" 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
08:07:27.510 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303415902" 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
.
08:07:27.510 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303415870" 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
08:07:27.510 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303415838" 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
...................
08:07:27.541 [info] UploadPackV2: processing ls-refs command
08:07:27.543 [info] UploadPackV2: processing fetch command
08:07:27.543 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.544 [info] UploadPackV2: collected 9 objects, generating pack
08:07:27.544 [info] UploadPackV2: pack generated, 549 bytes
08:07:27.544 [info] UploadPackV2: fetch response 571 bytes
08:07:27.570 [info] UploadPackV2: processing ls-refs command
.
08:07:27.600 [info] UploadPackV2: processing ls-refs command
08:07:27.602 [info] UploadPackV2: processing fetch command
08:07:27.602 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.607 [info] UploadPackV2: collected 180 objects, generating pack
08:07:27.609 [info] UploadPackV2: pack generated, 11106 bytes
08:07:27.609 [info] UploadPackV2: fetch response 11128 bytes
..
08:07:27.734 [info] UploadPackV2: processing fetch command
08:07:27.734 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.734 [info] UploadPackV2: collected 3 objects, generating pack
08:07:27.734 [info] UploadPackV2: pack generated, 183 bytes
08:07:27.735 [info] UploadPackV2: fetch response 205 bytes
.
08:07:27.757 [info] UploadPackV2: processing ls-refs command
08:07:27.760 [info] UploadPackV2: processing fetch command
08:07:27.760 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.760 [info] UploadPackV2: collected 6 objects, generating pack
08:07:27.761 [info] UploadPackV2: pack generated, 366 bytes
08:07:27.761 [info] UploadPackV2: fetch response 388 bytes
08:07:27.788 [info] UploadPackV2: processing ls-refs command
.
08:07:27.810 [info] UploadPackV2: processing ls-refs command
08:07:27.812 [info] UploadPackV2: processing fetch command
08:07:27.812 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.813 [info] UploadPackV2: collected 3 objects, generating pack
08:07:27.813 [info] UploadPackV2: pack generated, 183 bytes
08:07:27.813 [info] UploadPackV2: fetch response 205 bytes
.
08:07:27.846 [info] UploadPackV2: processing ls-refs command
08:07:27.849 [info] UploadPackV2: processing fetch command
08:07:27.849 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.850 [info] UploadPackV2: collected 15 objects, generating pack
08:07:27.850 [info] UploadPackV2: pack generated, 919 bytes
08:07:27.850 [info] UploadPackV2: fetch response 941 bytes
.***********
08:07:27.922 [info] UploadPackV2: processing ls-refs command
08:07:27.923 [info] UploadPackV2: processing fetch command
08:07:27.923 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.923 [info] UploadPackV2: collected 3 objects, generating pack
08:07:27.924 [info] UploadPackV2: pack generated, 185 bytes
08:07:27.924 [info] UploadPackV2: fetch response 207 bytes
.
08:07:27.986 [info] UploadPackV2: processing ls-refs command
08:07:27.987 [info] UploadPackV2: processing fetch command
08:07:27.987 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
08:07:27.988 [info] UploadPackV2: collected 3 objects, generating pack
08:07:27.988 [info] UploadPackV2: pack generated, 196 bytes
08:07:27.988 [info] UploadPackV2: fetch response 218 bytes
..
Finished in 204.2 seconds (16.3s async, 187.8s sync)
Result: 996 passed (2 properties, 994 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info