ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 2 files (.ex)
Cover compiling modules ...
Running ExUnit with seed: 947995, max_cases: 8
Excluding tags: [:s3]
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: variable "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
...................................................................................................................................................................................................................
02:50:23.536 [info] The function passed as a handler with ID #Reference<0.2279420807.3963617284.109854> 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
........................................................................................................................................................
02:50:25.298 [warning] post_receive hook failed: "webhook failed"
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
........................
02:50:25.726 [info] The function passed as a handler with ID "test-#Reference<0.2279420807.3963617281.129761>" 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
.
02:50:25.727 [info] The function passed as a handler with ID "test-fail-#Reference<0.2279420807.3963617281.129790>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:63:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
warning: variable "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: 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)
............................................................................................................................................
02:50:30.805 [info] UploadPackV2: processing fetch command
.
02:50:30.805 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
02:50:30.827 [info] UploadPackV2: collected 31 objects, generating pack
.
02:50:30.828 [info] UploadPackV2: pack generated, 1865 bytes
.
02:50:30.832 [info] UploadPackV2: fetch response 1887 bytes
.............
02:50:30.882 [info] UploadPackV2: processing fetch command
.
02:50:30.882 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:30.883 [info] UploadPackV2: collected 19 objects, generating pack
.
02:50:30.883 [info] UploadPackV2: pack generated, 1194 bytes
.
02:50:30.884 [info] UploadPackV2: fetch response 1216 bytes
.
02:50:30.904 [info] UploadPackV2: processing fetch command
.
02:50:30.904 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:30.905 [info] UploadPackV2: collected 15 objects, generating pack
.
02:50:30.906 [info] UploadPackV2: pack generated, 924 bytes
.
02:50:30.906 [info] UploadPackV2: fetch response 946 bytes
.
02:50:30.927 [info] UploadPackV2: processing fetch command
.
02:50:30.927 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
warning: the variable "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
.
02:50:30.928 [info] UploadPackV2: collected 20 objects, generating pack
.
02:50:30.928 [info] UploadPackV2: pack generated, 1203 bytes
.
02:50:30.928 [info] UploadPackV2: fetch response 1225 bytes
.
02:50:30.950 [info] UploadPackV2: processing fetch command
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
.
02:50:30.950 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:30.952 [info] UploadPackV2: collected 8 objects, generating pack
.
02:50:30.961 [info] UploadPackV2: pack generated, 482 bytes
.
02:50:30.961 [info] UploadPackV2: fetch response 504 bytes
.
02:50:30.972 [info] UploadPackV2: processing fetch command
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
.
02:50:30.972 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:30.982 [info] UploadPackV2: collected 42 objects, generating pack
.
02:50:30.984 [info] UploadPackV2: pack generated, 2582 bytes
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
.
02:50:30.984 [info] UploadPackV2: fetch response 2604 bytes
.
02:50:31.009 [info] UploadPackV2: processing fetch command
.
02:50:31.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:31.013 [info] UploadPackV2: collected 4 objects, generating pack
.
02:50:31.013 [info] UploadPackV2: pack generated, 241 bytes
.
02:50:31.014 [info] UploadPackV2: fetch response 263 bytes
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
.
02:50:31.027 [info] UploadPackV2: processing fetch command
.
02:50:31.027 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.039 [info] UploadPackV2: collected 43 objects, generating pack
.
02:50:31.044 [info] UploadPackV2: pack generated, 2605 bytes
02:50:31.044 [info] UploadPackV2: fetch response 2627 bytes
02:50:31.061 [info] UploadPackV2: processing fetch command
02:50:31.061 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.065 [info] UploadPackV2: collected 32 objects, generating pack
02:50:31.067 [info] UploadPackV2: pack generated, 1893 bytes
02:50:31.067 [info] UploadPackV2: fetch response 1915 bytes
02:50:31.083 [info] UploadPackV2: processing fetch command
02:50:31.084 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.086 [info] UploadPackV2: collected 16 objects, generating pack
02:50:31.087 [info] UploadPackV2: pack generated, 930 bytes
02:50:31.088 [info] UploadPackV2: fetch response 952 bytes
02:50:31.102 [info] UploadPackV2: processing fetch command
02:50:31.102 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.105 [info] UploadPackV2: collected 39 objects, generating pack
02:50:31.108 [info] UploadPackV2: pack generated, 2349 bytes
02:50:31.108 [info] UploadPackV2: fetch response 2371 bytes
02:50:31.127 [info] UploadPackV2: processing fetch command
02:50:31.127 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.131 [info] UploadPackV2: collected 31 objects, generating pack
02:50:31.134 [info] UploadPackV2: pack generated, 1855 bytes
.
02:50:31.134 [info] UploadPackV2: fetch response 1877 bytes
02:50:31.144 [info] UploadPackV2: processing fetch command
02:50:31.145 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.146 [info] UploadPackV2: collected 19 objects, generating pack
02:50:31.147 [info] UploadPackV2: pack generated, 1194 bytes
02:50:31.148 [info] UploadPackV2: fetch response 1216 bytes
02:50:31.155 [info] UploadPackV2: processing fetch command
02:50:31.155 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.156 [info] UploadPackV2: collected 7 objects, generating pack
02:50:31.156 [info] UploadPackV2: pack generated, 475 bytes
02:50:31.156 [info] UploadPackV2: fetch response 497 bytes
02:50:31.165 [info] UploadPackV2: processing fetch command
02:50:31.165 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.167 [info] UploadPackV2: collected 15 objects, generating pack
02:50:31.168 [info] UploadPackV2: pack generated, 958 bytes
02:50:31.169 [info] UploadPackV2: fetch response 980 bytes
02:50:31.188 [info] UploadPackV2: processing fetch command
02:50:31.188 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.192 [info] UploadPackV2: collected 31 objects, generating pack
02:50:31.194 [info] UploadPackV2: pack generated, 1856 bytes
02:50:31.195 [info] UploadPackV2: fetch response 1878 bytes
02:50:31.221 [info] UploadPackV2: processing fetch command
02:50:31.407 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.427 [info] UploadPackV2: collected 43 objects, generating pack
02:50:31.431 [info] UploadPackV2: pack generated, 2605 bytes
02:50:31.431 [info] UploadPackV2: fetch response 2627 bytes
02:50:31.462 [info] UploadPackV2: processing fetch command
02:50:31.464 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.465 [info] UploadPackV2: collected 8 objects, generating pack
02:50:31.466 [info] UploadPackV2: pack generated, 482 bytes
02:50:31.466 [info] UploadPackV2: fetch response 504 bytes
02:50:31.471 [info] UploadPackV2: processing fetch command
02:50:31.471 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.473 [info] UploadPackV2: collected 23 objects, generating pack
02:50:31.475 [info] UploadPackV2: pack generated, 1404 bytes
02:50:31.475 [info] UploadPackV2: fetch response 1426 bytes
02:50:31.492 [info] UploadPackV2: processing fetch command
02:50:31.492 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.497 [info] UploadPackV2: collected 23 objects, generating pack
02:50:31.498 [info] UploadPackV2: pack generated, 1437 bytes
02:50:31.499 [info] UploadPackV2: fetch response 1459 bytes
02:50:31.508 [info] UploadPackV2: processing fetch command
.
02:50:31.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.509 [info] UploadPackV2: collected 7 objects, generating pack
02:50:31.510 [info] UploadPackV2: pack generated, 475 bytes
02:50:31.510 [info] UploadPackV2: fetch response 497 bytes
02:50:31.518 [info] UploadPackV2: processing fetch command
02:50:31.519 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.520 [info] UploadPackV2: collected 39 objects, generating pack
02:50:31.523 [info] UploadPackV2: pack generated, 2347 bytes
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
02:50:31.523 [info] UploadPackV2: fetch response 2369 bytes
02:50:31.542 [info] UploadPackV2: processing fetch command
02:50:31.542 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.543 [info] UploadPackV2: collected 24 objects, generating pack
02:50:31.545 [info] UploadPackV2: pack generated, 1443 bytes
02:50:31.545 [info] UploadPackV2: fetch response 1465 bytes
02:50:31.558 [info] UploadPackV2: processing fetch command
02:50:31.558 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.562 [info] UploadPackV2: collected 32 objects, generating pack
02:50:31.564 [info] UploadPackV2: pack generated, 1892 bytes
02:50:31.564 [info] UploadPackV2: fetch response 1914 bytes
.
02:50:31.573 [info] UploadPackV2: processing fetch command
.
02:50:31.573 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
02:50:31.574 [info] UploadPackV2: collected 11 objects, generating pack
.
02:50:31.574 [info] UploadPackV2: pack generated, 714 bytes
.
02:50:31.575 [info] UploadPackV2: fetch response 736 bytes
.
02:50:31.579 [info] UploadPackV2: processing fetch command
.
02:50:31.580 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.581 [info] UploadPackV2: collected 20 objects, generating pack
02:50:31.582 [info] UploadPackV2: pack generated, 1203 bytes
02:50:31.583 [info] UploadPackV2: fetch response 1225 bytes
02:50:31.593 [info] UploadPackV2: processing fetch command
02:50:31.593 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.596 [info] UploadPackV2: collected 42 objects, generating pack
02:50:31.598 [info] UploadPackV2: pack generated, 2582 bytes
02:50:31.599 [info] UploadPackV2: fetch response 2604 bytes
02:50:31.611 [info] UploadPackV2: processing fetch command
02:50:31.612 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.614 [info] UploadPackV2: collected 40 objects, generating pack
02:50:31.617 [info] UploadPackV2: pack generated, 2343 bytes
02:50:31.617 [info] UploadPackV2: fetch response 2365 bytes
02:50:31.628 [info] UploadPackV2: processing fetch command
02:50:31.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.629 [info] UploadPackV2: collected 20 objects, generating pack
02:50:31.630 [info] UploadPackV2: pack generated, 1203 bytes
02:50:31.630 [info] UploadPackV2: fetch response 1225 bytes
02:50:31.637 [info] UploadPackV2: processing fetch command
02:50:31.637 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.640 [info] UploadPackV2: collected 23 objects, generating pack
02:50:31.642 [info] UploadPackV2: pack generated, 1383 bytes
02:50:31.642 [info] UploadPackV2: fetch response 1405 bytes
02:50:31.642 [info] UploadPackV2: processing fetch command
02:50:31.644 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.646 [info] UploadPackV2: collected 3 objects, generating pack
02:50:31.646 [info] UploadPackV2: pack generated, 191 bytes
02:50:31.647 [info] UploadPackV2: fetch response 213 bytes
02:50:31.650 [info] UploadPackV2: processing fetch command
02:50:31.650 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.651 [info] UploadPackV2: collected 3 objects, generating pack
02:50:31.652 [info] UploadPackV2: pack generated, 223 bytes
02:50:31.652 [info] UploadPackV2: fetch response 245 bytes
02:50:31.655 [info] UploadPackV2: processing fetch command
02:50:31.655 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.657 [info] UploadPackV2: collected 3 objects, generating pack
02:50:31.657 [info] UploadPackV2: pack generated, 191 bytes
02:50:31.660 [info] UploadPackV2: processing fetch command
.
02:50:31.741 [info] UploadPackV2: fetch response 213 bytes
02:50:31.741 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:31.747 [info] UploadPackV2: processing fetch command
.
02:50:31.748 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.749 [info] UploadPackV2: collected 3 objects, streaming pack
.
02:50:31.754 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
.
02:50:31.754 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
02:50:31.759 [info] UploadPackV2: processing fetch command
.
02:50:31.759 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:31.759 [info] UploadPackV2: collected 9 objects, streaming pack
.
02:50:31.761 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
02:50:31.762 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
02:50:31.762 [info] UploadPackV2: collected 54 objects, generating pack
02:50:31.764 [info] UploadPackV2: processing ls-refs command
02:50:31.764 [info] UploadPackV2: processing ls-refs command
.
02:50:31.766 [info] UploadPackV2: processing ls-refs command
02:50:31.769 [info] UploadPackV2: pack generated, 3298 bytes
02:50:31.769 [info] UploadPackV2: fetch response 3320 bytes
02:50:31.786 [info] UploadPackV2: processing fetch command
02:50:31.787 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.792 [info] UploadPackV2: collected 90 objects, generating pack
02:50:31.797 [info] UploadPackV2: pack generated, 5946 bytes
02:50:31.797 [info] UploadPackV2: fetch response 5968 bytes
02:50:31.803 [info] UploadPackV2: processing fetch command
02:50:31.803 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.803 [info] UploadPackV2: collected 15 objects, generating pack
02:50:31.804 [info] UploadPackV2: pack generated, 958 bytes
02:50:31.804 [info] UploadPackV2: fetch response 980 bytes
02:50:31.808 [info] UploadPackV2: processing fetch command
02:50:31.808 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.812 [info] UploadPackV2: collected 6 objects, generating pack
02:50:31.812 [info] UploadPackV2: processing fetch command
02:50:31.812 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.813 [info] UploadPackV2: pack generated, 414 bytes
02:50:31.813 [info] UploadPackV2: fetch response 436 bytes
02:50:31.818 [info] UploadPackV2: collected 20 objects, generating pack
02:50:31.819 [info] UploadPackV2: pack generated, 1203 bytes
02:50:31.819 [info] UploadPackV2: fetch response 1225 bytes
02:50:31.822 [info] UploadPackV2: processing fetch command
02:50:31.822 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:50:31.827 [info] UploadPackV2: fetch response 73 bytes
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:151:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: 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)
02:50:31.827 [info] UploadPackV2: processing fetch command
02:50:31.827 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:50:31.828 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
02:50:31.829 [info] UploadPackV2: processing fetch command
02:50:31.829 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.830 [info] UploadPackV2: collected 11 objects, generating pack
02:50:31.830 [info] UploadPackV2: pack generated, 717 bytes
02:50:31.831 [info] UploadPackV2: fetch response 739 bytes
02:50:31.847 [info] UploadPackV2: processing fetch command
02:50:31.847 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.848 [info] UploadPackV2: collected 23 objects, generating pack
02:50:31.849 [info] UploadPackV2: pack generated, 1435 bytes
02:50:31.849 [info] UploadPackV2: fetch response 1457 bytes
02:50:31.858 [info] UploadPackV2: processing fetch command
02:50:31.858 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.860 [info] UploadPackV2: collected 23 objects, generating pack
02:50:31.862 [info] UploadPackV2: pack generated, 1435 bytes
02:50:31.865 [info] UploadPackV2: fetch response 1457 bytes
02:50:31.874 [info] UploadPackV2: processing fetch command
02:50:31.875 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.875 [info] UploadPackV2: collected 11 objects, generating pack
02:50:31.876 [info] UploadPackV2: pack generated, 717 bytes
02:50:31.876 [info] UploadPackV2: fetch response 739 bytes
02:50:31.880 [info] UploadPackV2: processing fetch command
02:50:31.880 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.880 [info] UploadPackV2: collected 7 objects, generating pack
02:50:31.881 [info] UploadPackV2: pack generated, 475 bytes
.
02:50:31.881 [info] UploadPackV2: fetch response 497 bytes
.
02:50:31.894 [info] UploadPackV2: processing fetch command
.
02:50:31.925 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:31.929 [info] UploadPackV2: collected 43 objects, generating pack
.
02:50:31.934 [info] UploadPackV2: pack generated, 2586 bytes
02:50:31.934 [info] UploadPackV2: fetch response 2608 bytes
02:50:31.952 [info] UploadPackV2: processing fetch command
02:50:31.965 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.966 [info] UploadPackV2: collected 27 objects, generating pack
02:50:31.967 [info] UploadPackV2: pack generated, 1676 bytes
02:50:31.967 [info] UploadPackV2: fetch response 1698 bytes
02:50:31.979 [info] UploadPackV2: processing fetch command
02:50:31.979 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.980 [info] UploadPackV2: collected 11 objects, generating pack
02:50:31.981 [info] UploadPackV2: pack generated, 717 bytes
02:50:31.981 [info] UploadPackV2: fetch response 739 bytes
02:50:31.984 [info] UploadPackV2: processing fetch command
02:50:31.984 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.985 [info] UploadPackV2: collected 8 objects, generating pack
02:50:31.986 [info] UploadPackV2: pack generated, 482 bytes
02:50:31.986 [info] UploadPackV2: fetch response 504 bytes
02:50:31.991 [info] UploadPackV2: processing fetch command
02:50:31.991 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:31.992 [info] UploadPackV2: collected 20 objects, generating pack
02:50:31.995 [info] UploadPackV2: pack generated, 1203 bytes
02:50:31.995 [info] UploadPackV2: fetch response 1225 bytes
02:50:32.004 [info] UploadPackV2: processing fetch command
02:50:32.004 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.005 [info] UploadPackV2: collected 18 objects, generating pack
02:50:32.006 [info] UploadPackV2: pack generated, 1137 bytes
02:50:32.006 [info] UploadPackV2: fetch response 1159 bytes
02:50:32.013 [info] UploadPackV2: processing fetch command
02:50:32.014 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.015 [info] UploadPackV2: collected 24 objects, generating pack
02:50:32.016 [info] UploadPackV2: pack generated, 1443 bytes
02:50:32.017 [info] UploadPackV2: fetch response 1465 bytes
02:50:32.023 [info] UploadPackV2: processing fetch command
02:50:32.023 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.026 [info] UploadPackV2: collected 24 objects, generating pack
02:50:32.038 [info] UploadPackV2: processing ls-refs command
02:50:32.039 [info] UploadPackV2: processing fetch command
02:50:32.039 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.040 [info] UploadPackV2: collected 3 objects, generating pack
02:50:32.040 [info] UploadPackV2: pack generated, 210 bytes
02:50:32.040 [info] UploadPackV2: fetch response 232 bytes
02:50:32.063 [info] UploadPackV2: pack generated, 1411 bytes
02:50:32.063 [info] UploadPackV2: fetch response 1433 bytes
02:50:32.078 [info] UploadPackV2: processing fetch command
02:50:32.079 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.080 [info] UploadPackV2: collected 23 objects, generating pack
02:50:32.080 [info] UploadPackV2: pack generated, 1435 bytes
02:50:32.080 [info] UploadPackV2: fetch response 1457 bytes
02:50:32.088 [info] UploadPackV2: processing fetch command
02:50:32.088 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.091 [info] UploadPackV2: collected 34 objects, generating pack
02:50:32.092 [info] UploadPackV2: pack generated, 2099 bytes
02:50:32.092 [info] UploadPackV2: fetch response 2121 bytes
02:50:32.109 [info] UploadPackV2: processing fetch command
02:50:32.110 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.110 [info] UploadPackV2: collected 19 objects, generating pack
02:50:32.111 [info] UploadPackV2: pack generated, 1196 bytes
02:50:32.111 [info] UploadPackV2: fetch response 1218 bytes
02:50:32.124 [info] UploadPackV2: processing fetch command
02:50:32.124 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.127 [info] UploadPackV2: collected 28 objects, generating pack
.
02:50:32.130 [info] UploadPackV2: pack generated, 1652 bytes
.
02:50:32.130 [info] UploadPackV2: fetch response 1674 bytes
.
02:50:32.148 [info] UploadPackV2: processing fetch command
.
02:50:32.148 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.156 [info] UploadPackV2: collected 20 objects, generating pack
.
02:50:32.157 [info] UploadPackV2: pack generated, 1170 bytes
.
02:50:32.161 [info] UploadPackV2: fetch response 1192 bytes
.
02:50:32.180 [info] UploadPackV2: processing fetch command
.
02:50:32.207 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.212 [info] UploadPackV2: collected 24 objects, generating pack
.
02:50:32.213 [info] UploadPackV2: pack generated, 1443 bytes
.
02:50:32.213 [info] UploadPackV2: fetch response 1465 bytes
.
02:50:32.237 [info] UploadPackV2: processing fetch command
02:50:32.241 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.242 [info] UploadPackV2: collected 11 objects, generating pack
02:50:32.242 [info] UploadPackV2: pack generated, 717 bytes
02:50:32.242 [info] UploadPackV2: fetch response 739 bytes
02:50:32.250 [info] UploadPackV2: processing fetch command
02:50:32.250 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.251 [info] UploadPackV2: collected 19 objects, generating pack
02:50:32.251 [info] UploadPackV2: pack generated, 1145 bytes
02:50:32.251 [info] UploadPackV2: fetch response 1167 bytes
02:50:32.261 [info] UploadPackV2: processing fetch command
02:50:32.262 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.263 [info] UploadPackV2: collected 30 objects, generating pack
02:50:32.264 [info] UploadPackV2: pack generated, 1860 bytes
02:50:32.264 [info] UploadPackV2: fetch response 1882 bytes
02:50:32.284 [info] UploadPackV2: processing fetch command
02:50:32.284 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.293 [info] UploadPackV2: collected 40 objects, generating pack
02:50:32.302 [info] UploadPackV2: pack generated, 2342 bytes
02:50:32.302 [info] UploadPackV2: fetch response 2364 bytes
02:50:32.309 [info] UploadPackV2: processing fetch command
02:50:32.309 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.310 [info] UploadPackV2: collected 27 objects, generating pack
02:50:32.311 [info] UploadPackV2: pack generated, 1643 bytes
02:50:32.311 [info] UploadPackV2: fetch response 1665 bytes
02:50:32.319 [info] UploadPackV2: processing fetch command
02:50:32.320 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.322 [info] UploadPackV2: collected 43 objects, generating pack
02:50:32.323 [info] UploadPackV2: pack generated, 2589 bytes
02:50:32.323 [info] UploadPackV2: fetch response 2611 bytes
02:50:32.328 [info] UploadPackV2: processing fetch command
02:50:32.328 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.328 [info] UploadPackV2: collected 3 objects, generating pack
02:50:32.328 [info] UploadPackV2: pack generated, 194 bytes
02:50:32.328 [info] UploadPackV2: fetch response 216 bytes
02:50:32.330 [info] UploadPackV2: processing ls-refs command
02:50:32.331 [info] UploadPackV2: processing fetch command
02:50:32.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.331 [info] UploadPackV2: collected 3 objects, generating pack
02:50:32.331 [info] UploadPackV2: pack generated, 206 bytes
02:50:32.331 [info] UploadPackV2: fetch response 228 bytes
02:50:32.333 [info] UploadPackV2: processing fetch command
02:50:32.333 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.333 [info] UploadPackV2: collected 3 objects, streaming pack
02:50:32.334 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
02:50:32.334 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
02:50:32.339 [info] UploadPackV2: processing fetch command
02:50:32.339 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.342 [info] UploadPackV2: collected 24 objects, generating pack
02:50:32.343 [info] UploadPackV2: pack generated, 1443 bytes
02:50:32.343 [info] UploadPackV2: fetch response 1465 bytes
02:50:32.350 [info] UploadPackV2: processing fetch command
02:50:32.350 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.351 [info] UploadPackV2: collected 4 objects, generating pack
02:50:32.351 [info] UploadPackV2: pack generated, 241 bytes
02:50:32.351 [info] UploadPackV2: fetch response 263 bytes
02:50:32.360 [info] UploadPackV2: processing fetch command
02:50:32.360 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.363 [info] UploadPackV2: collected 24 objects, generating pack
02:50:32.364 [info] UploadPackV2: pack generated, 1443 bytes
02:50:32.364 [info] UploadPackV2: fetch response 1465 bytes
02:50:32.371 [info] UploadPackV2: processing fetch command
02:50:32.371 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.373 [info] UploadPackV2: collected 12 objects, generating pack
02:50:32.373 [info] UploadPackV2: pack generated, 723 bytes
02:50:32.374 [info] UploadPackV2: fetch response 745 bytes
02:50:32.382 [info] UploadPackV2: processing fetch command
02:50:32.382 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.385 [info] UploadPackV2: collected 15 objects, generating pack
02:50:32.386 [info] UploadPackV2: pack generated, 958 bytes
02:50:32.386 [info] UploadPackV2: fetch response 980 bytes
02:50:32.394 [info] UploadPackV2: processing fetch command
02:50:32.394 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.396 [info] UploadPackV2: collected 20 objects, generating pack
02:50:32.397 [info] UploadPackV2: pack generated, 1203 bytes
02:50:32.397 [info] UploadPackV2: fetch response 1225 bytes
02:50:32.403 [info] UploadPackV2: processing fetch command
02:50:32.403 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.405 [info] UploadPackV2: collected 20 objects, generating pack
02:50:32.406 [info] UploadPackV2: pack generated, 1170 bytes
02:50:32.406 [info] UploadPackV2: fetch response 1192 bytes
02:50:32.413 [info] UploadPackV2: processing fetch command
02:50:32.441 [info] UploadPackV2: processing fetch command
02:50:32.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.591 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.611 [info] UploadPackV2: collected 11 objects, generating pack
02:50:32.612 [info] UploadPackV2: pack generated, 717 bytes
02:50:32.612 [info] UploadPackV2: fetch response 739 bytes
02:50:32.646 [info] UploadPackV2: collected 600 objects, generating pack
02:50:32.669 [info] UploadPackV2: processing fetch command
02:50:32.670 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.670 [info] UploadPackV2: pack generated, 39862 bytes
02:50:32.671 [info] UploadPackV2: fetch response 39884 bytes
02:50:32.686 [info] UploadPackV2: collected 19 objects, generating pack
02:50:32.687 [info] UploadPackV2: pack generated, 1196 bytes
02:50:32.687 [info] UploadPackV2: fetch response 1218 bytes
02:50:32.704 [info] UploadPackV2: processing fetch command
02:50:32.704 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.707 [info] UploadPackV2: collected 27 objects, generating pack
02:50:32.708 [info] UploadPackV2: pack generated, 1676 bytes
02:50:32.709 [info] UploadPackV2: fetch response 1698 bytes
02:50:32.731 [info] UploadPackV2: processing fetch command
02:50:32.731 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.737 [info] UploadPackV2: collected 12 objects, generating pack
.
02:50:32.738 [info] UploadPackV2: pack generated, 723 bytes
.
02:50:32.738 [info] UploadPackV2: fetch response 745 bytes
.
02:50:32.751 [info] UploadPackV2: processing fetch command
.
02:50:32.752 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.754 [info] UploadPackV2: collected 19 objects, generating pack
.
02:50:32.754 [info] UploadPackV2: pack generated, 1194 bytes
.
02:50:32.754 [info] UploadPackV2: fetch response 1216 bytes
02:50:32.760 [info] UploadPackV2: processing fetch command
.
02:50:32.760 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.763 [info] UploadPackV2: collected 15 objects, generating pack
.
02:50:32.763 [info] UploadPackV2: pack generated, 907 bytes
.
02:50:32.763 [info] UploadPackV2: fetch response 929 bytes
.
02:50:32.780 [info] UploadPackV2: processing fetch command
02:50:32.781 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.802 [info] UploadPackV2: collected 20 objects, generating pack
.
02:50:32.802 [info] UploadPackV2: pack generated, 1171 bytes
.
02:50:32.803 [info] UploadPackV2: fetch response 1193 bytes
.
02:50:32.820 [info] UploadPackV2: processing fetch command
.
02:50:32.820 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.825 [info] UploadPackV2: collected 7 objects, generating pack
.
02:50:32.825 [info] UploadPackV2: pack generated, 475 bytes
.
02:50:32.825 [info] UploadPackV2: fetch response 497 bytes
.
02:50:32.838 [info] UploadPackV2: processing fetch command
..
02:50:32.838 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.842 [info] UploadPackV2: processing fetch command
.
02:50:32.842 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:32.845 [info] UploadPackV2: collected 15 objects, generating pack
.
02:50:32.846 [info] UploadPackV2: pack generated, 907 bytes
.
02:50:32.846 [info] UploadPackV2: fetch response 929 bytes
02:50:32.854 [info] UploadPackV2: collected 3 objects, generating pack
02:50:32.854 [info] UploadPackV2: pack generated, 195 bytes
02:50:32.856 [info] UploadPackV2: fetch response 217 bytes
02:50:32.864 [info] UploadPackV2: processing fetch command
02:50:32.865 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.878 [info] UploadPackV2: collected 15 objects, generating pack
02:50:32.879 [info] UploadPackV2: pack generated, 956 bytes
02:50:32.880 [info] UploadPackV2: fetch response 978 bytes
02:50:32.880 [info] UploadPackV2: processing fetch command
02:50:32.881 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.888 [info] UploadPackV2: collected 15 objects, generating pack
02:50:32.889 [info] UploadPackV2: pack generated, 984 bytes
02:50:32.889 [info] UploadPackV2: fetch response 1006 bytes
02:50:32.890 [info] UploadPackV2: processing fetch command
02:50:32.891 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.898 [info] UploadPackV2: collected 15 objects, streaming pack
02:50:32.904 [info] UploadPackV2: processing fetch command
02:50:32.904 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.905 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
02:50:32.905 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
02:50:32.913 [info] UploadPackV2: collected 16 objects, generating pack
02:50:32.914 [info] UploadPackV2: pack generated, 962 bytes
02:50:32.915 [info] UploadPackV2: fetch response 984 bytes
02:50:32.922 [info] UploadPackV2: processing fetch command
02:50:32.922 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.923 [info] UploadPackV2: collected 23 objects, generating pack
02:50:32.924 [info] UploadPackV2: pack generated, 1435 bytes
02:50:32.924 [info] UploadPackV2: fetch response 1457 bytes
02:50:32.927 [info] UploadPackV2: processing fetch command
02:50:32.927 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.928 [info] UploadPackV2: collected 3 objects, generating pack
02:50:32.928 [info] UploadPackV2: pack generated, 191 bytes
02:50:32.928 [info] UploadPackV2: fetch response 213 bytes
02:50:32.932 [info] UploadPackV2: processing fetch command
02:50:32.932 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.934 [info] UploadPackV2: collected 35 objects, generating pack
02:50:32.935 [info] UploadPackV2: pack generated, 2107 bytes
02:50:32.936 [info] UploadPackV2: fetch response 2129 bytes
02:50:32.944 [info] UploadPackV2: processing fetch command
.
02:50:32.944 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:32.945 [info] UploadPackV2: collected 35 objects, generating pack
.
02:50:32.946 [info] UploadPackV2: pack generated, 2123 bytes
.
02:50:32.946 [info] UploadPackV2: fetch response 2145 bytes
.
02:50:32.956 [info] UploadPackV2: processing fetch command
.
02:50:32.957 [info] The function passed as a handler with ID #Reference<0.2279420807.3963617281.213970> 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
.
02:50:33.105 [info] UploadPackV2: processing fetch command
.
02:50:33.125 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:33.125 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:33.143 [info] UploadPackV2: collected 27 objects, generating pack
.
02:50:33.144 [info] UploadPackV2: pack generated, 1624 bytes
02:50:33.144 [info] UploadPackV2: fetch response 1646 bytes
02:50:33.147 [info] UploadPackV2: collected 32 objects, streaming pack
.
02:50:33.225 [info] UploadPackV2: processing fetch command
02:50:33.229 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:33.247 [info] UploadPackV2: collected 23 objects, generating pack
.
02:50:33.248 [info] UploadPackV2: pack generated, 1661 bytes
.
02:50:33.248 [info] UploadPackV2: fetch response 1683 bytes
....
02:50:33.286 [info] UploadPackV2: processing fetch command
.
02:50:33.286 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:33.296 [info] UploadPackV2: collected 14 objects, generating pack
02:50:33.297 [info] UploadPackV2: pack generated, 1062 bytes
02:50:33.298 [info] UploadPackV2: fetch response 1084 bytes
02:50:33.342 [info] UploadPackV2: processing fetch command
.
02:50:33.342 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.347 [info] UploadPackV2: collected 11 objects, generating pack
02:50:33.348 [info] UploadPackV2: pack generated, 819 bytes
02:50:33.348 [info] UploadPackV2: fetch response 841 bytes
02:50:33.372 [info] UploadPackV2: processing fetch command
02:50:33.372 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.382 [info] UploadPackV2: collected 15 objects, generating pack
02:50:33.382 [info] UploadPackV2: pack generated, 1068 bytes
02:50:33.383 [info] UploadPackV2: fetch response 1090 bytes
02:50:33.402 [info] UploadPackV2: processing fetch command
02:50:33.402 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.407 [info] UploadPackV2: collected 6 objects, generating pack
.
02:50:33.407 [info] UploadPackV2: pack generated, 428 bytes
02:50:33.408 [info] UploadPackV2: fetch response 450 bytes
02:50:33.453 [info] UploadPackV2: processing fetch command
02:50:33.453 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.463 [info] UploadPackV2: collected 31 objects, generating pack
02:50:33.464 [info] UploadPackV2: pack generated, 2300 bytes
02:50:33.464 [info] UploadPackV2: fetch response 2322 bytes
02:50:33.494 [info] UploadPackV2: processing fetch command
02:50:33.494 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.495 [info] UploadPackV2: collected 3 objects, generating pack
02:50:33.495 [info] UploadPackV2: pack generated, 214 bytes
02:50:33.495 [info] UploadPackV2: fetch response 236 bytes
02:50:33.507 [info] UploadPackV2: processing fetch command
02:50:33.508 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.509 [info] UploadPackV2: collected 32 objects, generating pack
02:50:33.510 [info] UploadPackV2: pack generated, 2311 bytes
02:50:33.511 [info] UploadPackV2: fetch response 2333 bytes
02:50:33.520 [info] UploadPackV2: streamed pack 2459749 bytes, 32 objects
02:50:33.520 [info] UploadPackV2: fetch streamed 2459749 pack bytes, 32 objects
02:50:33.521 [info] UploadPackV2: processing fetch command
02:50:33.521 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.524 [info] UploadPackV2: collected 24 objects, generating pack
02:50:33.525 [info] UploadPackV2: pack generated, 1677 bytes
02:50:33.526 [info] UploadPackV2: fetch response 1699 bytes
02:50:33.549 [info] UploadPackV2: processing fetch command
02:50:33.549 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.554 [info] UploadPackV2: collected 12 objects, generating pack
02:50:33.554 [info] UploadPackV2: pack generated, 822 bytes
02:50:33.554 [info] UploadPackV2: fetch response 844 bytes
02:50:33.581 [info] UploadPackV2: processing fetch command
02:50:33.581 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.596 [info] UploadPackV2: collected 29 objects, generating pack
.
02:50:33.598 [info] UploadPackV2: pack generated, 2091 bytes
02:50:33.599 [info] UploadPackV2: fetch response 2113 bytes
02:50:33.645 [info] UploadPackV2: processing fetch command
02:50:33.645 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.667 [info] UploadPackV2: collected 23 objects, generating pack
02:50:33.668 [info] UploadPackV2: pack generated, 1642 bytes
02:50:33.669 [info] UploadPackV2: fetch response 1664 bytes
.
02:50:33.732 [info] UploadPackV2: processing fetch command
02:50:33.733 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.753 [info] UploadPackV2: collected 14 objects, generating pack
02:50:33.754 [info] UploadPackV2: pack generated, 1062 bytes
02:50:33.754 [info] UploadPackV2: fetch response 1084 bytes
02:50:33.777 [info] UploadPackV2: processing fetch command
02:50:33.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.783 [info] UploadPackV2: collected 5 objects, generating pack
02:50:33.786 [info] UploadPackV2: pack generated, 424 bytes
02:50:33.786 [info] UploadPackV2: fetch response 446 bytes
.
02:50:33.820 [info] UploadPackV2: processing fetch command
02:50:33.820 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.821 [info] UploadPackV2: collected 11 objects, generating pack
.
02:50:33.822 [info] UploadPackV2: pack generated, 853 bytes
.
02:50:33.822 [info] UploadPackV2: fetch response 875 bytes
02:50:33.829 [info] UploadPackV2: processing fetch command
02:50:33.829 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.831 [info] UploadPackV2: collected 23 objects, generating pack
02:50:33.832 [info] UploadPackV2: pack generated, 1643 bytes
.
02:50:33.832 [info] UploadPackV2: fetch response 1665 bytes
02:50:33.839 [info] UploadPackV2: processing fetch command
02:50:33.839 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:33.842 [info] UploadPackV2: collected 3 objects, generating pack
02:50:33.842 [info] UploadPackV2: pack generated, 195 bytes
02:50:33.843 [info] UploadPackV2: fetch response 217 bytes
02:50:33.851 [info] UploadPackV2: processing fetch command
02:50:33.851 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:33.852 [info] UploadPackV2: collected 32 objects, generating pack
02:50:33.855 [info] UploadPackV2: pack generated, 2311 bytes
02:50:33.855 [info] UploadPackV2: fetch response 2333 bytes
02:50:33.858 [info] UploadPackV2: processing fetch command
02:50:33.858 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:33.869 [info] UploadPackV2: collected 15 objects, generating pack
02:50:33.870 [info] UploadPackV2: pack generated, 984 bytes
02:50:33.870 [info] UploadPackV2: fetch response 1006 bytes
02:50:33.882 [info] UploadPackV2: processing fetch command
02:50:33.882 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.884 [info] UploadPackV2: collected 6 objects, generating pack
02:50:33.884 [info] UploadPackV2: pack generated, 428 bytes
02:50:33.885 [info] UploadPackV2: fetch response 450 bytes
02:50:33.901 [info] UploadPackV2: processing fetch command
02:50:33.901 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.903 [info] UploadPackV2: collected 17 objects, generating pack
02:50:33.904 [info] UploadPackV2: pack generated, 1245 bytes
02:50:33.906 [info] UploadPackV2: fetch response 1267 bytes
.
02:50:33.936 [info] UploadPackV2: processing fetch command
02:50:33.936 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.937 [info] UploadPackV2: collected 17 objects, generating pack
02:50:33.938 [info] UploadPackV2: pack generated, 1278 bytes
02:50:33.939 [info] UploadPackV2: fetch response 1300 bytes
02:50:33.950 [info] UploadPackV2: processing fetch command
02:50:33.950 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.950 [info] UploadPackV2: collected 5 objects, generating pack
02:50:33.951 [info] UploadPackV2: pack generated, 424 bytes
02:50:33.951 [info] UploadPackV2: fetch response 446 bytes
02:50:33.982 [info] UploadPackV2: processing fetch command
02:50:33.982 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:33.994 [info] UploadPackV2: collected 29 objects, generating pack
02:50:33.996 [info] UploadPackV2: pack generated, 2089 bytes
02:50:33.996 [info] UploadPackV2: fetch response 2111 bytes
02:50:34.043 [info] UploadPackV2: processing fetch command
02:50:34.043 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.050 [info] UploadPackV2: collected 18 objects, generating pack
02:50:34.051 [info] UploadPackV2: pack generated, 1281 bytes
02:50:34.051 [info] UploadPackV2: fetch response 1303 bytes
02:50:34.053 [info] UploadPackV2: processing fetch command
02:50:34.053 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:34.067 [info] UploadPackV2: processing fetch command
02:50:34.067 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.069 [info] UploadPackV2: collected 24 objects, generating pack
02:50:34.070 [info] UploadPackV2: pack generated, 1676 bytes
02:50:34.071 [info] UploadPackV2: fetch response 1698 bytes
02:50:34.087 [info] UploadPackV2: processing fetch command
02:50:34.087 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.089 [info] UploadPackV2: collected 8 objects, generating pack
02:50:34.089 [info] UploadPackV2: pack generated, 636 bytes
02:50:34.090 [info] UploadPackV2: fetch response 658 bytes
02:50:34.099 [info] UploadPackV2: processing fetch command
02:50:34.099 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.102 [info] UploadPackV2: collected 15 objects, generating pack
02:50:34.103 [info] UploadPackV2: pack generated, 1068 bytes
.
02:50:34.103 [info] UploadPackV2: fetch response 1090 bytes
02:50:34.119 [info] UploadPackV2: processing fetch command
.
02:50:34.119 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.121 [info] UploadPackV2: collected 31 objects, generating pack
.
02:50:34.122 [info] UploadPackV2: pack generated, 2300 bytes
.
02:50:34.123 [info] UploadPackV2: fetch response 2322 bytes
.
02:50:34.145 [info] UploadPackV2: processing fetch command
.
02:50:34.145 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.148 [info] UploadPackV2: collected 30 objects, generating pack
.
02:50:34.150 [info] UploadPackV2: pack generated, 2073 bytes
02:50:34.150 [info] UploadPackV2: fetch response 2095 bytes
.
02:50:34.163 [info] UploadPackV2: processing fetch command
.
02:50:34.163 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.165 [info] UploadPackV2: collected 15 objects, generating pack
.
02:50:34.165 [info] UploadPackV2: pack generated, 1068 bytes
.
02:50:34.165 [info] UploadPackV2: fetch response 1090 bytes
02:50:34.172 [info] UploadPackV2: collected 700 objects, generating pack
02:50:34.173 [info] UploadPackV2: processing fetch command
02:50:34.173 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.176 [info] UploadPackV2: collected 17 objects, generating pack
.
02:50:34.176 [info] UploadPackV2: pack generated, 1233 bytes
.
02:50:34.176 [info] UploadPackV2: fetch response 1255 bytes
.
02:50:34.194 [info] UploadPackV2: processing fetch command
02:50:34.194 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.198 [info] UploadPackV2: collected 40 objects, generating pack
02:50:34.199 [info] UploadPackV2: pack generated, 2935 bytes
02:50:34.200 [info] UploadPackV2: fetch response 2957 bytes
02:50:34.207 [info] UploadPackV2: pack generated, 48139 bytes
02:50:34.207 [info] UploadPackV2: fetch response 48161 bytes
.
02:50:34.218 [info] UploadPackV2: processing fetch command
.............................................................................................................................................................
02:50:34.218 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.219 [info] UploadPackV2: collected 11 objects, generating pack
02:50:34.220 [info] UploadPackV2: pack generated, 853 bytes
02:50:34.220 [info] UploadPackV2: fetch response 875 bytes
02:50:34.227 [info] UploadPackV2: processing fetch command
.
02:50:34.227 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:50:34.229 [info] UploadPackV2: collected 15 objects, generating pack
02:50:34.229 [info] UploadPackV2: pack generated, 1068 bytes
.
02:50:34.229 [info] UploadPackV2: fetch response 1090 bytes
.
02:50:34.236 [info] UploadPackV2: processing fetch command
.
02:50:34.236 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.237 [info] UploadPackV2: collected 8 objects, generating pack
.
02:50:34.238 [info] UploadPackV2: pack generated, 639 bytes
.
02:50:34.238 [info] UploadPackV2: fetch response 661 bytes
.
02:50:34.245 [info] UploadPackV2: processing fetch command
.
02:50:34.245 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.247 [info] UploadPackV2: collected 17 objects, generating pack
.
02:50:34.247 [info] UploadPackV2: pack generated, 1276 bytes
.
02:50:34.247 [info] UploadPackV2: fetch response 1298 bytes
.
02:50:34.256 [info] UploadPackV2: processing fetch command
.
02:50:34.256 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.258 [info] UploadPackV2: collected 17 objects, generating pack
.
02:50:34.259 [info] UploadPackV2: pack generated, 1276 bytes
.
02:50:34.259 [info] UploadPackV2: fetch response 1298 bytes
.
02:50:34.297 [info] UploadPackV2: processing fetch command
.
02:50:34.297 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.310 [info] UploadPackV2: collected 8 objects, generating pack
.
02:50:34.310 [info] UploadPackV2: pack generated, 639 bytes
02:50:34.312 [info] UploadPackV2: fetch response 661 bytes
.
02:50:34.366 [info] UploadPackV2: processing fetch command
.
02:50:34.366 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.366 [info] UploadPackV2: collected 5 objects, generating pack
.
02:50:34.367 [info] UploadPackV2: pack generated, 424 bytes
.
02:50:34.367 [info] UploadPackV2: fetch response 446 bytes
.
02:50:34.499 [info] UploadPackV2: processing fetch command
.
02:50:34.500 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.535 [info] UploadPackV2: collected 32 objects, generating pack
.
02:50:34.539 [info] UploadPackV2: pack generated, 2301 bytes
.
02:50:34.541 [info] UploadPackV2: fetch response 2323 bytes
.
02:50:34.602 [info] UploadPackV2: processing fetch command
.
02:50:34.604 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:50:34.620 [info] UploadPackV2: collected 20 objects, generating pack
.
02:50:34.626 [info] UploadPackV2: pack generated, 1490 bytes
.
02:50:34.626 [info] UploadPackV2: fetch response 1512 bytes
.
02:50:34.761 [info] UploadPackV2: processing fetch command
.
02:50:34.761 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:34.772 [info] UploadPackV2: collected 32 objects, generating pack
.
02:50:34.967 [info] UploadPackV2: pack generated, 2459812 bytes
.
02:50:34.971 [info] UploadPackV2: fetch response 2460019 bytes
.
02:50:34.971 [info] UploadPackV2: processing fetch command
.
02:50:34.971 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:34.978 [info] UploadPackV2: collected 32 objects, streaming pack
.
02:50:35.110 [info] UploadPackV2: streamed pack 2459812 bytes, 32 objects
.
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
02:50:35.110 [info] UploadPackV2: fetch streamed 2459812 pack bytes, 32 objects
..
02:50:35.113 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
02:50:35.114 [info] UploadPackV2: processing ls-refs command
.
02:50:35.114 [info] UploadPackV2: processing fetch command
.
02:50:35.114 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:50:35.114 [info] UploadPackV2: collected 0 objects, generating pack
.
02:50:35.114 [info] UploadPackV2: pack generated, 32 bytes
.
02:50:35.114 [info] UploadPackV2: fetch response 54 bytes
.
02:50:35.114 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
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
................................................
02:50:39.809 [info] UploadPackV2: processing ls-refs command
02:50:39.811 [info] UploadPackV2: processing fetch command
02:50:39.811 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:50:39.811 [info] UploadPackV2: collected 3 objects, generating pack
02:50:39.812 [info] UploadPackV2: pack generated, 201 bytes
02:50:39.812 [info] UploadPackV2: fetch response 223 bytes
....
02:51:40.173 [info] UploadPackV2: processing ls-refs command
02:51:40.175 [info] UploadPackV2: processing fetch command
02:51:40.175 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:51:40.175 [info] UploadPackV2: collected 3 objects, generating pack
02:51:40.175 [info] UploadPackV2: pack generated, 183 bytes
02:51:40.175 [info] UploadPackV2: fetch response 205 bytes
.
02:51:55.309 [info] UploadPackV2: processing ls-refs command
02:51:55.311 [info] UploadPackV2: processing fetch command
02:51:55.311 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:51:55.311 [info] UploadPackV2: collected 6 objects, generating pack
02:51:55.312 [info] UploadPackV2: pack generated, 365 bytes
02:51:55.312 [info] UploadPackV2: fetch response 387 bytes
.
02:51:55.413 [info] UploadPackV2: processing ls-refs command
02:51:55.415 [info] UploadPackV2: processing fetch command
02:51:55.415 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:51:55.415 [info] UploadPackV2: collected 3 objects, generating pack
02:51:55.416 [info] UploadPackV2: pack generated, 183 bytes
02:51:55.416 [info] UploadPackV2: fetch response 205 bytes
....
02:52:40.773 [info] UploadPackV2: processing ls-refs command
02:52:40.775 [info] UploadPackV2: processing fetch command
02:52:40.775 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:52:40.775 [info] UploadPackV2: collected 6 objects, generating pack
02:52:40.776 [info] UploadPackV2: pack generated, 365 bytes
02:52:40.776 [info] UploadPackV2: fetch response 387 bytes
.***********..................
02:52:55.933 [info] UploadPackV2: processing ls-refs command
02:52:55.935 [info] UploadPackV2: processing fetch command
02:52:55.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:52:55.936 [info] UploadPackV2: collected 3 objects, generating pack
02:52:55.936 [info] UploadPackV2: pack generated, 196 bytes
02:52:55.936 [info] UploadPackV2: fetch response 218 bytes
..
02:53:11.085 [info] UploadPackV2: processing ls-refs command
02:53:11.087 [info] UploadPackV2: processing fetch command
02:53:11.087 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:11.087 [info] UploadPackV2: collected 3 objects, generating pack
02:53:11.088 [info] UploadPackV2: pack generated, 185 bytes
02:53:11.088 [info] UploadPackV2: fetch response 207 bytes
.
02:53:11.165 [info] UploadPackV2: processing ls-refs command
02:53:11.168 [info] UploadPackV2: processing fetch command
02:53:11.168 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
02:53:11.170 [info] UploadPackV2: collected 3 objects, generating pack
02:53:11.170 [info] UploadPackV2: pack generated, 381 bytes
02:53:11.170 [info] UploadPackV2: fetch response 403 bytes
.
02:53:11.241 [info] UploadPackV2: processing ls-refs command
.
02:53:11.297 [info] UploadPackV2: processing ls-refs command
02:53:11.299 [info] UploadPackV2: processing fetch command
02:53:11.299 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:11.301 [info] UploadPackV2: collected 9 objects, generating pack
02:53:11.301 [info] UploadPackV2: pack generated, 585 bytes
02:53:11.301 [info] UploadPackV2: fetch response 681 bytes
.
02:53:11.377 [info] UploadPackV2: processing ls-refs command
02:53:11.381 [info] UploadPackV2: processing fetch command
02:53:11.381 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:53:11.382 [info] UploadPackV2: collected 6 objects, generating pack
02:53:11.382 [info] UploadPackV2: pack generated, 513 bytes
02:53:11.382 [info] UploadPackV2: fetch response 535 bytes
.
02:53:11.449 [info] UploadPackV2: processing ls-refs command
.
02:53:11.513 [info] UploadPackV2: processing ls-refs command
02:53:11.515 [info] UploadPackV2: processing fetch command
02:53:11.515 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:11.515 [info] UploadPackV2: collected 3 objects, generating pack
02:53:11.515 [info] UploadPackV2: pack generated, 216 bytes
02:53:11.516 [info] UploadPackV2: fetch response 312 bytes
02:53:11.581 [info] UploadPackV2: processing ls-refs command
02:53:11.582 [info] UploadPackV2: processing fetch command
02:53:11.582 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:11.583 [info] UploadPackV2: collected 12 objects, generating pack
02:53:11.583 [info] UploadPackV2: pack generated, 768 bytes
02:53:11.583 [info] UploadPackV2: fetch response 1002 bytes
.
02:53:11.649 [info] UploadPackV2: processing ls-refs command
02:53:11.652 [info] UploadPackV2: processing fetch command
02:53:11.652 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
02:53:11.653 [info] UploadPackV2: collected 5 objects, generating pack
02:53:11.653 [info] UploadPackV2: pack generated, 319 bytes
02:53:11.653 [info] UploadPackV2: fetch response 341 bytes
.
02:53:11.729 [info] UploadPackV2: processing ls-refs command
.
02:53:11.789 [info] UploadPackV2: processing ls-refs command
02:53:11.793 [info] UploadPackV2: processing fetch command
02:53:11.793 [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
02:53:11.794 [info] UploadPackV2: collected 6 objects, generating pack
02:53:11.794 [info] UploadPackV2: pack generated, 513 bytes
02:53:11.795 [info] UploadPackV2: fetch response 535 bytes
.
02:53:11.869 [info] UploadPackV2: processing ls-refs command
02:53:11.872 [info] UploadPackV2: processing fetch command
02:53:11.872 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
02:53:11.873 [info] UploadPackV2: collected 3 objects, generating pack
02:53:11.873 [info] UploadPackV2: pack generated, 381 bytes
02:53:11.874 [info] UploadPackV2: fetch response 403 bytes
.
02:53:11.953 [info] UploadPackV2: processing ls-refs command
02:53:11.955 [info] UploadPackV2: processing fetch command
02:53:11.955 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:11.956 [info] UploadPackV2: collected 3 objects, generating pack
02:53:11.956 [info] UploadPackV2: pack generated, 218 bytes
02:53:11.956 [info] UploadPackV2: fetch response 314 bytes
.
02:53:12.037 [info] UploadPackV2: processing ls-refs command
02:53:12.039 [info] UploadPackV2: processing fetch command
02:53:12.039 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:12.039 [info] UploadPackV2: collected 3 objects, generating pack
02:53:12.040 [info] UploadPackV2: pack generated, 216 bytes
02:53:12.040 [info] UploadPackV2: fetch response 312 bytes
.
02:53:12.117 [info] UploadPackV2: processing ls-refs command
02:53:12.119 [info] UploadPackV2: processing fetch command
02:53:12.119 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:12.120 [info] UploadPackV2: collected 9 objects, generating pack
02:53:12.120 [info] UploadPackV2: pack generated, 549 bytes
02:53:12.121 [info] UploadPackV2: fetch response 571 bytes
02:53:12.142 [info] UploadPackV2: processing fetch command
02:53:12.142 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
02:53:12.143 [info] UploadPackV2: fetch response 171 bytes
.
02:53:12.201 [info] UploadPackV2: processing ls-refs command
....*
02:53:12.222 [info] The function passed as a handler with ID "telemetry-test-18466" 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
*
02:53:12.223 [info] UploadPackV2: processing fetch command
**
02:53:12.223 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
*
02:53:12.223 [info] UploadPackV2: collected 3 objects, generating pack
.
02:53:12.223 [info] UploadPackV2: pack generated, 186 bytes
.
02:53:12.223 [info] UploadPackV2: fetch response 208 bytes
02:53:12.224 [info] The function passed as a handler with ID "telemetry-test-18498" 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
02:53:12.224 [info] UploadPackV2: processing fetch command
02:53:12.224 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:12.225 [info] UploadPackV2: collected 3 objects, generating pack
02:53:12.225 [info] UploadPackV2: pack generated, 183 bytes
02:53:12.225 [info] UploadPackV2: fetch response 205 bytes
02:53:12.232 [info] The function passed as a handler with ID "telemetry-test-10180" 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
.
02:53:27.302 [info] The function passed as a handler with ID "telemetry-test-11779" 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
02:53:27.303 [info] UploadPackV2: processing fetch command
02:53:27.303 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
02:53:27.303 [info] UploadPackV2: collected 2 objects, generating pack
02:53:27.304 [info] UploadPackV2: pack generated, 169 bytes
02:53:27.304 [info] UploadPackV2: fetch response 191 bytes
.
02:53:27.307 [info] The function passed as a handler with ID "graph-query-test-10276" 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
..
02:53:27.308 [info] The function passed as a handler with ID "graph-query-test-10340" 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
.......
02:53:27.319 [info] The function passed as a handler with ID "graph-query-test-11397" 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
...***
02:53:27.397 [info] UploadPackV2: processing ls-refs command
02:53:27.399 [info] UploadPackV2: processing fetch command
02:53:27.399 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.406 [info] UploadPackV2: collected 240 objects, generating pack
02:53:27.411 [info] UploadPackV2: pack generated, 16258 bytes
02:53:27.411 [info] UploadPackV2: fetch response 16280 bytes
.
02:53:27.537 [info] UploadPackV2: processing ls-refs command
02:53:27.539 [info] UploadPackV2: processing fetch command
02:53:27.539 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.562 [info] UploadPackV2: collected 600 objects, generating pack
02:53:27.581 [info] UploadPackV2: pack generated, 45197 bytes
02:53:27.581 [info] UploadPackV2: fetch response 45219 bytes
.
02:53:27.622 [info] UploadPackV2: processing fetch command
02:53:27.622 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.623 [info] UploadPackV2: collected 0 objects, generating pack
02:53:27.623 [info] UploadPackV2: pack generated, 32 bytes
02:53:27.623 [info] UploadPackV2: fetch response 54 bytes
.
02:53:27.873 [info] UploadPackV2: processing ls-refs command
.
02:53:27.883 [info] UploadPackV2: processing fetch command
02:53:27.883 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.883 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.883 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.883 [info] UploadPackV2: fetch response 205 bytes
02:53:27.884 [info] UploadPackV2: processing fetch command
02:53:27.884 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.884 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.884 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.884 [info] UploadPackV2: fetch response 205 bytes
02:53:27.884 [info] UploadPackV2: processing fetch command
02:53:27.884 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.884 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.885 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.885 [info] UploadPackV2: fetch response 205 bytes
02:53:27.885 [info] UploadPackV2: processing fetch command
02:53:27.885 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.886 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.886 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.886 [info] UploadPackV2: fetch response 205 bytes
02:53:27.886 [info] UploadPackV2: processing fetch command
02:53:27.886 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.886 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.886 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.886 [info] UploadPackV2: fetch response 205 bytes
02:53:27.887 [info] UploadPackV2: processing fetch command
02:53:27.887 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.887 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.887 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.887 [info] UploadPackV2: fetch response 205 bytes
02:53:27.887 [info] UploadPackV2: processing fetch command
02:53:27.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.888 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.888 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.888 [info] UploadPackV2: fetch response 205 bytes
02:53:27.888 [info] UploadPackV2: processing fetch command
02:53:27.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.889 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.889 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.889 [info] UploadPackV2: fetch response 205 bytes
02:53:27.889 [info] UploadPackV2: processing fetch command
02:53:27.889 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.890 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.890 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.890 [info] UploadPackV2: fetch response 205 bytes
02:53:27.890 [info] UploadPackV2: processing fetch command
02:53:27.890 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.891 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.891 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.891 [info] UploadPackV2: fetch response 205 bytes
02:53:27.891 [info] UploadPackV2: processing fetch command
02:53:27.891 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.892 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.892 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.892 [info] UploadPackV2: fetch response 205 bytes
02:53:27.892 [info] UploadPackV2: processing fetch command
02:53:27.892 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.892 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.893 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.893 [info] UploadPackV2: fetch response 205 bytes
02:53:27.893 [info] UploadPackV2: processing fetch command
02:53:27.893 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.893 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.893 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.893 [info] UploadPackV2: fetch response 205 bytes
02:53:27.894 [info] UploadPackV2: processing fetch command
02:53:27.894 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.894 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.894 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.894 [info] UploadPackV2: fetch response 205 bytes
02:53:27.894 [info] UploadPackV2: processing fetch command
02:53:27.894 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.895 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.895 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.895 [info] UploadPackV2: fetch response 205 bytes
02:53:27.895 [info] UploadPackV2: processing fetch command
02:53:27.896 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.896 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.896 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.896 [info] UploadPackV2: fetch response 205 bytes
02:53:27.896 [info] UploadPackV2: processing fetch command
02:53:27.896 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.897 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.897 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.897 [info] UploadPackV2: fetch response 205 bytes
02:53:27.897 [info] UploadPackV2: processing fetch command
02:53:27.897 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.897 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.897 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.897 [info] UploadPackV2: fetch response 205 bytes
02:53:27.898 [info] UploadPackV2: processing fetch command
02:53:27.898 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.898 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.898 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.898 [info] UploadPackV2: fetch response 205 bytes
02:53:27.898 [info] UploadPackV2: processing fetch command
02:53:27.898 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.899 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.899 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.899 [info] UploadPackV2: fetch response 205 bytes
02:53:27.900 [info] UploadPackV2: processing fetch command
02:53:27.900 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:27.900 [info] UploadPackV2: collected 3 objects, generating pack
02:53:27.900 [info] UploadPackV2: pack generated, 183 bytes
02:53:27.900 [info] UploadPackV2: fetch response 205 bytes
.
02:53:27.949 [info] UploadPackV2: processing ls-refs command
.
02:53:28.069 [info] UploadPackV2: processing ls-refs command
02:53:28.071 [info] UploadPackV2: processing fetch command
02:53:28.071 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:28.072 [info] UploadPackV2: collected 3 objects, generating pack
02:53:28.072 [info] UploadPackV2: pack generated, 231 bytes
02:53:28.072 [info] UploadPackV2: fetch response 327 bytes
.
02:53:28.149 [info] UploadPackV2: processing ls-refs command
02:53:28.151 [info] UploadPackV2: processing fetch command
02:53:28.151 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:28.151 [info] UploadPackV2: collected 6 objects, generating pack
02:53:28.152 [info] UploadPackV2: pack generated, 366 bytes
02:53:28.152 [info] UploadPackV2: fetch response 388 bytes
02:53:28.217 [info] UploadPackV2: processing ls-refs command
02:53:28.218 [info] UploadPackV2: processing fetch command
02:53:28.218 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:53:28.218 [info] UploadPackV2: fetch response 32 bytes
02:53:28.218 [info] UploadPackV2: processing fetch command
02:53:28.218 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:28.219 [info] UploadPackV2: collected 3 objects, generating pack
02:53:28.219 [info] UploadPackV2: pack generated, 183 bytes
02:53:28.219 [info] UploadPackV2: fetch response 205 bytes
.
02:53:28.285 [info] UploadPackV2: processing ls-refs command
02:53:28.287 [info] UploadPackV2: processing fetch command
02:53:28.287 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:28.288 [info] UploadPackV2: collected 6 objects, generating pack
02:53:28.288 [info] UploadPackV2: pack generated, 365 bytes
02:53:28.288 [info] UploadPackV2: fetch response 387 bytes
02:53:28.290 [info] UploadPackV2: processing ls-refs command
02:53:28.292 [info] UploadPackV2: processing fetch command
02:53:28.292 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:28.293 [info] UploadPackV2: collected 6 objects, generating pack
02:53:28.294 [info] UploadPackV2: pack generated, 365 bytes
02:53:28.294 [info] UploadPackV2: fetch response 387 bytes
.
02:53:28.405 [info] UploadPackV2: processing ls-refs command
02:53:28.407 [info] UploadPackV2: processing fetch command
02:53:28.407 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:28.409 [info] UploadPackV2: collected 6 objects, generating pack
02:53:28.409 [info] UploadPackV2: pack generated, 365 bytes
02:53:28.410 [info] UploadPackV2: fetch response 387 bytes
.
02:53:43.481 [info] UploadPackV2: processing ls-refs command
02:53:43.482 [info] UploadPackV2: processing fetch command
02:53:43.482 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:43.482 [info] UploadPackV2: collected 3 objects, generating pack
02:53:43.482 [info] UploadPackV2: pack generated, 216 bytes
02:53:43.482 [info] UploadPackV2: fetch response 346 bytes
.
02:53:43.489 [info] UploadPackV2: processing fetch command
.
02:53:43.489 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:43.490 [info] UploadPackV2: collected 3 objects, generating pack
02:53:43.490 [info] UploadPackV2: pack generated, 183 bytes
02:53:43.490 [info] UploadPackV2: fetch response 205 bytes
02:53:43.565 [info] UploadPackV2: processing ls-refs command
02:53:43.567 [info] UploadPackV2: processing fetch command
02:53:43.567 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:43.570 [info] UploadPackV2: collected 90 objects, generating pack
02:53:43.572 [info] UploadPackV2: pack generated, 5649 bytes
02:53:43.572 [info] UploadPackV2: fetch response 5671 bytes
02:53:43.889 [info] UploadPackV2: processing ls-refs command
.
02:53:44.041 [info] UploadPackV2: processing ls-refs command
02:53:44.043 [info] UploadPackV2: processing fetch command
02:53:44.043 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:44.043 [info] UploadPackV2: collected 6 objects, generating pack
02:53:44.044 [info] UploadPackV2: pack generated, 365 bytes
02:53:44.044 [info] UploadPackV2: fetch response 387 bytes
02:53:46.373 [info] UploadPackV2: processing ls-refs command
.
02:53:46.433 [info] UploadPackV2: processing ls-refs command
02:53:46.435 [info] UploadPackV2: processing fetch command
02:53:46.435 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.435 [info] UploadPackV2: collected 6 objects, generating pack
02:53:46.436 [info] UploadPackV2: pack generated, 365 bytes
02:53:46.436 [info] UploadPackV2: fetch response 387 bytes
02:53:46.478 [info] UploadPackV2: processing fetch command
02:53:46.478 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
02:53:46.479 [info] UploadPackV2: fetch response 122 bytes
.
02:53:46.533 [info] UploadPackV2: processing ls-refs command
02:53:46.535 [info] UploadPackV2: processing fetch command
02:53:46.535 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.535 [info] UploadPackV2: collected 9 objects, generating pack
02:53:46.536 [info] UploadPackV2: pack generated, 547 bytes
02:53:46.536 [info] UploadPackV2: fetch response 569 bytes
02:53:46.609 [info] UploadPackV2: processing ls-refs command
.
02:53:46.636 [info] UploadPackV2: processing ls-refs command
02:53:46.639 [info] UploadPackV2: processing fetch command
02:53:46.639 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.640 [info] UploadPackV2: collected 3 objects, generating pack
02:53:46.640 [info] UploadPackV2: pack generated, 183 bytes
02:53:46.640 [info] UploadPackV2: fetch response 205 bytes
.
02:53:46.680 [info] UploadPackV2: processing ls-refs command
02:53:46.683 [info] UploadPackV2: processing fetch command
02:53:46.683 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.684 [info] UploadPackV2: collected 15 objects, generating pack
02:53:46.684 [info] UploadPackV2: pack generated, 919 bytes
02:53:46.684 [info] UploadPackV2: fetch response 941 bytes
.
02:53:46.787 [info] UploadPackV2: processing fetch command
02:53:46.787 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.788 [info] UploadPackV2: collected 3 objects, generating pack
02:53:46.788 [info] UploadPackV2: pack generated, 183 bytes
02:53:46.788 [info] UploadPackV2: fetch response 205 bytes
.
02:53:46.815 [info] UploadPackV2: processing ls-refs command
02:53:46.818 [info] UploadPackV2: processing fetch command
02:53:46.818 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.819 [info] UploadPackV2: collected 9 objects, generating pack
02:53:46.819 [info] UploadPackV2: pack generated, 549 bytes
02:53:46.819 [info] UploadPackV2: fetch response 571 bytes
02:53:46.853 [info] UploadPackV2: processing ls-refs command
.
02:53:46.892 [info] UploadPackV2: processing ls-refs command
02:53:46.895 [info] UploadPackV2: processing fetch command
02:53:46.895 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.900 [info] UploadPackV2: collected 180 objects, generating pack
02:53:46.903 [info] UploadPackV2: pack generated, 11106 bytes
02:53:46.903 [info] UploadPackV2: fetch response 11128 bytes
..
02:53:46.986 [info] UploadPackV2: processing ls-refs command
02:53:46.989 [info] UploadPackV2: processing fetch command
02:53:46.989 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:46.990 [info] UploadPackV2: collected 6 objects, generating pack
02:53:46.990 [info] UploadPackV2: pack generated, 366 bytes
02:53:46.990 [info] UploadPackV2: fetch response 388 bytes
02:53:47.026 [info] UploadPackV2: processing ls-refs command
.**....
02:53:48.327 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303410237" 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
02:53:48.327 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303410205" 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
.
02:53:48.328 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303410173" 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
02:53:48.328 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303410141" 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
.
02:53:48.329 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303410109" 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
02:53:48.329 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303410077" 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
.
02:53:48.330 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303410045" 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
02:53:48.331 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303410013" 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
.
02:53:48.385 [info] UploadPackV2: processing ls-refs command
02:53:48.387 [info] UploadPackV2: processing fetch command
02:53:48.387 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:48.387 [info] UploadPackV2: collected 3 objects, generating pack
02:53:48.387 [info] UploadPackV2: pack generated, 196 bytes
02:53:48.388 [info] UploadPackV2: fetch response 218 bytes
.
02:53:48.457 [info] UploadPackV2: processing ls-refs command
02:53:48.459 [info] UploadPackV2: processing fetch command
02:53:48.459 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:48.460 [info] UploadPackV2: collected 15 objects, generating pack
02:53:48.460 [info] UploadPackV2: pack generated, 952 bytes
02:53:48.460 [info] UploadPackV2: fetch response 974 bytes
.
02:53:48.533 [info] UploadPackV2: processing ls-refs command
02:53:48.535 [info] UploadPackV2: processing fetch command
02:53:48.535 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:53:48.535 [info] UploadPackV2: collected 3 objects, generating pack
02:53:48.535 [info] UploadPackV2: pack generated, 185 bytes
02:53:48.535 [info] UploadPackV2: fetch response 207 bytes
02:53:48.601 [info] UploadPackV2: processing ls-refs command
.
02:53:48.673 [info] UploadPackV2: processing ls-refs command
02:53:48.674 [info] UploadPackV2: processing fetch command
02:53:48.674 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:53:48.674 [info] UploadPackV2: collected 3 objects, generating pack
02:53:48.675 [info] UploadPackV2: pack generated, 200 bytes
02:53:48.675 [info] UploadPackV2: fetch response 256 bytes
...........
Finished in 209.6 seconds (20.6s async, 188.9s sync)
Result: 1063 passed (15 properties, 1048 tests), 21 skipped, 58 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...