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: Jul 01, 2026 at 19:44 UTC Completed: Jul 01, 2026 at 19:47 UTC Duration: 3m 39s
Exit code: 0

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 803438, max_cases: 8
Excluding tags: [:s3]
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
.........................................
19:44:24.339 [info] The function passed as a handler with ID #Reference<0.699379320.1921515521.237554> 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
.............
19:44:24.422 [info] The function passed as a handler with ID "test-fail-#Reference<0.699379320.1921515523.231847>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
.........
19:44:24.502 [info] The function passed as a handler with ID "test-#Reference<0.699379320.1921515522.233863>" 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 "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: the variable "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 "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: default values for the optional arguments in the private function http_post/4 are never used
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
..................................................................................................................................................................................
19:44:26.910 [info] UploadPackV2: processing fetch command
.
19:44:26.910 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:26.910 [info] UploadPackV2: collected 3 objects, generating pack
.
19:44:26.910 [info] UploadPackV2: pack generated, 191 bytes
.
19:44:26.911 [info] UploadPackV2: fetch response 213 bytes
.
19:44:26.928 [info] UploadPackV2: processing fetch command
.
19:44:26.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:26.932 [info] UploadPackV2: collected 90 objects, generating pack
.
19:44:26.936 [info] UploadPackV2: pack generated, 5946 bytes
.
19:44:26.936 [info] UploadPackV2: fetch response 5968 bytes
.
19:44:26.947 [info] UploadPackV2: processing fetch command
.
19:44:26.948 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:26.948 [info] UploadPackV2: collected 6 objects, generating pack
.
19:44:26.949 [info] UploadPackV2: pack generated, 414 bytes
.
19:44:26.949 [info] UploadPackV2: fetch response 436 bytes
.
19:44:26.950 [info] UploadPackV2: processing fetch command
.
19:44:26.950 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:26.950 [info] UploadPackV2: collected 0 objects, generating pack
.
19:44:26.950 [info] UploadPackV2: pack generated, 32 bytes
.
19:44:26.950 [info] UploadPackV2: fetch response 54 bytes
.
19:44:26.951 [info] UploadPackV2: processing fetch command
.
19:44:26.951 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:26.951 [info] UploadPackV2: collected 3 objects, generating pack
19:44:26.951 [info] UploadPackV2: pack generated, 191 bytes
19:44:26.951 [info] UploadPackV2: fetch response 213 bytes
19:44:26.952 [info] UploadPackV2: processing ls-refs command
...
19:44:27.114 [info] UploadPackV2: processing fetch command
.
19:44:27.114 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.............
19:44:27.164 [info] UploadPackV2: collected 32 objects, generating pack
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
............................................
19:44:27.465 [info] UploadPackV2: pack generated, 2459820 bytes
.
19:44:27.479 [info] UploadPackV2: fetch response 2460027 bytes
19:44:27.479 [info] UploadPackV2: processing fetch command
19:44:27.479 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
19:44:27.500 [info] UploadPackV2: collected 32 objects, streaming pack
..........
19:44:27.863 [info] UploadPackV2: streamed pack 2459820 bytes, 32 objects
.
19:44:27.863 [info] UploadPackV2: fetch streamed 2459820 pack bytes, 32 objects
.................................
19:44:29.478 [warning] post_receive hook failed: "webhook failed"
....
19:44:29.494 [info] UploadPackV2: processing fetch command
.
19:44:29.494 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:29.501 [info] UploadPackV2: collected 3 objects, generating pack
.
19:44:29.501 [info] UploadPackV2: pack generated, 194 bytes
.
19:44:29.502 [info] UploadPackV2: fetch response 216 bytes
.
19:44:29.506 [info] UploadPackV2: processing fetch command
..
19:44:29.506 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.507 [info] UploadPackV2: collected 9 objects, streaming pack
19:44:29.508 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
19:44:29.508 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
19:44:29.687 [info] UploadPackV2: processing ls-refs command
19:44:29.693 [info] UploadPackV2: processing fetch command
19:44:29.693 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.703 [info] UploadPackV2: collected 3 objects, generating pack
19:44:29.703 [info] UploadPackV2: pack generated, 210 bytes
19:44:29.704 [info] UploadPackV2: fetch response 232 bytes
....................................................
19:44:29.962 [info] UploadPackV2: processing fetch command
.
19:44:29.962 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
19:44:29.963 [info] UploadPackV2: fetch response 73 bytes
.
19:44:29.963 [info] UploadPackV2: processing fetch command
.
19:44:29.963 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
19:44:29.963 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
19:44:29.963 [info] UploadPackV2: processing fetch command
..
19:44:29.964 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.964 [info] UploadPackV2: collected 3 objects, generating pack
19:44:29.964 [info] UploadPackV2: pack generated, 195 bytes
19:44:29.964 [info] UploadPackV2: fetch response 217 bytes
19:44:29.964 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
19:44:29.965 [info] UploadPackV2: processing ls-refs command
19:44:29.967 [info] UploadPackV2: processing fetch command
19:44:29.967 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.967 [info] UploadPackV2: collected 3 objects, generating pack
19:44:29.967 [info] UploadPackV2: pack generated, 223 bytes
19:44:29.968 [info] UploadPackV2: fetch response 245 bytes
19:44:29.969 [info] UploadPackV2: processing fetch command
19:44:29.969 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.972 [info] UploadPackV2: collected 3 objects, generating pack
19:44:29.973 [info] UploadPackV2: pack generated, 195 bytes
19:44:29.973 [info] UploadPackV2: fetch response 217 bytes
19:44:29.975 [info] UploadPackV2: processing fetch command
19:44:29.975 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.976 [info] UploadPackV2: collected 15 objects, generating pack
19:44:29.976 [info] UploadPackV2: pack generated, 984 bytes
19:44:29.976 [info] UploadPackV2: fetch response 1006 bytes
19:44:29.988 [info] UploadPackV2: processing fetch command
19:44:29.988 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.989 [info] UploadPackV2: collected 15 objects, generating pack
19:44:29.990 [info] UploadPackV2: pack generated, 984 bytes
19:44:29.990 [info] UploadPackV2: fetch response 1006 bytes
19:44:29.990 [info] UploadPackV2: processing fetch command
19:44:29.990 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:29.991 [info] UploadPackV2: collected 15 objects, streaming pack
19:44:29.992 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
19:44:29.992 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.........
19:44:30.304 [info] UploadPackV2: processing fetch command
.
19:44:30.304 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:30.325 [info] UploadPackV2: collected 32 objects, streaming pack
............
19:44:30.832 [info] UploadPackV2: streamed pack 2459748 bytes, 32 objects
19:44:30.832 [info] UploadPackV2: fetch streamed 2459748 pack bytes, 32 objects
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
..........................................................
19:44:31.250 [info] UploadPackV2: processing ls-refs command
.
19:44:31.251 [info] UploadPackV2: processing ls-refs command
.....
19:44:31.421 [info] The function passed as a handler with ID #Reference<0.699379320.1921515521.249605> 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
...
19:44:31.450 [info] UploadPackV2: processing fetch command
19:44:31.450 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...................
19:44:31.561 [info] UploadPackV2: collected 700 objects, generating pack
.
19:44:31.594 [info] UploadPackV2: pack generated, 48139 bytes
19:44:31.594 [info] UploadPackV2: fetch response 48161 bytes
.
19:44:31.731 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
19:44:31.731 [info] UploadPackV2: processing ls-refs command
.
19:44:31.735 [info] UploadPackV2: processing fetch command
19:44:31.736 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:31.736 [info] UploadPackV2: collected 3 objects, generating pack
19:44:31.736 [info] UploadPackV2: pack generated, 206 bytes
19:44:31.736 [info] UploadPackV2: fetch response 228 bytes
.
19:44:31.749 [info] UploadPackV2: processing fetch command
.
19:44:31.749 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:31.749 [info] UploadPackV2: collected 3 objects, streaming pack
19:44:31.762 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
19:44:31.762 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
19:44:31.768 [info] UploadPackV2: processing fetch command
19:44:31.768 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:31.769 [info] UploadPackV2: collected 3 objects, generating pack
19:44:31.771 [info] UploadPackV2: pack generated, 191 bytes
19:44:31.771 [info] UploadPackV2: fetch response 213 bytes
................
19:44:31.928 [info] UploadPackV2: processing fetch command
19:44:31.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
19:44:32.043 [info] UploadPackV2: collected 600 objects, generating pack
.......
19:44:32.066 [info] UploadPackV2: pack generated, 39862 bytes
.
19:44:32.067 [info] UploadPackV2: fetch response 39884 bytes
..
19:44:32.154 [info] UploadPackV2: processing fetch command
.
19:44:32.154 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:32.155 [info] UploadPackV2: collected 3 objects, streaming pack
19:44:32.156 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
19:44:32.156 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
497 │ {_tip, parent} =
│ ~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
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 "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: module attribute @git_lfs_available was set but never used
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
warning: the variable "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: 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
.................................................................................................................................................................................................................
19:44:36.251 [info] UploadPackV2: processing fetch command
19:44:36.251 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.276 [info] UploadPackV2: collected 20 objects, generating pack
.
19:44:36.278 [info] UploadPackV2: pack generated, 1203 bytes
19:44:36.283 [info] UploadPackV2: fetch response 1225 bytes
....
19:44:36.353 [info] UploadPackV2: processing fetch command
19:44:36.353 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:36.379 [info] UploadPackV2: collected 24 objects, generating pack
..
19:44:36.380 [info] UploadPackV2: pack generated, 1443 bytes
.
19:44:36.382 [info] UploadPackV2: fetch response 1465 bytes
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
...
19:44:36.462 [info] UploadPackV2: processing fetch command
19:44:36.462 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.492 [info] UploadPackV2: collected 39 objects, generating pack
19:44:36.493 [info] UploadPackV2: pack generated, 2365 bytes
19:44:36.493 [info] UploadPackV2: fetch response 2387 bytes
...
19:44:36.536 [info] UploadPackV2: processing fetch command
.
19:44:36.536 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
......
19:44:36.573 [info] UploadPackV2: collected 43 objects, generating pack
19:44:36.574 [info] UploadPackV2: pack generated, 2578 bytes
19:44:36.574 [info] UploadPackV2: fetch response 2600 bytes
....
19:44:36.606 [info] UploadPackV2: processing fetch command
19:44:36.606 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.607 [info] UploadPackV2: collected 24 objects, generating pack
19:44:36.610 [info] UploadPackV2: pack generated, 1443 bytes
19:44:36.610 [info] UploadPackV2: fetch response 1465 bytes
19:44:36.624 [info] UploadPackV2: processing fetch command
19:44:36.624 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
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
19:44:36.632 [info] UploadPackV2: collected 58 objects, generating pack
19:44:36.635 [info] UploadPackV2: pack generated, 3535 bytes
19:44:36.636 [info] UploadPackV2: fetch response 3557 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
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
19:44:36.653 [info] UploadPackV2: processing fetch command
19:44:36.653 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.655 [info] UploadPackV2: collected 26 objects, generating pack
19:44:36.656 [info] UploadPackV2: pack generated, 1618 bytes
19:44:36.656 [info] UploadPackV2: fetch response 1640 bytes
19:44:36.664 [info] UploadPackV2: processing fetch command
.
19:44:36.664 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.666 [info] UploadPackV2: collected 16 objects, generating pack
19:44:36.667 [info] UploadPackV2: pack generated, 962 bytes
19:44:36.667 [info] UploadPackV2: fetch response 984 bytes
19:44:36.676 [info] UploadPackV2: processing fetch command
19:44:36.676 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.678 [info] UploadPackV2: collected 43 objects, generating pack
19:44:36.679 [info] UploadPackV2: pack generated, 2574 bytes
19:44:36.679 [info] UploadPackV2: fetch response 2596 bytes
19:44:36.684 [info] UploadPackV2: processing fetch command
19:44:36.684 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.689 [info] UploadPackV2: collected 7 objects, generating pack
19:44:36.689 [info] UploadPackV2: pack generated, 475 bytes
19:44:36.689 [info] UploadPackV2: fetch response 497 bytes
19:44:36.692 [info] UploadPackV2: processing fetch command
19:44:36.692 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.693 [info] UploadPackV2: collected 23 objects, generating pack
19:44:36.694 [info] UploadPackV2: pack generated, 1435 bytes
19:44:36.694 [info] UploadPackV2: fetch response 1457 bytes
19:44:36.699 [info] UploadPackV2: processing fetch command
19:44:36.699 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.702 [info] UploadPackV2: collected 42 objects, generating pack
19:44:36.703 [info] UploadPackV2: pack generated, 2578 bytes
19:44:36.703 [info] UploadPackV2: fetch response 2600 bytes
19:44:36.714 [info] UploadPackV2: processing fetch command
19:44:36.714 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:36.715 [info] UploadPackV2: collected 4 objects, generating pack
19:44:36.716 [info] UploadPackV2: pack generated, 241 bytes
19:44:36.716 [info] UploadPackV2: fetch response 263 bytes
19:44:36.719 [info] UploadPackV2: processing fetch command
19:44:36.719 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.721 [info] UploadPackV2: collected 27 objects, generating pack
19:44:36.721 [info] UploadPackV2: pack generated, 1625 bytes
19:44:36.722 [info] UploadPackV2: fetch response 1647 bytes
19:44:36.726 [info] UploadPackV2: processing fetch command
19:44:36.726 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.727 [info] UploadPackV2: collected 19 objects, generating pack
19:44:36.727 [info] UploadPackV2: pack generated, 1194 bytes
19:44:36.727 [info] UploadPackV2: fetch response 1216 bytes
19:44:36.731 [info] UploadPackV2: processing fetch command
19:44:36.731 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.731 [info] UploadPackV2: collected 7 objects, generating pack
19:44:36.732 [info] UploadPackV2: pack generated, 475 bytes
19:44:36.732 [info] UploadPackV2: fetch response 497 bytes
19:44:36.737 [info] UploadPackV2: processing fetch command
19:44:36.738 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.741 [info] UploadPackV2: collected 50 objects, generating pack
19:44:36.742 [info] UploadPackV2: pack generated, 3053 bytes
19:44:36.742 [info] UploadPackV2: fetch response 3075 bytes
19:44:36.756 [info] UploadPackV2: processing fetch command
19:44:36.756 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.759 [info] UploadPackV2: collected 54 objects, generating pack
19:44:36.760 [info] UploadPackV2: pack generated, 3302 bytes
19:44:36.760 [info] UploadPackV2: fetch response 3324 bytes
.
19:44:36.772 [info] UploadPackV2: processing fetch command
19:44:36.772 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.774 [info] UploadPackV2: collected 19 objects, generating pack
19:44:36.775 [info] UploadPackV2: pack generated, 1196 bytes
19:44:36.775 [info] UploadPackV2: fetch response 1218 bytes
19:44:36.782 [info] UploadPackV2: processing fetch command
19:44:36.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.785 [info] UploadPackV2: collected 15 objects, generating pack
19:44:36.785 [info] UploadPackV2: pack generated, 958 bytes
19:44:36.785 [info] UploadPackV2: fetch response 980 bytes
19:44:36.794 [info] UploadPackV2: processing fetch command
19:44:36.794 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.796 [info] UploadPackV2: collected 27 objects, generating pack
19:44:36.797 [info] UploadPackV2: pack generated, 1624 bytes
19:44:36.797 [info] UploadPackV2: fetch response 1646 bytes
19:44:36.802 [info] UploadPackV2: processing fetch command
19:44:36.804 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.806 [info] UploadPackV2: collected 35 objects, generating pack
19:44:36.807 [info] UploadPackV2: pack generated, 2128 bytes
19:44:36.807 [info] UploadPackV2: fetch response 2150 bytes
19:44:36.815 [info] UploadPackV2: processing fetch command
19:44:36.815 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.816 [info] UploadPackV2: collected 23 objects, generating pack
19:44:36.817 [info] UploadPackV2: pack generated, 1437 bytes
19:44:36.817 [info] UploadPackV2: fetch response 1459 bytes
19:44:36.820 [info] UploadPackV2: processing fetch command
19:44:36.821 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.822 [info] UploadPackV2: collected 12 objects, generating pack
19:44:36.823 [info] UploadPackV2: pack generated, 723 bytes
19:44:36.824 [info] UploadPackV2: fetch response 745 bytes
19:44:36.834 [info] UploadPackV2: processing fetch command
19:44:36.834 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.835 [info] UploadPackV2: collected 15 objects, generating pack
19:44:36.835 [info] UploadPackV2: pack generated, 958 bytes
19:44:36.835 [info] UploadPackV2: fetch response 980 bytes
19:44:36.842 [info] UploadPackV2: processing fetch command
19:44:36.842 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.843 [info] UploadPackV2: collected 12 objects, generating pack
19:44:36.843 [info] UploadPackV2: pack generated, 723 bytes
19:44:36.843 [info] UploadPackV2: fetch response 745 bytes
19:44:36.851 [info] UploadPackV2: processing fetch command
19:44:36.851 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.853 [info] UploadPackV2: collected 19 objects, generating pack
19:44:36.853 [info] UploadPackV2: pack generated, 1196 bytes
19:44:36.853 [info] UploadPackV2: fetch response 1218 bytes
19:44:36.859 [info] UploadPackV2: processing fetch command
19:44:36.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.861 [info] UploadPackV2: collected 26 objects, generating pack
19:44:36.862 [info] UploadPackV2: pack generated, 1618 bytes
19:44:36.862 [info] UploadPackV2: fetch response 1640 bytes
.
19:44:36.870 [info] UploadPackV2: processing fetch command
19:44:36.870 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.872 [info] UploadPackV2: collected 34 objects, generating pack
19:44:36.873 [info] UploadPackV2: pack generated, 2101 bytes
19:44:36.873 [info] UploadPackV2: fetch response 2123 bytes
19:44:36.878 [info] UploadPackV2: processing fetch command
19:44:36.878 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.879 [info] UploadPackV2: collected 12 objects, generating pack
19:44:36.880 [info] UploadPackV2: pack generated, 723 bytes
19:44:36.880 [info] UploadPackV2: fetch response 745 bytes
.
19:44:36.882 [info] UploadPackV2: processing fetch command
19:44:36.882 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.883 [info] UploadPackV2: collected 4 objects, generating pack
19:44:36.883 [info] UploadPackV2: pack generated, 241 bytes
19:44:36.883 [info] UploadPackV2: fetch response 263 bytes
19:44:36.888 [info] UploadPackV2: processing fetch command
19:44:36.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.889 [info] UploadPackV2: collected 15 objects, generating pack
19:44:36.890 [info] UploadPackV2: pack generated, 956 bytes
19:44:36.890 [info] UploadPackV2: fetch response 978 bytes
19:44:36.896 [info] UploadPackV2: processing fetch command
19:44:36.896 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.898 [info] UploadPackV2: collected 24 objects, generating pack
19:44:36.899 [info] UploadPackV2: pack generated, 1443 bytes
19:44:36.899 [info] UploadPackV2: fetch response 1465 bytes
19:44:36.905 [info] UploadPackV2: processing fetch command
19:44:36.905 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:36.908 [info] UploadPackV2: collected 20 objects, generating pack
19:44:36.908 [info] UploadPackV2: pack generated, 1203 bytes
19:44:36.908 [info] UploadPackV2: fetch response 1225 bytes
19:44:36.912 [info] UploadPackV2: processing fetch command
19:44:36.912 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.913 [info] UploadPackV2: collected 7 objects, generating pack
19:44:36.913 [info] UploadPackV2: pack generated, 475 bytes
19:44:36.913 [info] UploadPackV2: fetch response 497 bytes
19:44:36.919 [info] UploadPackV2: processing fetch command
19:44:36.919 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.924 [info] UploadPackV2: collected 27 objects, generating pack
19:44:36.925 [info] UploadPackV2: pack generated, 1678 bytes
19:44:36.925 [info] UploadPackV2: fetch response 1700 bytes
.
19:44:36.934 [info] UploadPackV2: processing fetch command
19:44:36.934 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.935 [info] UploadPackV2: collected 16 objects, generating pack
19:44:36.936 [info] UploadPackV2: pack generated, 962 bytes
19:44:36.936 [info] UploadPackV2: fetch response 984 bytes
19:44:36.946 [info] UploadPackV2: processing fetch command
19:44:36.946 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.947 [info] UploadPackV2: collected 23 objects, generating pack
19:44:36.948 [info] UploadPackV2: pack generated, 1435 bytes
19:44:36.948 [info] UploadPackV2: fetch response 1457 bytes
19:44:36.960 [info] UploadPackV2: processing fetch command
19:44:36.960 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.960 [info] UploadPackV2: collected 8 objects, generating pack
19:44:36.961 [info] UploadPackV2: pack generated, 482 bytes
19:44:36.961 [info] UploadPackV2: fetch response 504 bytes
19:44:36.967 [info] UploadPackV2: processing fetch command
19:44:36.967 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.971 [info] UploadPackV2: collected 43 objects, generating pack
19:44:36.972 [info] UploadPackV2: pack generated, 2586 bytes
19:44:36.972 [info] UploadPackV2: fetch response 2608 bytes
19:44:36.978 [info] UploadPackV2: processing fetch command
19:44:36.979 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.981 [info] UploadPackV2: collected 27 objects, generating pack
19:44:36.982 [info] UploadPackV2: pack generated, 1678 bytes
19:44:36.982 [info] UploadPackV2: fetch response 1700 bytes
19:44:36.992 [info] UploadPackV2: processing fetch command
19:44:36.992 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:36.996 [info] UploadPackV2: collected 64 objects, generating pack
19:44:36.997 [info] UploadPackV2: pack generated, 3783 bytes
19:44:36.998 [info] UploadPackV2: fetch response 3805 bytes
19:44:37.007 [info] UploadPackV2: processing fetch command
19:44:37.007 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.009 [info] UploadPackV2: collected 20 objects, generating pack
19:44:37.009 [info] UploadPackV2: pack generated, 1203 bytes
19:44:37.009 [info] UploadPackV2: fetch response 1225 bytes
.
19:44:37.019 [info] UploadPackV2: processing fetch command
19:44:37.019 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.022 [info] UploadPackV2: collected 44 objects, generating pack
19:44:37.024 [info] UploadPackV2: pack generated, 2583 bytes
19:44:37.024 [info] UploadPackV2: fetch response 2605 bytes
19:44:37.031 [info] UploadPackV2: processing fetch command
19:44:37.032 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.033 [info] UploadPackV2: collected 20 objects, generating pack
19:44:37.034 [info] UploadPackV2: pack generated, 1203 bytes
19:44:37.034 [info] UploadPackV2: fetch response 1225 bytes
19:44:37.038 [info] UploadPackV2: processing fetch command
19:44:37.039 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.039 [info] UploadPackV2: collected 15 objects, generating pack
19:44:37.040 [info] UploadPackV2: pack generated, 956 bytes
19:44:37.040 [info] UploadPackV2: fetch response 978 bytes
19:44:37.053 [info] UploadPackV2: processing fetch command
19:44:37.053 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.055 [info] UploadPackV2: collected 38 objects, generating pack
19:44:37.056 [info] UploadPackV2: pack generated, 2331 bytes
19:44:37.056 [info] UploadPackV2: fetch response 2353 bytes
19:44:37.072 [info] UploadPackV2: processing fetch command
19:44:37.072 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.074 [info] UploadPackV2: collected 23 objects, generating pack
19:44:37.074 [info] UploadPackV2: pack generated, 1435 bytes
19:44:37.074 [info] UploadPackV2: fetch response 1457 bytes
19:44:37.082 [info] UploadPackV2: processing fetch command
19:44:37.083 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.084 [info] UploadPackV2: collected 23 objects, generating pack
19:44:37.085 [info] UploadPackV2: pack generated, 1435 bytes
19:44:37.085 [info] UploadPackV2: fetch response 1457 bytes
.
19:44:37.094 [info] UploadPackV2: processing fetch command
.
19:44:37.094 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.095 [info] UploadPackV2: collected 11 objects, generating pack
.
19:44:37.096 [info] UploadPackV2: pack generated, 717 bytes
.
19:44:37.096 [info] UploadPackV2: fetch response 739 bytes
.
19:44:37.109 [info] UploadPackV2: processing fetch command
19:44:37.109 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
19:44:37.113 [info] UploadPackV2: collected 39 objects, generating pack
.
19:44:37.116 [info] UploadPackV2: pack generated, 2347 bytes
.
19:44:37.116 [info] UploadPackV2: fetch response 2369 bytes
19:44:37.128 [info] UploadPackV2: processing fetch command
19:44:37.128 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.128 [info] UploadPackV2: collected 4 objects, generating pack
19:44:37.128 [info] UploadPackV2: pack generated, 241 bytes
19:44:37.128 [info] UploadPackV2: fetch response 263 bytes
19:44:37.132 [info] UploadPackV2: processing fetch command
19:44:37.132 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.133 [info] UploadPackV2: collected 4 objects, generating pack
19:44:37.133 [info] UploadPackV2: pack generated, 241 bytes
19:44:37.133 [info] UploadPackV2: fetch response 263 bytes
19:44:37.137 [info] UploadPackV2: processing fetch command
19:44:37.139 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.140 [info] UploadPackV2: collected 15 objects, generating pack
19:44:37.145 [info] UploadPackV2: pack generated, 956 bytes
19:44:37.145 [info] UploadPackV2: fetch response 978 bytes
19:44:37.150 [info] UploadPackV2: processing fetch command
19:44:37.150 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.151 [info] UploadPackV2: collected 11 objects, generating pack
19:44:37.152 [info] UploadPackV2: pack generated, 717 bytes
19:44:37.152 [info] UploadPackV2: fetch response 739 bytes
19:44:37.155 [info] UploadPackV2: processing fetch command
19:44:37.155 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.155 [info] UploadPackV2: collected 12 objects, generating pack
19:44:37.156 [info] UploadPackV2: pack generated, 723 bytes
19:44:37.156 [info] UploadPackV2: fetch response 745 bytes
19:44:37.158 [info] UploadPackV2: processing fetch command
19:44:37.158 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.159 [info] UploadPackV2: collected 4 objects, generating pack
19:44:37.159 [info] UploadPackV2: pack generated, 241 bytes
19:44:37.160 [info] UploadPackV2: fetch response 263 bytes
19:44:37.162 [info] UploadPackV2: processing fetch command
19:44:37.162 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.163 [info] UploadPackV2: collected 12 objects, generating pack
19:44:37.164 [info] UploadPackV2: pack generated, 723 bytes
19:44:37.164 [info] UploadPackV2: fetch response 745 bytes
19:44:37.169 [info] UploadPackV2: processing fetch command
19:44:37.170 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.170 [info] UploadPackV2: collected 12 objects, generating pack
19:44:37.171 [info] UploadPackV2: pack generated, 723 bytes
19:44:37.171 [info] UploadPackV2: fetch response 745 bytes
19:44:37.177 [info] UploadPackV2: processing fetch command
19:44:37.177 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.180 [info] UploadPackV2: collected 56 objects, generating pack
19:44:37.182 [info] UploadPackV2: pack generated, 3303 bytes
19:44:37.182 [info] UploadPackV2: fetch response 3325 bytes
19:44:37.190 [info] UploadPackV2: processing fetch command
19:44:37.190 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.192 [info] UploadPackV2: collected 23 objects, generating pack
19:44:37.192 [info] UploadPackV2: pack generated, 1435 bytes
19:44:37.192 [info] UploadPackV2: fetch response 1457 bytes
19:44:37.198 [info] UploadPackV2: processing fetch command
19:44:37.198 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.200 [info] UploadPackV2: collected 19 objects, generating pack
19:44:37.200 [info] UploadPackV2: pack generated, 1194 bytes
19:44:37.200 [info] UploadPackV2: fetch response 1216 bytes
19:44:37.211 [info] UploadPackV2: processing fetch command
19:44:37.211 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.214 [info] UploadPackV2: collected 16 objects, generating pack
.
19:44:37.217 [info] UploadPackV2: pack generated, 962 bytes
19:44:37.217 [info] UploadPackV2: fetch response 984 bytes
19:44:37.227 [info] UploadPackV2: processing fetch command
19:44:37.227 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.229 [info] UploadPackV2: collected 39 objects, generating pack
19:44:37.230 [info] UploadPackV2: pack generated, 2364 bytes
19:44:37.230 [info] UploadPackV2: fetch response 2386 bytes
19:44:37.236 [info] UploadPackV2: processing fetch command
19:44:37.236 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.250 [info] UploadPackV2: collected 48 objects, generating pack
19:44:37.250 [info] UploadPackV2: pack generated, 2823 bytes
19:44:37.251 [info] UploadPackV2: fetch response 2845 bytes
19:44:37.260 [info] UploadPackV2: processing fetch command
19:44:37.261 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.263 [info] UploadPackV2: collected 47 objects, generating pack
19:44:37.264 [info] UploadPackV2: pack generated, 2823 bytes
19:44:37.265 [info] UploadPackV2: fetch response 2845 bytes
19:44:37.270 [info] UploadPackV2: processing fetch command
19:44:37.270 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.271 [info] UploadPackV2: collected 4 objects, generating pack
19:44:37.271 [info] UploadPackV2: pack generated, 241 bytes
19:44:37.271 [info] UploadPackV2: fetch response 263 bytes
19:44:37.273 [info] UploadPackV2: processing fetch command
19:44:37.274 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.274 [info] UploadPackV2: collected 12 objects, generating pack
19:44:37.274 [info] UploadPackV2: pack generated, 723 bytes
19:44:37.275 [info] UploadPackV2: fetch response 745 bytes
19:44:37.278 [info] UploadPackV2: processing fetch command
19:44:37.278 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.279 [info] UploadPackV2: collected 11 objects, generating pack
19:44:37.279 [info] UploadPackV2: pack generated, 714 bytes
19:44:37.279 [info] UploadPackV2: fetch response 736 bytes
.
19:44:37.289 [info] UploadPackV2: processing fetch command
19:44:37.289 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.292 [info] UploadPackV2: collected 24 objects, generating pack
19:44:37.292 [info] UploadPackV2: pack generated, 1443 bytes
19:44:37.293 [info] UploadPackV2: fetch response 1465 bytes
19:44:37.304 [info] UploadPackV2: processing fetch command
19:44:37.304 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.305 [info] UploadPackV2: collected 19 objects, generating pack
19:44:37.306 [info] UploadPackV2: pack generated, 1196 bytes
19:44:37.306 [info] UploadPackV2: fetch response 1218 bytes
19:44:37.309 [info] UploadPackV2: processing fetch command
19:44:37.310 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.311 [info] UploadPackV2: collected 16 objects, generating pack
19:44:37.311 [info] UploadPackV2: pack generated, 962 bytes
19:44:37.311 [info] UploadPackV2: fetch response 984 bytes
19:44:37.318 [info] UploadPackV2: processing fetch command
19:44:37.318 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.319 [info] UploadPackV2: collected 27 objects, generating pack
19:44:37.320 [info] UploadPackV2: pack generated, 1678 bytes
19:44:37.320 [info] UploadPackV2: fetch response 1700 bytes
19:44:37.324 [info] UploadPackV2: processing fetch command
19:44:37.325 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.326 [info] UploadPackV2: collected 16 objects, generating pack
19:44:37.326 [info] UploadPackV2: pack generated, 962 bytes
19:44:37.326 [info] UploadPackV2: fetch response 984 bytes
19:44:37.331 [info] UploadPackV2: processing fetch command
19:44:37.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.332 [info] UploadPackV2: collected 23 objects, generating pack
19:44:37.333 [info] UploadPackV2: pack generated, 1435 bytes
19:44:37.334 [info] UploadPackV2: fetch response 1457 bytes
19:44:37.341 [info] UploadPackV2: processing fetch command
19:44:37.341 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.342 [info] UploadPackV2: collected 15 objects, generating pack
19:44:37.342 [info] UploadPackV2: pack generated, 907 bytes
19:44:37.342 [info] UploadPackV2: fetch response 929 bytes
19:44:37.346 [info] UploadPackV2: processing fetch command
19:44:37.346 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.346 [info] UploadPackV2: collected 8 objects, generating pack
19:44:37.347 [info] UploadPackV2: pack generated, 482 bytes
19:44:37.347 [info] UploadPackV2: fetch response 504 bytes
19:44:37.350 [info] UploadPackV2: processing fetch command
19:44:37.350 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.350 [info] UploadPackV2: collected 4 objects, generating pack
19:44:37.350 [info] UploadPackV2: pack generated, 241 bytes
19:44:37.350 [info] UploadPackV2: fetch response 263 bytes
19:44:37.354 [info] UploadPackV2: processing fetch command
19:44:37.354 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.355 [info] UploadPackV2: collected 20 objects, generating pack
19:44:37.355 [info] UploadPackV2: pack generated, 1203 bytes
19:44:37.355 [info] UploadPackV2: fetch response 1225 bytes
19:44:37.362 [info] UploadPackV2: processing fetch command
19:44:37.367 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:37.371 [info] UploadPackV2: collected 8 objects, generating pack
19:44:37.374 [info] UploadPackV2: pack generated, 482 bytes
19:44:37.377 [info] UploadPackV2: fetch response 504 bytes
.
19:44:37.430 [info] UploadPackV2: processing fetch command
19:44:37.430 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.431 [info] UploadPackV2: collected 15 objects, generating pack
19:44:37.432 [info] UploadPackV2: pack generated, 1068 bytes
19:44:37.432 [info] UploadPackV2: fetch response 1090 bytes
19:44:37.441 [info] UploadPackV2: processing fetch command
19:44:37.442 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.443 [info] UploadPackV2: collected 18 objects, generating pack
19:44:37.443 [info] UploadPackV2: pack generated, 1281 bytes
19:44:37.443 [info] UploadPackV2: fetch response 1303 bytes
19:44:37.454 [info] UploadPackV2: processing fetch command
19:44:37.454 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.455 [info] UploadPackV2: collected 29 objects, generating pack
19:44:37.456 [info] UploadPackV2: pack generated, 2098 bytes
19:44:37.456 [info] UploadPackV2: fetch response 2120 bytes
19:44:37.467 [info] UploadPackV2: processing fetch command
19:44:37.467 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.469 [info] UploadPackV2: collected 32 objects, generating pack
19:44:37.470 [info] UploadPackV2: pack generated, 2284 bytes
19:44:37.470 [info] UploadPackV2: fetch response 2306 bytes
19:44:37.482 [info] UploadPackV2: processing fetch command
19:44:37.482 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.483 [info] UploadPackV2: collected 18 objects, generating pack
19:44:37.484 [info] UploadPackV2: pack generated, 1281 bytes
19:44:37.484 [info] UploadPackV2: fetch response 1303 bytes
19:44:37.493 [info] UploadPackV2: processing fetch command
19:44:37.493 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.499 [info] UploadPackV2: collected 43 objects, generating pack
19:44:37.500 [info] UploadPackV2: pack generated, 3145 bytes
19:44:37.500 [info] UploadPackV2: fetch response 3167 bytes
19:44:37.517 [info] UploadPackV2: processing fetch command
19:44:37.518 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.519 [info] UploadPackV2: collected 19 objects, generating pack
19:44:37.519 [info] UploadPackV2: pack generated, 1444 bytes
19:44:37.519 [info] UploadPackV2: fetch response 1466 bytes
19:44:37.525 [info] UploadPackV2: processing fetch command
19:44:37.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.526 [info] UploadPackV2: collected 12 objects, generating pack
19:44:37.526 [info] UploadPackV2: pack generated, 854 bytes
19:44:37.526 [info] UploadPackV2: fetch response 876 bytes
19:44:37.535 [info] UploadPackV2: processing fetch command
19:44:37.535 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.537 [info] UploadPackV2: collected 32 objects, generating pack
19:44:37.541 [info] UploadPackV2: pack generated, 2280 bytes
19:44:37.541 [info] UploadPackV2: fetch response 2302 bytes
19:44:37.549 [info] UploadPackV2: processing fetch command
19:44:37.549 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.550 [info] UploadPackV2: collected 5 objects, generating pack
19:44:37.550 [info] UploadPackV2: pack generated, 424 bytes
19:44:37.550 [info] UploadPackV2: fetch response 446 bytes
19:44:37.554 [info] UploadPackV2: processing fetch command
19:44:37.554 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.556 [info] UploadPackV2: collected 17 objects, generating pack
19:44:37.556 [info] UploadPackV2: pack generated, 1276 bytes
19:44:37.556 [info] UploadPackV2: fetch response 1298 bytes
19:44:37.564 [info] UploadPackV2: processing fetch command
19:44:37.564 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.566 [info] UploadPackV2: collected 31 objects, generating pack
19:44:37.567 [info] UploadPackV2: pack generated, 2296 bytes
19:44:37.567 [info] UploadPackV2: fetch response 2318 bytes
19:44:37.575 [info] UploadPackV2: processing fetch command
19:44:37.575 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.576 [info] UploadPackV2: collected 3 objects, generating pack
19:44:37.576 [info] UploadPackV2: pack generated, 214 bytes
19:44:37.576 [info] UploadPackV2: fetch response 236 bytes
19:44:37.584 [info] UploadPackV2: processing fetch command
19:44:37.585 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.586 [info] UploadPackV2: collected 20 objects, generating pack
19:44:37.587 [info] UploadPackV2: pack generated, 1448 bytes
19:44:37.587 [info] UploadPackV2: fetch response 1470 bytes
19:44:37.592 [info] UploadPackV2: processing fetch command
19:44:37.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.593 [info] UploadPackV2: collected 14 objects, generating pack
19:44:37.594 [info] UploadPackV2: pack generated, 1062 bytes
19:44:37.594 [info] UploadPackV2: fetch response 1084 bytes
19:44:37.599 [info] UploadPackV2: processing fetch command
19:44:37.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.600 [info] UploadPackV2: collected 5 objects, generating pack
19:44:37.600 [info] UploadPackV2: pack generated, 424 bytes
19:44:37.600 [info] UploadPackV2: fetch response 446 bytes
19:44:37.609 [info] UploadPackV2: processing fetch command
19:44:37.609 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.611 [info] UploadPackV2: collected 37 objects, generating pack
19:44:37.612 [info] UploadPackV2: pack generated, 2717 bytes
19:44:37.612 [info] UploadPackV2: fetch response 2739 bytes
19:44:37.626 [info] UploadPackV2: processing fetch command
19:44:37.626 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.628 [info] UploadPackV2: collected 40 objects, generating pack
19:44:37.629 [info] UploadPackV2: pack generated, 2939 bytes
19:44:37.629 [info] UploadPackV2: fetch response 2961 bytes
19:44:37.645 [info] UploadPackV2: processing fetch command
19:44:37.646 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.646 [info] UploadPackV2: collected 14 objects, generating pack
19:44:37.646 [info] UploadPackV2: pack generated, 1064 bytes
19:44:37.647 [info] UploadPackV2: fetch response 1086 bytes
19:44:37.657 [info] UploadPackV2: processing fetch command
19:44:37.657 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.658 [info] UploadPackV2: collected 11 objects, generating pack
19:44:37.658 [info] UploadPackV2: pack generated, 853 bytes
19:44:37.658 [info] UploadPackV2: fetch response 875 bytes
19:44:37.665 [info] UploadPackV2: processing fetch command
19:44:37.665 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.668 [info] UploadPackV2: collected 20 objects, generating pack
19:44:37.669 [info] UploadPackV2: pack generated, 1447 bytes
19:44:37.669 [info] UploadPackV2: fetch response 1469 bytes
19:44:37.679 [info] UploadPackV2: processing fetch command
19:44:37.680 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.684 [info] UploadPackV2: collected 26 objects, generating pack
19:44:37.685 [info] UploadPackV2: pack generated, 1888 bytes
19:44:37.685 [info] UploadPackV2: fetch response 1910 bytes
19:44:37.696 [info] UploadPackV2: processing fetch command
19:44:37.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.698 [info] UploadPackV2: collected 17 objects, generating pack
19:44:37.699 [info] UploadPackV2: pack generated, 1278 bytes
19:44:37.699 [info] UploadPackV2: fetch response 1300 bytes
19:44:37.705 [info] UploadPackV2: processing fetch command
19:44:37.705 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.706 [info] UploadPackV2: collected 9 objects, generating pack
19:44:37.707 [info] UploadPackV2: pack generated, 642 bytes
19:44:37.707 [info] UploadPackV2: fetch response 664 bytes
19:44:37.711 [info] UploadPackV2: processing fetch command
19:44:37.711 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.711 [info] UploadPackV2: collected 11 objects, generating pack
19:44:37.712 [info] UploadPackV2: pack generated, 853 bytes
19:44:37.712 [info] UploadPackV2: fetch response 875 bytes
19:44:37.716 [info] UploadPackV2: processing fetch command
19:44:37.716 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.716 [info] UploadPackV2: collected 9 objects, generating pack
19:44:37.717 [info] UploadPackV2: pack generated, 642 bytes
19:44:37.717 [info] UploadPackV2: fetch response 664 bytes
19:44:37.721 [info] UploadPackV2: processing fetch command
19:44:37.721 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.722 [info] UploadPackV2: collected 14 objects, generating pack
19:44:37.723 [info] UploadPackV2: pack generated, 1064 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
19:44:37.723 [info] UploadPackV2: fetch response 1086 bytes
19:44:37.728 [info] UploadPackV2: processing fetch command
19:44:37.728 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.729 [info] UploadPackV2: collected 19 objects, generating pack
19:44:37.730 [info] UploadPackV2: pack generated, 1444 bytes
19:44:37.730 [info] UploadPackV2: fetch response 1466 bytes
19:44:37.738 [info] UploadPackV2: processing fetch command
19:44:37.738 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.740 [info] UploadPackV2: collected 25 objects, generating pack
19:44:37.741 [info] UploadPackV2: pack generated, 1873 bytes
19:44:37.741 [info] UploadPackV2: fetch response 1895 bytes
19:44:37.747 [info] UploadPackV2: processing fetch command
19:44:37.747 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.748 [info] UploadPackV2: collected 9 objects, generating pack
19:44:37.748 [info] UploadPackV2: pack generated, 642 bytes
19:44:37.748 [info] UploadPackV2: fetch response 664 bytes
19:44:37.751 [info] UploadPackV2: processing fetch command
19:44:37.752 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.752 [info] UploadPackV2: collected 3 objects, generating pack
19:44:37.753 [info] UploadPackV2: pack generated, 214 bytes
19:44:37.753 [info] UploadPackV2: fetch response 236 bytes
19:44:37.760 [info] UploadPackV2: processing fetch command
19:44:37.760 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.761 [info] UploadPackV2: collected 11 objects, generating pack
19:44:37.762 [info] UploadPackV2: pack generated, 851 bytes
19:44:37.762 [info] UploadPackV2: fetch response 873 bytes
19:44:37.778 [info] UploadPackV2: processing fetch command
19:44:37.778 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.780 [info] UploadPackV2: collected 18 objects, generating pack
19:44:37.780 [info] UploadPackV2: pack generated, 1281 bytes
19:44:37.781 [info] UploadPackV2: fetch response 1303 bytes
19:44:37.786 [info] UploadPackV2: processing fetch command
19:44:37.786 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.787 [info] UploadPackV2: collected 15 objects, generating pack
19:44:37.787 [info] UploadPackV2: pack generated, 1068 bytes
19:44:37.787 [info] UploadPackV2: fetch response 1090 bytes
19:44:37.794 [info] UploadPackV2: processing fetch command
19:44:37.794 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.795 [info] UploadPackV2: collected 5 objects, generating pack
19:44:37.801 [info] UploadPackV2: pack generated, 424 bytes
19:44:37.801 [info] UploadPackV2: fetch response 446 bytes
19:44:37.805 [info] UploadPackV2: processing fetch command
19:44:37.805 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.807 [info] UploadPackV2: collected 20 objects, generating pack
19:44:37.808 [info] UploadPackV2: pack generated, 1492 bytes
19:44:37.808 [info] UploadPackV2: fetch response 1514 bytes
19:44:37.814 [info] UploadPackV2: processing fetch command
19:44:37.814 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.815 [info] UploadPackV2: collected 12 objects, generating pack
19:44:37.815 [info] UploadPackV2: pack generated, 854 bytes
19:44:37.815 [info] UploadPackV2: fetch response 876 bytes
19:44:37.827 [info] UploadPackV2: processing fetch command
19:44:37.827 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.829 [info] UploadPackV2: collected 17 objects, generating pack
19:44:37.829 [info] UploadPackV2: pack generated, 1276 bytes
19:44:37.829 [info] UploadPackV2: fetch response 1298 bytes
19:44:37.840 [info] UploadPackV2: processing fetch command
19:44:37.840 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.841 [info] UploadPackV2: collected 6 objects, generating pack
19:44:37.841 [info] UploadPackV2: pack generated, 428 bytes
19:44:37.841 [info] UploadPackV2: fetch response 450 bytes
19:44:37.846 [info] UploadPackV2: processing fetch command
19:44:37.847 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:37.850 [info] UploadPackV2: collected 32 objects, generating pack
19:44:37.851 [info] UploadPackV2: pack generated, 2301 bytes
19:44:37.851 [info] UploadPackV2: fetch response 2323 bytes
.
19:44:38.088 [info] UploadPackV2: processing fetch command
19:44:38.088 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:38.100 [info] UploadPackV2: collected 163 objects, generating pack
19:44:38.108 [info] UploadPackV2: pack generated, 15090 bytes
19:44:38.108 [info] UploadPackV2: fetch response 15112 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
....
19:44:39.306 [info] UploadPackV2: processing fetch command
19:44:39.306 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:39.311 [info] UploadPackV2: reused pack 12323 bytes, 160 objects
19:44:39.311 [info] UploadPackV2: fetch response 12345 bytes
........................
19:44:40.211 [info] UploadPackV2: processing fetch command
19:44:40.211 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.218 [info] UploadPackV2: reused pack 12218 bytes, 160 objects
19:44:40.218 [info] UploadPackV2: fetch response 12240 bytes
........
19:44:40.562 [info] UploadPackV2: processing fetch command
19:44:40.562 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.562 [info] UploadPackV2: collected 3 objects, generating pack
19:44:40.562 [info] UploadPackV2: pack generated, 183 bytes
19:44:40.562 [info] UploadPackV2: fetch response 205 bytes
.
19:44:40.589 [info] UploadPackV2: processing ls-refs command
19:44:40.592 [info] UploadPackV2: processing fetch command
19:44:40.592 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.593 [info] UploadPackV2: collected 6 objects, generating pack
19:44:40.593 [info] UploadPackV2: pack generated, 366 bytes
19:44:40.593 [info] UploadPackV2: fetch response 388 bytes
19:44:40.623 [info] UploadPackV2: processing ls-refs command
.
19:44:40.649 [info] UploadPackV2: processing ls-refs command
19:44:40.652 [info] UploadPackV2: processing fetch command
19:44:40.652 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.653 [info] UploadPackV2: collected 9 objects, generating pack
19:44:40.653 [info] UploadPackV2: pack generated, 549 bytes
19:44:40.654 [info] UploadPackV2: fetch response 571 bytes
19:44:40.680 [info] UploadPackV2: processing ls-refs command
.
19:44:40.705 [info] UploadPackV2: processing ls-refs command
19:44:40.708 [info] UploadPackV2: processing fetch command
19:44:40.708 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.709 [info] UploadPackV2: collected 3 objects, generating pack
19:44:40.709 [info] UploadPackV2: pack generated, 183 bytes
19:44:40.709 [info] UploadPackV2: fetch response 205 bytes
.
19:44:40.752 [info] UploadPackV2: processing ls-refs command
19:44:40.755 [info] UploadPackV2: processing fetch command
19:44:40.755 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.760 [info] UploadPackV2: collected 180 objects, generating pack
19:44:40.763 [info] UploadPackV2: pack generated, 11106 bytes
19:44:40.763 [info] UploadPackV2: fetch response 11128 bytes
.
19:44:40.803 [info] UploadPackV2: processing ls-refs command
19:44:40.806 [info] UploadPackV2: processing fetch command
19:44:40.806 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:40.807 [info] UploadPackV2: collected 15 objects, generating pack
19:44:40.807 [info] UploadPackV2: pack generated, 919 bytes
19:44:40.807 [info] UploadPackV2: fetch response 941 bytes
..*****
19:44:40.917 [info] UploadPackV2: processing ls-refs command
19:44:40.920 [info] UploadPackV2: processing fetch command
19:44:40.920 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
19:44:40.921 [info] UploadPackV2: collected 3 objects, generating pack
19:44:40.922 [info] UploadPackV2: pack generated, 381 bytes
19:44:40.922 [info] UploadPackV2: fetch response 403 bytes
.
19:44:40.997 [info] UploadPackV2: processing ls-refs command
19:44:40.999 [info] UploadPackV2: processing fetch command
19:44:40.999 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:44:40.999 [info] UploadPackV2: collected 3 objects, generating pack
19:44:41.000 [info] UploadPackV2: pack generated, 216 bytes
19:44:41.000 [info] UploadPackV2: fetch response 312 bytes
19:44:41.061 [info] UploadPackV2: processing ls-refs command
19:44:41.062 [info] UploadPackV2: processing fetch command
19:44:41.062 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:44:41.063 [info] UploadPackV2: collected 12 objects, generating pack
19:44:41.063 [info] UploadPackV2: pack generated, 768 bytes
19:44:41.064 [info] UploadPackV2: fetch response 1002 bytes
.
19:44:41.129 [info] UploadPackV2: processing ls-refs command
19:44:41.132 [info] UploadPackV2: processing fetch command
19:44:41.132 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
19:44:41.133 [info] UploadPackV2: collected 5 objects, generating pack
19:44:41.134 [info] UploadPackV2: pack generated, 319 bytes
19:44:41.134 [info] UploadPackV2: fetch response 341 bytes
..
19:44:41.205 [info] UploadPackV2: processing ls-refs command
19:44:41.208 [info] UploadPackV2: processing fetch command
19:44:41.208 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
19:44:41.209 [info] UploadPackV2: collected 3 objects, generating pack
19:44:41.210 [info] UploadPackV2: pack generated, 381 bytes
19:44:41.210 [info] UploadPackV2: fetch response 403 bytes
.
19:44:41.277 [info] UploadPackV2: processing ls-refs command
.
19:44:41.329 [info] UploadPackV2: processing ls-refs command
.
19:44:41.377 [info] UploadPackV2: processing ls-refs command
.
19:44:41.433 [info] UploadPackV2: processing ls-refs command
19:44:41.435 [info] UploadPackV2: processing fetch command
19:44:41.435 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:44:41.435 [info] UploadPackV2: collected 3 objects, generating pack
19:44:41.435 [info] UploadPackV2: pack generated, 218 bytes
19:44:41.436 [info] UploadPackV2: fetch response 314 bytes
..
19:44:41.509 [info] UploadPackV2: processing ls-refs command
.
19:44:41.565 [info] UploadPackV2: processing ls-refs command
19:44:41.567 [info] UploadPackV2: processing fetch command
19:44:41.567 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:44:41.568 [info] UploadPackV2: collected 9 objects, generating pack
19:44:41.568 [info] UploadPackV2: pack generated, 585 bytes
19:44:41.568 [info] UploadPackV2: fetch response 681 bytes
.
19:44:41.641 [info] UploadPackV2: processing ls-refs command
19:44:41.642 [info] UploadPackV2: processing fetch command
19:44:41.643 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:44:41.643 [info] UploadPackV2: collected 3 objects, generating pack
19:44:41.643 [info] UploadPackV2: pack generated, 216 bytes
19:44:41.644 [info] UploadPackV2: fetch response 312 bytes
.
19:44:41.717 [info] UploadPackV2: processing ls-refs command
19:44:41.719 [info] UploadPackV2: processing fetch command
19:44:41.719 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:41.719 [info] UploadPackV2: collected 9 objects, generating pack
19:44:41.720 [info] UploadPackV2: pack generated, 549 bytes
19:44:41.720 [info] UploadPackV2: fetch response 571 bytes
19:44:41.735 [info] UploadPackV2: processing fetch command
19:44:41.735 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
19:44:41.736 [info] UploadPackV2: fetch response 171 bytes
.
19:44:41.789 [info] UploadPackV2: processing ls-refs command
19:44:41.792 [info] UploadPackV2: processing fetch command
19:44:41.792 [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
19:44:41.793 [info] UploadPackV2: collected 6 objects, generating pack
19:44:41.794 [info] UploadPackV2: pack generated, 513 bytes
19:44:41.794 [info] UploadPackV2: fetch response 535 bytes
.
19:44:41.861 [info] UploadPackV2: processing ls-refs command
19:44:41.864 [info] UploadPackV2: processing fetch command
19:44:41.864 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
19:44:41.865 [info] UploadPackV2: collected 6 objects, generating pack
19:44:41.865 [info] UploadPackV2: pack generated, 513 bytes
19:44:41.865 [info] UploadPackV2: fetch response 535 bytes
..........................
19:44:41.911 [info] The function passed as a handler with ID "telemetry-test-15747" 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
.
19:44:41.912 [info] UploadPackV2: processing fetch command
.
19:44:41.912 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
19:44:41.912 [info] UploadPackV2: collected 2 objects, generating pack
.
19:44:41.912 [info] UploadPackV2: pack generated, 169 bytes
19:44:41.912 [info] UploadPackV2: fetch response 191 bytes
19:44:41.936 [info] The function passed as a handler with ID "telemetry-test-15779" 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
.
19:44:56.999 [info] The function passed as a handler with ID "telemetry-test-9764" 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
.
19:44:57.000 [info] UploadPackV2: processing fetch command
.
19:44:57.000 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.000 [info] UploadPackV2: collected 3 objects, generating pack
19:44:57.000 [info] UploadPackV2: pack generated, 186 bytes
19:44:57.000 [info] UploadPackV2: fetch response 208 bytes
19:44:57.000 [info] The function passed as a handler with ID "telemetry-test-9796" 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
19:44:57.001 [info] UploadPackV2: processing fetch command
19:44:57.001 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:44:57.001 [info] UploadPackV2: collected 3 objects, generating pack
19:44:57.001 [info] UploadPackV2: pack generated, 183 bytes
19:44:57.001 [info] UploadPackV2: fetch response 205 bytes
19:44:57.003 [info] UploadPackV2: processing fetch command
19:44:57.003 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.003 [info] UploadPackV2: collected 3 objects, generating pack
19:44:57.004 [info] UploadPackV2: pack generated, 183 bytes
19:44:57.004 [info] UploadPackV2: fetch response 205 bytes
.
19:44:57.061 [info] UploadPackV2: processing ls-refs command
19:44:57.063 [info] UploadPackV2: processing fetch command
19:44:57.063 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.063 [info] UploadPackV2: collected 9 objects, generating pack
19:44:57.064 [info] UploadPackV2: pack generated, 547 bytes
19:44:57.064 [info] UploadPackV2: fetch response 569 bytes
19:44:57.133 [info] UploadPackV2: processing ls-refs command
.
19:44:57.217 [info] UploadPackV2: processing ls-refs command
19:44:57.219 [info] UploadPackV2: processing fetch command
19:44:57.219 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.221 [info] UploadPackV2: collected 90 objects, generating pack
19:44:57.223 [info] UploadPackV2: pack generated, 5649 bytes
19:44:57.223 [info] UploadPackV2: fetch response 5671 bytes
19:44:57.513 [info] UploadPackV2: processing ls-refs command
.
19:44:57.577 [info] UploadPackV2: processing ls-refs command
19:44:57.579 [info] UploadPackV2: processing fetch command
19:44:57.579 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.579 [info] UploadPackV2: collected 6 objects, generating pack
19:44:57.579 [info] UploadPackV2: pack generated, 366 bytes
19:44:57.579 [info] UploadPackV2: fetch response 388 bytes
19:44:57.645 [info] UploadPackV2: processing ls-refs command
19:44:57.646 [info] UploadPackV2: processing fetch command
19:44:57.646 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
19:44:57.646 [info] UploadPackV2: fetch response 32 bytes
19:44:57.646 [info] UploadPackV2: processing fetch command
19:44:57.646 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.647 [info] UploadPackV2: collected 3 objects, generating pack
19:44:57.647 [info] UploadPackV2: pack generated, 183 bytes
19:44:57.647 [info] UploadPackV2: fetch response 205 bytes
.
19:44:57.777 [info] UploadPackV2: processing ls-refs command
19:44:57.779 [info] UploadPackV2: processing fetch command
19:44:57.779 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:44:57.779 [info] UploadPackV2: collected 6 objects, generating pack
19:44:57.780 [info] UploadPackV2: pack generated, 365 bytes
19:44:57.780 [info] UploadPackV2: fetch response 387 bytes
19:45:04.789 [info] UploadPackV2: processing ls-refs command
.
19:45:04.865 [info] UploadPackV2: processing ls-refs command
19:45:04.866 [info] UploadPackV2: processing fetch command
19:45:04.866 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:45:04.866 [info] UploadPackV2: collected 3 objects, generating pack
19:45:04.866 [info] UploadPackV2: pack generated, 216 bytes
19:45:04.867 [info] UploadPackV2: fetch response 346 bytes
.
19:45:04.933 [info] UploadPackV2: processing ls-refs command
19:45:04.933 [info] UploadPackV2: processing ls-refs command
19:45:04.935 [info] UploadPackV2: processing fetch command
19:45:04.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:04.936 [info] UploadPackV2: collected 6 objects, generating pack
19:45:04.937 [info] UploadPackV2: pack generated, 365 bytes
19:45:04.937 [info] UploadPackV2: processing fetch command
19:45:04.937 [info] UploadPackV2: fetch response 387 bytes
19:45:04.937 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:04.939 [info] UploadPackV2: collected 6 objects, generating pack
19:45:04.939 [info] UploadPackV2: pack generated, 365 bytes
19:45:04.939 [info] UploadPackV2: fetch response 387 bytes
.
19:45:05.029 [info] UploadPackV2: processing ls-refs command
19:45:05.030 [info] UploadPackV2: processing fetch command
19:45:05.031 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:05.031 [info] UploadPackV2: collected 6 objects, generating pack
19:45:05.032 [info] UploadPackV2: pack generated, 365 bytes
19:45:05.032 [info] UploadPackV2: fetch response 387 bytes
19:45:05.048 [info] UploadPackV2: processing fetch command
19:45:05.048 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
19:45:05.049 [info] UploadPackV2: fetch response 122 bytes
.
19:45:05.129 [info] UploadPackV2: processing ls-refs command
19:45:05.130 [info] UploadPackV2: processing fetch command
19:45:05.131 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:05.131 [info] UploadPackV2: collected 6 objects, generating pack
19:45:05.131 [info] UploadPackV2: pack generated, 365 bytes
19:45:05.131 [info] UploadPackV2: fetch response 387 bytes
.***********
19:45:20.137 [info] UploadPackV2: processing fetch command
19:45:20.137 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.137 [info] UploadPackV2: collected 0 objects, generating pack
19:45:20.137 [info] UploadPackV2: pack generated, 32 bytes
19:45:20.137 [info] UploadPackV2: fetch response 54 bytes
.
19:45:20.497 [info] UploadPackV2: processing ls-refs command
19:45:20.498 [info] UploadPackV2: processing fetch command
19:45:20.498 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:45:20.499 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.499 [info] UploadPackV2: pack generated, 231 bytes
19:45:20.499 [info] UploadPackV2: fetch response 327 bytes
.
19:45:20.569 [info] UploadPackV2: processing ls-refs command
.
19:45:20.641 [info] UploadPackV2: processing ls-refs command
19:45:20.643 [info] UploadPackV2: processing fetch command
19:45:20.643 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.649 [info] UploadPackV2: collected 240 objects, generating pack
19:45:20.659 [info] UploadPackV2: pack generated, 16258 bytes
19:45:20.659 [info] UploadPackV2: fetch response 16280 bytes
.
19:45:20.679 [info] UploadPackV2: processing fetch command
19:45:20.679 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.680 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.680 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.680 [info] UploadPackV2: fetch response 205 bytes
19:45:20.680 [info] UploadPackV2: processing fetch command
19:45:20.680 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.680 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.680 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.680 [info] UploadPackV2: fetch response 205 bytes
19:45:20.680 [info] UploadPackV2: processing fetch command
19:45:20.681 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.681 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.681 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.682 [info] UploadPackV2: fetch response 205 bytes
19:45:20.682 [info] UploadPackV2: processing fetch command
19:45:20.682 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.683 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.683 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.683 [info] UploadPackV2: fetch response 205 bytes
19:45:20.684 [info] UploadPackV2: processing fetch command
19:45:20.684 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.685 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.685 [info] UploadPackV2: pack generated, 183 bytes
.
19:45:20.685 [info] UploadPackV2: fetch response 205 bytes
19:45:20.685 [info] UploadPackV2: processing fetch command
19:45:20.685 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.685 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.685 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.685 [info] UploadPackV2: fetch response 205 bytes
19:45:20.686 [info] UploadPackV2: processing fetch command
19:45:20.686 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.686 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.686 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.686 [info] UploadPackV2: fetch response 205 bytes
19:45:20.686 [info] UploadPackV2: processing fetch command
19:45:20.686 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.686 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.686 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.686 [info] UploadPackV2: fetch response 205 bytes
19:45:20.686 [info] UploadPackV2: processing fetch command
19:45:20.686 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.687 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.687 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.687 [info] UploadPackV2: fetch response 205 bytes
19:45:20.687 [info] UploadPackV2: processing fetch command
19:45:20.687 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.687 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.687 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.687 [info] UploadPackV2: fetch response 205 bytes
19:45:20.687 [info] UploadPackV2: processing fetch command
19:45:20.687 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.693 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.693 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.693 [info] UploadPackV2: fetch response 205 bytes
19:45:20.693 [info] UploadPackV2: processing fetch command
19:45:20.693 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.694 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.694 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.694 [info] UploadPackV2: fetch response 205 bytes
19:45:20.694 [info] UploadPackV2: processing fetch command
19:45:20.694 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.694 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.694 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.694 [info] UploadPackV2: fetch response 205 bytes
19:45:20.694 [info] UploadPackV2: processing fetch command
19:45:20.694 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.694 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.694 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.694 [info] UploadPackV2: fetch response 205 bytes
19:45:20.694 [info] UploadPackV2: processing fetch command
19:45:20.694 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.695 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.695 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.695 [info] UploadPackV2: fetch response 205 bytes
19:45:20.695 [info] UploadPackV2: processing fetch command
19:45:20.695 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.695 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.695 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.695 [info] UploadPackV2: fetch response 205 bytes
19:45:20.695 [info] UploadPackV2: processing fetch command
19:45:20.695 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.695 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.695 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.695 [info] UploadPackV2: fetch response 205 bytes
19:45:20.695 [info] UploadPackV2: processing fetch command
19:45:20.695 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.696 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.696 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.696 [info] UploadPackV2: fetch response 205 bytes
19:45:20.696 [info] UploadPackV2: processing fetch command
19:45:20.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.696 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.696 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.696 [info] UploadPackV2: fetch response 205 bytes
19:45:20.696 [info] UploadPackV2: processing fetch command
19:45:20.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.696 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.696 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.696 [info] UploadPackV2: fetch response 205 bytes
19:45:20.696 [info] UploadPackV2: processing fetch command
19:45:20.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.697 [info] UploadPackV2: collected 3 objects, generating pack
19:45:20.697 [info] UploadPackV2: pack generated, 183 bytes
19:45:20.697 [info] UploadPackV2: fetch response 205 bytes
19:45:20.797 [info] UploadPackV2: processing ls-refs command
19:45:20.799 [info] UploadPackV2: processing fetch command
19:45:20.799 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:20.822 [info] UploadPackV2: collected 600 objects, generating pack
19:45:20.841 [info] UploadPackV2: pack generated, 45197 bytes
19:45:20.841 [info] UploadPackV2: fetch response 45219 bytes
.
19:45:20.917 [info] UploadPackV2: processing ls-refs command
.....
19:45:22.154 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303405022" 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
.
19:45:22.154 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303404990" 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
.
19:45:22.155 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303404958" 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
19:45:22.155 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303404926" 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
19:45:22.156 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303414012" 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
19:45:22.157 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303406655" 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
.
19:45:22.157 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303404894" 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
19:45:22.158 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303404862" 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
.
19:45:22.229 [info] UploadPackV2: processing ls-refs command
19:45:22.230 [info] UploadPackV2: processing fetch command
19:45:22.230 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
19:45:22.231 [info] UploadPackV2: collected 3 objects, generating pack
19:45:22.231 [info] UploadPackV2: pack generated, 200 bytes
19:45:22.231 [info] UploadPackV2: fetch response 256 bytes
.
19:45:22.293 [info] UploadPackV2: processing ls-refs command
19:45:22.295 [info] UploadPackV2: processing fetch command
19:45:22.295 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:22.295 [info] UploadPackV2: collected 3 objects, generating pack
19:45:22.295 [info] UploadPackV2: pack generated, 185 bytes
19:45:22.295 [info] UploadPackV2: fetch response 207 bytes
19:45:22.353 [info] UploadPackV2: processing ls-refs command
.
19:45:22.409 [info] UploadPackV2: processing ls-refs command
19:45:22.411 [info] UploadPackV2: processing fetch command
19:45:22.411 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:22.411 [info] UploadPackV2: collected 3 objects, generating pack
19:45:22.412 [info] UploadPackV2: pack generated, 196 bytes
19:45:22.412 [info] UploadPackV2: fetch response 218 bytes
.
19:45:22.477 [info] UploadPackV2: processing ls-refs command
19:45:22.479 [info] UploadPackV2: processing fetch command
19:45:22.479 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:22.480 [info] UploadPackV2: collected 15 objects, generating pack
19:45:22.480 [info] UploadPackV2: pack generated, 952 bytes
19:45:22.480 [info] UploadPackV2: fetch response 974 bytes
.
19:45:22.553 [info] UploadPackV2: processing ls-refs command
19:45:22.555 [info] UploadPackV2: processing fetch command
19:45:22.555 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:22.555 [info] UploadPackV2: collected 3 objects, generating pack
19:45:22.556 [info] UploadPackV2: pack generated, 185 bytes
19:45:22.556 [info] UploadPackV2: fetch response 207 bytes
.
19:45:22.625 [info] UploadPackV2: processing ls-refs command
19:45:22.627 [info] UploadPackV2: processing fetch command
19:45:22.627 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:22.627 [info] UploadPackV2: collected 3 objects, generating pack
19:45:22.627 [info] UploadPackV2: pack generated, 196 bytes
19:45:22.628 [info] UploadPackV2: fetch response 218 bytes
..
19:45:37.769 [info] UploadPackV2: processing ls-refs command
19:45:37.770 [info] UploadPackV2: processing fetch command
19:45:37.771 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:37.771 [info] UploadPackV2: collected 3 objects, generating pack
19:45:37.772 [info] UploadPackV2: pack generated, 201 bytes
19:45:37.772 [info] UploadPackV2: fetch response 223 bytes
.
19:45:52.901 [info] UploadPackV2: processing ls-refs command
19:45:52.903 [info] UploadPackV2: processing fetch command
19:45:52.903 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:45:52.904 [info] UploadPackV2: collected 6 objects, generating pack
19:45:52.904 [info] UploadPackV2: pack generated, 365 bytes
19:45:52.904 [info] UploadPackV2: fetch response 387 bytes
..
19:46:08.085 [info] UploadPackV2: processing ls-refs command
19:46:08.087 [info] UploadPackV2: processing fetch command
19:46:08.087 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:46:08.087 [info] UploadPackV2: collected 6 objects, generating pack
19:46:08.087 [info] UploadPackV2: pack generated, 365 bytes
19:46:08.087 [info] UploadPackV2: fetch response 387 bytes
.
19:46:23.221 [info] UploadPackV2: processing ls-refs command
19:46:23.223 [info] UploadPackV2: processing fetch command
19:46:23.223 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:46:23.224 [info] UploadPackV2: collected 3 objects, generating pack
19:46:23.224 [info] UploadPackV2: pack generated, 183 bytes
19:46:23.224 [info] UploadPackV2: fetch response 205 bytes
...
19:46:53.485 [info] UploadPackV2: processing ls-refs command
19:46:53.487 [info] UploadPackV2: processing fetch command
19:46:53.487 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
19:46:53.487 [info] UploadPackV2: collected 3 objects, generating pack
19:46:53.487 [info] UploadPackV2: pack generated, 183 bytes
19:46:53.487 [info] UploadPackV2: fetch response 205 bytes
...........
19:47:53.806 [info] The function passed as a handler with ID "graph-query-test-9924" 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
..
19:47:53.809 [info] The function passed as a handler with ID "graph-query-test-18851" 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
...
19:47:53.818 [info] The function passed as a handler with ID "graph-query-test-18915" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
Finished in 209.8 seconds (16.5s async, 193.3s sync)
Result: 987 passed (2 properties, 985 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info