ref:main

test passed

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

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Cover compiling modules ...
Running ExUnit with seed: 527907, max_cases: 8
Excluding tags: [:s3]
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
63 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:63:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
79 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:79:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: 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: 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
.................................................................................
22:20:32.181 [warning] post_receive hook failed: "webhook failed"
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
151 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:151:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
169 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:169:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: 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
......................................................................................................................................................................................................................................................................................................................................
22:20:35.161 [info] The function passed as a handler with ID #Reference<0.3842427373.4012376066.50757> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
.......................................................................................................................................................................
22:20:37.767 [info] The function passed as a handler with ID #Reference<0.3842427373.4012376068.52561> 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: default values for the optional arguments in the private function http_post/4 are never used
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
warning: variable "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 "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
........................................................................................................................................................
22:20:41.464 [info] The function passed as a handler with ID "test-#Reference<0.3842427373.4012376067.102531>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
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
........
22:20:41.642 [info] UploadPackV2: processing fetch command
22:20:41.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:41.666 [info] UploadPackV2: collected 9 objects, streaming pack
22:20:41.679 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
22:20:41.679 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
22:20:41.696 [info] UploadPackV2: processing fetch command
22:20:41.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:41.700 [info] UploadPackV2: collected 3 objects, generating pack
22:20:41.701 [info] UploadPackV2: pack generated, 195 bytes
22:20:41.701 [info] UploadPackV2: fetch response 217 bytes
22:20:41.724 [info] UploadPackV2: processing fetch command
22:20:41.724 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:41.734 [info] UploadPackV2: collected 3 objects, streaming pack
22:20:41.750 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
22:20:41.750 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
.
22:20:41.818 [info] UploadPackV2: processing fetch command
22:20:41.818 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:41.826 [info] UploadPackV2: collected 3 objects, generating pack
.
22:20:41.827 [info] UploadPackV2: pack generated, 223 bytes
22:20:41.827 [info] UploadPackV2: fetch response 245 bytes
22:20:41.841 [info] UploadPackV2: processing fetch command
22:20:41.842 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:41.844 [info] UploadPackV2: collected 3 objects, generating pack
22:20:41.845 [info] UploadPackV2: pack generated, 191 bytes
22:20:41.846 [info] UploadPackV2: fetch response 213 bytes
22:20:41.865 [info] UploadPackV2: processing fetch command
22:20:41.865 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:41.872 [info] UploadPackV2: collected 6 objects, generating pack
22:20:41.873 [info] UploadPackV2: pack generated, 414 bytes
22:20:41.874 [info] UploadPackV2: fetch response 436 bytes
22:20:41.894 [info] UploadPackV2: processing fetch command
.
22:20:41.894 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
22:20:41.896 [info] UploadPackV2: fetch response 73 bytes
.
22:20:41.897 [info] UploadPackV2: processing fetch command
22:20:41.898 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
22:20:41.900 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
22:20:41.910 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
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
.......
22:20:42.150 [info] UploadPackV2: processing fetch command
22:20:42.150 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
22:20:42.253 [info] UploadPackV2: collected 600 objects, generating pack
.
22:20:42.265 [info] UploadPackV2: processing fetch command
.
22:20:42.265 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.272 [info] UploadPackV2: collected 31 objects, generating pack
.
22:20:42.273 [info] UploadPackV2: pack generated, 2299 bytes
.
22:20:42.273 [info] UploadPackV2: fetch response 2321 bytes
.
22:20:42.286 [info] UploadPackV2: pack generated, 39862 bytes
.
22:20:42.287 [info] UploadPackV2: fetch response 39884 bytes
.
22:20:42.304 [info] UploadPackV2: processing fetch command
.
22:20:42.304 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.308 [info] UploadPackV2: collected 18 objects, generating pack
.
22:20:42.310 [info] UploadPackV2: pack generated, 1281 bytes
.
22:20:42.310 [info] UploadPackV2: fetch response 1303 bytes
.
22:20:42.330 [info] UploadPackV2: processing fetch command
.
22:20:42.330 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.333 [info] UploadPackV2: collected 9 objects, generating pack
.
22:20:42.334 [info] UploadPackV2: pack generated, 642 bytes
.
22:20:42.334 [info] UploadPackV2: fetch response 664 bytes
.
22:20:42.357 [info] UploadPackV2: processing fetch command
.
22:20:42.357 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.360 [info] UploadPackV2: collected 14 objects, generating pack
.
22:20:42.361 [info] UploadPackV2: pack generated, 1062 bytes
.
22:20:42.362 [info] UploadPackV2: fetch response 1084 bytes
.
22:20:42.382 [info] UploadPackV2: processing fetch command
.
22:20:42.382 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.383 [info] UploadPackV2: collected 8 objects, generating pack
.
22:20:42.384 [info] UploadPackV2: pack generated, 639 bytes
.
22:20:42.384 [info] UploadPackV2: fetch response 661 bytes
.
22:20:42.396 [info] UploadPackV2: processing fetch command
.
22:20:42.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.400 [info] UploadPackV2: collected 15 objects, generating pack
.
22:20:42.401 [info] UploadPackV2: pack generated, 1068 bytes
.
22:20:42.402 [info] UploadPackV2: fetch response 1090 bytes
.
22:20:42.420 [info] UploadPackV2: processing fetch command
.
22:20:42.420 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.434 [info] UploadPackV2: collected 26 objects, generating pack
.
22:20:42.435 [info] UploadPackV2: pack generated, 1887 bytes
.
22:20:42.435 [info] UploadPackV2: fetch response 1909 bytes
.
22:20:42.448 [info] UploadPackV2: processing fetch command
.
22:20:42.448 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.449 [info] UploadPackV2: collected 3 objects, generating pack
...
22:20:42.449 [info] UploadPackV2: pack generated, 214 bytes
.
22:20:42.449 [info] UploadPackV2: fetch response 236 bytes
.
22:20:42.453 [info] UploadPackV2: processing fetch command
.
22:20:42.453 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.454 [info] UploadPackV2: collected 14 objects, generating pack
.
22:20:42.455 [info] UploadPackV2: pack generated, 1064 bytes
.
22:20:42.456 [info] UploadPackV2: fetch response 1086 bytes
.
22:20:42.472 [info] UploadPackV2: processing fetch command
.
22:20:42.472 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.474 [info] UploadPackV2: collected 26 objects, generating pack
.
22:20:42.475 [info] UploadPackV2: pack generated, 1885 bytes
.
22:20:42.475 [info] UploadPackV2: fetch response 1907 bytes
.
22:20:42.490 [info] UploadPackV2: processing fetch command
.
22:20:42.490 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.491 [info] UploadPackV2: collected 9 objects, generating pack
22:20:42.491 [info] UploadPackV2: pack generated, 642 bytes
22:20:42.492 [info] UploadPackV2: fetch response 664 bytes
22:20:42.505 [info] UploadPackV2: processing fetch command
22:20:42.505 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:42.507 [info] UploadPackV2: collected 3 objects, generating pack
22:20:42.508 [info] UploadPackV2: pack generated, 195 bytes
22:20:42.508 [info] UploadPackV2: fetch response 217 bytes
22:20:42.510 [info] UploadPackV2: processing ls-refs command
22:20:42.511 [info] UploadPackV2: processing fetch command
22:20:42.511 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.512 [info] UploadPackV2: collected 20 objects, generating pack
22:20:42.514 [info] UploadPackV2: pack generated, 1459 bytes
22:20:42.514 [info] UploadPackV2: fetch response 1481 bytes
22:20:42.521 [info] UploadPackV2: processing fetch command
22:20:42.522 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.524 [info] UploadPackV2: collected 8 objects, generating pack
22:20:42.524 [info] UploadPackV2: pack generated, 639 bytes
22:20:42.524 [info] UploadPackV2: fetch response 661 bytes
22:20:42.539 [info] UploadPackV2: processing fetch command
22:20:42.570 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.574 [info] UploadPackV2: collected 42 objects, generating pack
22:20:42.578 [info] UploadPackV2: pack generated, 2925 bytes
22:20:42.578 [info] UploadPackV2: fetch response 2947 bytes
22:20:42.595 [info] UploadPackV2: processing fetch command
22:20:42.595 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.599 [info] UploadPackV2: collected 12 objects, generating pack
22:20:42.600 [info] UploadPackV2: pack generated, 854 bytes
22:20:42.600 [info] UploadPackV2: fetch response 876 bytes
22:20:42.613 [info] UploadPackV2: processing fetch command
22:20:42.613 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.617 [info] UploadPackV2: collected 24 objects, generating pack
22:20:42.618 [info] UploadPackV2: pack generated, 1646 bytes
22:20:42.618 [info] UploadPackV2: fetch response 1668 bytes
22:20:42.631 [info] UploadPackV2: processing fetch command
22:20:42.631 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.632 [info] UploadPackV2: collected 18 objects, generating pack
22:20:42.633 [info] UploadPackV2: pack generated, 1249 bytes
22:20:42.633 [info] UploadPackV2: fetch response 1271 bytes
22:20:42.642 [info] UploadPackV2: processing fetch command
22:20:42.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.642 [info] UploadPackV2: collected 6 objects, generating pack
22:20:42.643 [info] UploadPackV2: pack generated, 428 bytes
22:20:42.643 [info] UploadPackV2: fetch response 450 bytes
22:20:42.653 [info] UploadPackV2: processing fetch command
22:20:42.653 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.657 [info] UploadPackV2: collected 12 objects, generating pack
22:20:42.658 [info] UploadPackV2: pack generated, 854 bytes
22:20:42.658 [info] UploadPackV2: fetch response 876 bytes
22:20:42.667 [info] UploadPackV2: processing fetch command
22:20:42.667 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.673 [info] UploadPackV2: collected 32 objects, generating pack
22:20:42.675 [info] UploadPackV2: pack generated, 2313 bytes
22:20:42.675 [info] UploadPackV2: fetch response 2335 bytes
22:20:42.691 [info] UploadPackV2: processing fetch command
22:20:42.691 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.696 [info] UploadPackV2: collected 11 objects, generating pack
22:20:42.697 [info] UploadPackV2: pack generated, 853 bytes
22:20:42.697 [info] UploadPackV2: fetch response 875 bytes
22:20:42.708 [info] UploadPackV2: processing fetch command
22:20:42.709 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.713 [info] UploadPackV2: collected 14 objects, generating pack
22:20:42.713 [info] UploadPackV2: pack generated, 1064 bytes
22:20:42.713 [info] UploadPackV2: fetch response 1086 bytes
22:20:42.729 [info] UploadPackV2: processing fetch command
22:20:42.729 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.732 [info] UploadPackV2: collected 34 objects, generating pack
22:20:42.735 [info] UploadPackV2: pack generated, 2514 bytes
22:20:42.735 [info] UploadPackV2: fetch response 2536 bytes
22:20:42.758 [info] UploadPackV2: processing fetch command
22:20:42.758 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.759 [info] UploadPackV2: collected 15 objects, generating pack
22:20:42.759 [info] UploadPackV2: pack generated, 1068 bytes
22:20:42.759 [info] UploadPackV2: fetch response 1090 bytes
22:20:42.775 [info] UploadPackV2: processing fetch command
22:20:42.775 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.779 [info] UploadPackV2: collected 29 objects, generating pack
22:20:42.782 [info] UploadPackV2: pack generated, 2097 bytes
22:20:42.782 [info] UploadPackV2: fetch response 2119 bytes
22:20:42.801 [info] UploadPackV2: processing fetch command
22:20:42.801 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.802 [info] UploadPackV2: collected 17 objects, generating pack
.
22:20:42.803 [info] UploadPackV2: pack generated, 1276 bytes
22:20:42.803 [info] UploadPackV2: fetch response 1298 bytes
22:20:42.818 [info] UploadPackV2: processing fetch command
22:20:42.818 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.820 [info] UploadPackV2: collected 22 objects, generating pack
22:20:42.821 [info] UploadPackV2: pack generated, 1659 bytes
22:20:42.821 [info] UploadPackV2: fetch response 1681 bytes
22:20:42.830 [info] UploadPackV2: processing fetch command
22:20:42.830 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:42.835 [info] UploadPackV2: processing fetch command
22:20:42.835 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.837 [info] UploadPackV2: collected 25 objects, generating pack
22:20:42.837 [info] UploadPackV2: pack generated, 1870 bytes
22:20:42.837 [info] UploadPackV2: fetch response 1892 bytes
22:20:42.846 [info] UploadPackV2: collected 32 objects, streaming pack
22:20:42.853 [info] UploadPackV2: processing fetch command
22:20:42.855 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.857 [info] UploadPackV2: collected 27 objects, generating pack
22:20:42.861 [info] UploadPackV2: pack generated, 1889 bytes
22:20:42.861 [info] UploadPackV2: fetch response 1911 bytes
22:20:42.868 [info] UploadPackV2: processing fetch command
22:20:42.868 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.868 [info] UploadPackV2: collected 9 objects, generating pack
22:20:42.869 [info] UploadPackV2: pack generated, 642 bytes
22:20:42.869 [info] UploadPackV2: fetch response 664 bytes
22:20:42.878 [info] UploadPackV2: processing fetch command
22:20:42.878 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.882 [info] UploadPackV2: collected 15 objects, generating pack
22:20:42.882 [info] UploadPackV2: pack generated, 1068 bytes
22:20:42.883 [info] UploadPackV2: fetch response 1090 bytes
22:20:42.894 [info] UploadPackV2: processing fetch command
22:20:42.895 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.896 [info] UploadPackV2: collected 31 objects, generating pack
.
22:20:42.897 [info] UploadPackV2: pack generated, 2299 bytes
.
22:20:42.897 [info] UploadPackV2: fetch response 2321 bytes
...
22:20:42.910 [info] UploadPackV2: processing fetch command
.
22:20:42.910 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
22:20:42.910 [info] UploadPackV2: collected 3 objects, generating pack
22:20:42.910 [info] UploadPackV2: pack generated, 214 bytes
22:20:42.910 [info] UploadPackV2: fetch response 236 bytes
22:20:42.918 [info] UploadPackV2: processing fetch command
22:20:42.918 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.919 [info] UploadPackV2: collected 12 objects, generating pack
22:20:42.919 [info] UploadPackV2: pack generated, 854 bytes
22:20:42.919 [info] UploadPackV2: fetch response 876 bytes
22:20:42.933 [info] UploadPackV2: processing fetch command
22:20:42.933 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.937 [info] UploadPackV2: collected 9 objects, generating pack
22:20:42.938 [info] UploadPackV2: pack generated, 642 bytes
22:20:42.938 [info] UploadPackV2: fetch response 664 bytes
22:20:42.943 [info] UploadPackV2: processing fetch command
22:20:42.943 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.946 [info] UploadPackV2: collected 5 objects, generating pack
22:20:42.946 [info] UploadPackV2: pack generated, 424 bytes
22:20:42.947 [info] UploadPackV2: fetch response 446 bytes
22:20:42.963 [info] UploadPackV2: processing fetch command
22:20:42.963 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:42.965 [info] UploadPackV2: collected 26 objects, generating pack
22:20:42.966 [info] UploadPackV2: pack generated, 1888 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
22:20:42.966 [info] UploadPackV2: fetch response 1910 bytes
22:20:43.017 [info] UploadPackV2: processing fetch command
22:20:43.017 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:43.019 [info] UploadPackV2: collected 23 objects, generating pack
22:20:43.020 [info] UploadPackV2: pack generated, 1674 bytes
22:20:43.020 [info] UploadPackV2: fetch response 1696 bytes
22:20:43.029 [info] UploadPackV2: processing fetch command
22:20:43.029 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:43.029 [info] UploadPackV2: collected 6 objects, generating pack
.
22:20:43.030 [info] UploadPackV2: pack generated, 428 bytes
22:20:43.030 [info] UploadPackV2: fetch response 450 bytes
22:20:43.034 [info] UploadPackV2: processing fetch command
22:20:43.034 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:43.037 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.037 [info] UploadPackV2: pack generated, 1490 bytes
22:20:43.038 [info] UploadPackV2: fetch response 1512 bytes
22:20:43.071 [info] UploadPackV2: processing fetch command
22:20:43.071 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.087 [info] UploadPackV2: collected 42 objects, generating pack
22:20:43.088 [info] UploadPackV2: pack generated, 2581 bytes
22:20:43.090 [info] UploadPackV2: fetch response 2603 bytes
22:20:43.102 [info] UploadPackV2: processing fetch command
22:20:43.102 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.119 [info] UploadPackV2: collected 24 objects, generating pack
22:20:43.119 [info] UploadPackV2: pack generated, 1443 bytes
22:20:43.121 [info] UploadPackV2: fetch response 1465 bytes
22:20:43.130 [info] UploadPackV2: streamed pack 2459752 bytes, 32 objects
22:20:43.130 [info] UploadPackV2: fetch streamed 2459752 pack bytes, 32 objects
22:20:43.144 [info] UploadPackV2: processing fetch command
22:20:43.146 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.149 [info] UploadPackV2: collected 12 objects, generating pack
22:20:43.149 [info] UploadPackV2: pack generated, 723 bytes
22:20:43.149 [info] UploadPackV2: fetch response 745 bytes
22:20:43.161 [info] UploadPackV2: processing fetch command
22:20:43.161 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.180 [info] UploadPackV2: collected 19 objects, generating pack
22:20:43.181 [info] UploadPackV2: pack generated, 1194 bytes
22:20:43.185 [info] UploadPackV2: fetch response 1216 bytes
22:20:43.200 [info] UploadPackV2: processing fetch command
22:20:43.200 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.204 [info] UploadPackV2: collected 11 objects, generating pack
22:20:43.204 [info] UploadPackV2: pack generated, 717 bytes
22:20:43.204 [info] UploadPackV2: fetch response 739 bytes
22:20:43.208 [info] UploadPackV2: processing fetch command
22:20:43.208 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.209 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.210 [info] UploadPackV2: pack generated, 1203 bytes
22:20:43.210 [info] UploadPackV2: fetch response 1225 bytes
22:20:43.220 [info] UploadPackV2: processing fetch command
22:20:43.220 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.222 [info] UploadPackV2: collected 35 objects, generating pack
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
22:20:43.223 [info] UploadPackV2: pack generated, 2127 bytes
22:20:43.223 [info] UploadPackV2: fetch response 2149 bytes
22:20:43.228 [info] UploadPackV2: processing fetch command
22:20:43.228 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.229 [info] UploadPackV2: collected 4 objects, generating pack
22:20:43.229 [info] UploadPackV2: pack generated, 241 bytes
22:20:43.229 [info] UploadPackV2: fetch response 263 bytes
22:20:43.231 [info] UploadPackV2: processing fetch command
22:20:43.231 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.232 [info] UploadPackV2: collected 19 objects, generating pack
22:20:43.233 [info] UploadPackV2: pack generated, 1196 bytes
22:20:43.233 [info] UploadPackV2: fetch response 1218 bytes
22:20:43.239 [info] UploadPackV2: processing fetch command
22:20:43.239 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.241 [info] UploadPackV2: collected 35 objects, generating pack
22:20:43.242 [info] UploadPackV2: pack generated, 2125 bytes
.
22:20:43.242 [info] UploadPackV2: fetch response 2147 bytes
.
22:20:43.249 [info] UploadPackV2: processing fetch command
22:20:43.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:43.250 [info] UploadPackV2: collected 12 objects, generating pack
22:20:43.250 [info] UploadPackV2: pack generated, 723 bytes
22:20:43.250 [info] UploadPackV2: fetch response 745 bytes
22:20:43.255 [info] UploadPackV2: processing fetch command
22:20:43.256 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.258 [info] UploadPackV2: collected 27 objects, generating pack
22:20:43.258 [info] UploadPackV2: pack generated, 1645 bytes
22:20:43.258 [info] UploadPackV2: fetch response 1667 bytes
22:20:43.264 [info] UploadPackV2: processing fetch command
22:20:43.264 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.264 [info] UploadPackV2: processing fetch command
22:20:43.264 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.265 [info] UploadPackV2: collected 0 objects, generating pack
22:20:43.265 [info] UploadPackV2: pack generated, 32 bytes
22:20:43.265 [info] UploadPackV2: fetch response 54 bytes
22:20:43.265 [info] UploadPackV2: collected 11 objects, generating pack
22:20:43.266 [info] UploadPackV2: pack generated, 717 bytes
22:20:43.266 [info] UploadPackV2: fetch response 739 bytes
.
22:20:43.271 [info] UploadPackV2: processing fetch command
.
22:20:43.271 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:43.275 [info] UploadPackV2: collected 15 objects, generating pack
.
22:20:43.275 [info] UploadPackV2: pack generated, 984 bytes
.
22:20:43.276 [info] UploadPackV2: fetch response 1006 bytes
.
22:20:43.284 [info] UploadPackV2: processing fetch command
.
22:20:43.284 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:43.287 [info] UploadPackV2: collected 56 objects, generating pack
22:20:43.288 [info] UploadPackV2: pack generated, 3303 bytes
22:20:43.289 [info] UploadPackV2: fetch response 3325 bytes
22:20:43.321 [info] UploadPackV2: processing fetch command
22:20:43.321 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.323 [info] UploadPackV2: processing fetch command
22:20:43.323 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.324 [info] UploadPackV2: collected 16 objects, generating pack
22:20:43.325 [info] UploadPackV2: pack generated, 962 bytes
22:20:43.325 [info] UploadPackV2: fetch response 984 bytes
22:20:43.346 [info] UploadPackV2: processing fetch command
22:20:43.377 [info] UploadPackV2: collected 90 objects, generating pack
22:20:43.379 [info] UploadPackV2: pack generated, 5946 bytes
22:20:43.379 [info] UploadPackV2: fetch response 5968 bytes
22:20:43.389 [info] UploadPackV2: processing ls-refs command
22:20:43.390 [info] UploadPackV2: processing fetch command
22:20:43.390 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.390 [info] UploadPackV2: collected 3 objects, generating pack
22:20:43.390 [info] UploadPackV2: pack generated, 206 bytes
22:20:43.390 [info] UploadPackV2: fetch response 228 bytes
22:20:43.391 [info] UploadPackV2: processing fetch command
22:20:43.391 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.392 [info] UploadPackV2: collected 3 objects, generating pack
22:20:43.392 [info] UploadPackV2: pack generated, 191 bytes
22:20:43.392 [info] UploadPackV2: fetch response 213 bytes
22:20:43.393 [info] UploadPackV2: processing fetch command
22:20:43.393 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.393 [info] UploadPackV2: collected 3 objects, generating pack
22:20:43.394 [info] UploadPackV2: pack generated, 194 bytes
22:20:43.394 [info] UploadPackV2: fetch response 216 bytes
22:20:43.396 [info] UploadPackV2: processing fetch command
22:20:43.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.397 [info] UploadPackV2: collected 15 objects, generating pack
22:20:43.398 [info] UploadPackV2: pack generated, 984 bytes
22:20:43.399 [info] UploadPackV2: fetch response 1006 bytes
22:20:43.400 [info] UploadPackV2: processing fetch command
22:20:43.400 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.404 [info] UploadPackV2: collected 15 objects, streaming pack
22:20:43.405 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
22:20:43.406 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
22:20:43.406 [info] UploadPackV2: processing ls-refs command
22:20:43.406 [info] UploadPackV2: processing ls-refs command
22:20:43.407 [info] UploadPackV2: processing fetch command
22:20:43.407 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.407 [info] UploadPackV2: collected 3 objects, generating pack
22:20:43.407 [info] UploadPackV2: pack generated, 191 bytes
22:20:43.407 [info] UploadPackV2: fetch response 213 bytes
22:20:43.431 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.454 [info] UploadPackV2: processing ls-refs command
22:20:43.499 [info] UploadPackV2: processing fetch command
22:20:43.499 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.500 [info] UploadPackV2: collected 3 objects, generating pack
22:20:43.500 [info] UploadPackV2: collected 32 objects, generating pack
22:20:43.500 [info] UploadPackV2: pack generated, 210 bytes
22:20:43.501 [info] UploadPackV2: fetch response 232 bytes
22:20:43.501 [info] UploadPackV2: pack generated, 1862 bytes
22:20:43.502 [info] UploadPackV2: fetch response 1884 bytes
22:20:43.508 [info] UploadPackV2: processing fetch command
22:20:43.508 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.510 [info] UploadPackV2: collected 24 objects, generating pack
22:20:43.511 [info] UploadPackV2: pack generated, 1411 bytes
22:20:43.511 [info] UploadPackV2: fetch response 1433 bytes
22:20:43.516 [info] UploadPackV2: processing fetch command
22:20:43.516 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.517 [info] UploadPackV2: collected 8 objects, generating pack
22:20:43.517 [info] UploadPackV2: pack generated, 482 bytes
22:20:43.517 [info] UploadPackV2: fetch response 504 bytes
22:20:43.545 [info] UploadPackV2: processing fetch command
22:20:43.545 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.550 [info] UploadPackV2: collected 16 objects, generating pack
22:20:43.550 [info] UploadPackV2: pack generated, 962 bytes
22:20:43.550 [info] UploadPackV2: fetch response 984 bytes
22:20:43.560 [info] UploadPackV2: processing fetch command
22:20:43.560 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.567 [info] UploadPackV2: collected 43 objects, generating pack
22:20:43.568 [info] UploadPackV2: pack generated, 2607 bytes
22:20:43.568 [info] UploadPackV2: fetch response 2629 bytes
22:20:43.575 [info] UploadPackV2: processing fetch command
22:20:43.575 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.576 [info] UploadPackV2: collected 15 objects, generating pack
22:20:43.576 [info] UploadPackV2: pack generated, 958 bytes
22:20:43.576 [info] UploadPackV2: fetch response 980 bytes
22:20:43.584 [info] UploadPackV2: processing fetch command
22:20:43.585 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.586 [info] UploadPackV2: collected 19 objects, generating pack
22:20:43.587 [info] UploadPackV2: pack generated, 1196 bytes
22:20:43.588 [info] UploadPackV2: fetch response 1218 bytes
22:20:43.595 [info] UploadPackV2: processing fetch command
22:20:43.596 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
22:20:43.597 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
22:20:43.599 [info] UploadPackV2: collected 46 objects, generating pack
22:20:43.602 [info] UploadPackV2: pack generated, 2823 bytes
22:20:43.603 [info] UploadPackV2: fetch response 2845 bytes
22:20:43.616 [info] UploadPackV2: processing fetch command
22:20:43.617 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.618 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.618 [info] UploadPackV2: pack generated, 1203 bytes
22:20:43.618 [info] UploadPackV2: fetch response 1225 bytes
22:20:43.629 [info] UploadPackV2: processing fetch command
22:20:43.629 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.633 [info] UploadPackV2: collected 39 objects, generating pack
22:20:43.634 [info] UploadPackV2: pack generated, 2364 bytes
22:20:43.634 [info] UploadPackV2: fetch response 2386 bytes
22:20:43.642 [info] UploadPackV2: processing fetch command
22:20:43.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.643 [info] UploadPackV2: collected 23 objects, generating pack
22:20:43.644 [info] UploadPackV2: pack generated, 1435 bytes
22:20:43.644 [info] UploadPackV2: fetch response 1457 bytes
22:20:43.649 [info] UploadPackV2: processing fetch command
22:20:43.649 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.650 [info] UploadPackV2: collected 30 objects, generating pack
22:20:43.651 [info] UploadPackV2: pack generated, 1860 bytes
22:20:43.652 [info] UploadPackV2: fetch response 1882 bytes
22:20:43.660 [info] UploadPackV2: processing fetch command
22:20:43.661 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.662 [info] UploadPackV2: collected 34 objects, generating pack
22:20:43.664 [info] UploadPackV2: pack generated, 2098 bytes
22:20:43.664 [info] UploadPackV2: fetch response 2120 bytes
22:20:43.674 [info] UploadPackV2: processing fetch command
22:20:43.674 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.676 [info] UploadPackV2: collected 36 objects, generating pack
22:20:43.677 [info] UploadPackV2: pack generated, 2132 bytes
22:20:43.677 [info] UploadPackV2: fetch response 2154 bytes
22:20:43.685 [info] UploadPackV2: processing fetch command
22:20:43.685 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.686 [info] UploadPackV2: collected 12 objects, generating pack
22:20:43.686 [info] UploadPackV2: pack generated, 723 bytes
22:20:43.686 [info] UploadPackV2: fetch response 745 bytes
22:20:43.690 [info] UploadPackV2: processing fetch command
22:20:43.690 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.691 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.692 [info] UploadPackV2: pack generated, 1203 bytes
22:20:43.692 [info] UploadPackV2: fetch response 1225 bytes
22:20:43.698 [info] UploadPackV2: processing fetch command
22:20:43.698 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.701 [info] UploadPackV2: collected 42 objects, generating pack
22:20:43.702 [info] UploadPackV2: pack generated, 2581 bytes
22:20:43.702 [info] UploadPackV2: fetch response 2603 bytes
22:20:43.707 [info] UploadPackV2: processing fetch command
22:20:43.708 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.708 [info] UploadPackV2: collected 4 objects, generating pack
22:20:43.708 [info] UploadPackV2: pack generated, 241 bytes
22:20:43.708 [info] UploadPackV2: fetch response 263 bytes
22:20:43.712 [info] UploadPackV2: processing fetch command
22:20:43.712 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.713 [info] UploadPackV2: collected 16 objects, generating pack
22:20:43.714 [info] UploadPackV2: pack generated, 962 bytes
22:20:43.714 [info] UploadPackV2: fetch response 984 bytes
22:20:43.717 [info] UploadPackV2: processing fetch command
22:20:43.717 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.718 [info] UploadPackV2: collected 12 objects, generating pack
22:20:43.719 [info] UploadPackV2: pack generated, 723 bytes
22:20:43.719 [info] UploadPackV2: fetch response 745 bytes
22:20:43.722 [info] UploadPackV2: processing fetch command
22:20:43.722 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.723 [info] UploadPackV2: collected 7 objects, generating pack
22:20:43.723 [info] UploadPackV2: pack generated, 475 bytes
22:20:43.723 [info] UploadPackV2: fetch response 497 bytes
22:20:43.730 [info] UploadPackV2: processing fetch command
22:20:43.730 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.732 [info] UploadPackV2: collected 35 objects, generating pack
22:20:43.734 [info] UploadPackV2: pack generated, 2128 bytes
22:20:43.734 [info] UploadPackV2: fetch response 2150 bytes
22:20:43.744 [info] UploadPackV2: processing fetch command
22:20:43.744 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.745 [info] UploadPackV2: processing fetch command
22:20:43.745 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.746 [info] UploadPackV2: collected 31 objects, generating pack
22:20:43.747 [info] UploadPackV2: pack generated, 1887 bytes
22:20:43.747 [info] UploadPackV2: fetch response 1909 bytes
22:20:43.753 [info] UploadPackV2: processing fetch command
22:20:43.753 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.754 [info] UploadPackV2: collected 8 objects, generating pack
22:20:43.753 [info] UploadPackV2: collected 32 objects, generating pack
22:20:43.754 [info] UploadPackV2: pack generated, 482 bytes
22:20:43.754 [info] UploadPackV2: fetch response 504 bytes
22:20:43.759 [info] UploadPackV2: processing fetch command
22:20:43.759 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.760 [info] UploadPackV2: collected 27 objects, generating pack
22:20:43.761 [info] UploadPackV2: pack generated, 1676 bytes
22:20:43.762 [info] UploadPackV2: fetch response 1698 bytes
22:20:43.767 [info] UploadPackV2: processing fetch command
22:20:43.767 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.767 [info] UploadPackV2: collected 7 objects, generating pack
22:20:43.768 [info] UploadPackV2: pack generated, 475 bytes
22:20:43.768 [info] UploadPackV2: fetch response 497 bytes
22:20:43.772 [info] UploadPackV2: processing fetch command
22:20:43.772 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.772 [info] UploadPackV2: collected 8 objects, generating pack
22:20:43.773 [info] UploadPackV2: pack generated, 482 bytes
22:20:43.773 [info] UploadPackV2: fetch response 504 bytes
22:20:43.777 [info] UploadPackV2: processing fetch command
22:20:43.777 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.778 [info] UploadPackV2: collected 23 objects, generating pack
22:20:43.779 [info] UploadPackV2: pack generated, 1435 bytes
22:20:43.779 [info] UploadPackV2: fetch response 1457 bytes
22:20:43.786 [info] UploadPackV2: processing fetch command
22:20:43.786 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.786 [info] UploadPackV2: collected 4 objects, generating pack
22:20:43.787 [info] UploadPackV2: pack generated, 241 bytes
22:20:43.787 [info] UploadPackV2: fetch response 263 bytes
22:20:43.791 [info] UploadPackV2: processing fetch command
22:20:43.791 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.792 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.793 [info] UploadPackV2: pack generated, 1203 bytes
22:20:43.793 [info] UploadPackV2: fetch response 1225 bytes
22:20:43.797 [info] UploadPackV2: processing fetch command
.
22:20:43.797 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.798 [info] UploadPackV2: collected 23 objects, generating pack
22:20:43.799 [info] UploadPackV2: pack generated, 1385 bytes
22:20:43.799 [info] UploadPackV2: fetch response 1407 bytes
22:20:43.805 [info] UploadPackV2: processing fetch command
22:20:43.805 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.808 [info] UploadPackV2: collected 42 objects, generating pack
22:20:43.810 [info] UploadPackV2: pack generated, 2574 bytes
22:20:43.810 [info] UploadPackV2: fetch response 2596 bytes
22:20:43.818 [info] UploadPackV2: processing fetch command
22:20:43.818 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.822 [info] UploadPackV2: collected 32 objects, generating pack
22:20:43.823 [info] UploadPackV2: pack generated, 1893 bytes
22:20:43.823 [info] UploadPackV2: fetch response 1915 bytes
22:20:43.829 [info] UploadPackV2: processing fetch command
22:20:43.829 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.831 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.832 [info] UploadPackV2: pack generated, 1203 bytes
22:20:43.832 [info] UploadPackV2: fetch response 1225 bytes
22:20:43.837 [info] UploadPackV2: processing fetch command
22:20:43.838 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.839 [info] UploadPackV2: collected 27 objects, generating pack
22:20:43.841 [info] UploadPackV2: pack generated, 1644 bytes
22:20:43.841 [info] UploadPackV2: fetch response 1666 bytes
22:20:43.844 [info] UploadPackV2: processing fetch command
22:20:43.844 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.845 [info] UploadPackV2: collected 7 objects, generating pack
22:20:43.846 [info] UploadPackV2: pack generated, 475 bytes
22:20:43.846 [info] UploadPackV2: fetch response 497 bytes
22:20:43.852 [info] UploadPackV2: processing fetch command
22:20:43.852 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.855 [info] UploadPackV2: collected 47 objects, generating pack
22:20:43.856 [info] UploadPackV2: pack generated, 2846 bytes
22:20:43.856 [info] UploadPackV2: fetch response 2868 bytes
22:20:43.867 [info] UploadPackV2: processing fetch command
22:20:43.867 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.868 [info] UploadPackV2: collected 15 objects, generating pack
22:20:43.868 [info] UploadPackV2: pack generated, 956 bytes
22:20:43.868 [info] UploadPackV2: fetch response 978 bytes
22:20:43.871 [info] UploadPackV2: processing fetch command
22:20:43.871 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.871 [info] UploadPackV2: collected 4 objects, generating pack
22:20:43.871 [info] UploadPackV2: pack generated, 241 bytes
22:20:43.872 [info] UploadPackV2: fetch response 263 bytes
22:20:43.876 [info] UploadPackV2: processing fetch command
22:20:43.876 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.879 [info] UploadPackV2: collected 40 objects, generating pack
22:20:43.881 [info] UploadPackV2: pack generated, 2373 bytes
22:20:43.882 [info] UploadPackV2: fetch response 2395 bytes
22:20:43.892 [info] UploadPackV2: processing fetch command
22:20:43.892 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.892 [info] UploadPackV2: collected 19 objects, generating pack
22:20:43.893 [info] UploadPackV2: pack generated, 1144 bytes
22:20:43.893 [info] UploadPackV2: fetch response 1166 bytes
22:20:43.898 [info] UploadPackV2: processing fetch command
22:20:43.898 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.899 [info] UploadPackV2: collected 35 objects, generating pack
22:20:43.900 [info] UploadPackV2: pack generated, 2105 bytes
22:20:43.900 [info] UploadPackV2: fetch response 2127 bytes
22:20:43.906 [info] UploadPackV2: processing fetch command
22:20:43.906 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.906 [info] UploadPackV2: collected 8 objects, generating pack
22:20:43.906 [info] UploadPackV2: pack generated, 482 bytes
22:20:43.906 [info] UploadPackV2: fetch response 504 bytes
22:20:43.910 [info] UploadPackV2: processing fetch command
22:20:43.910 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.911 [info] UploadPackV2: collected 4 objects, generating pack
22:20:43.911 [info] UploadPackV2: pack generated, 241 bytes
22:20:43.911 [info] UploadPackV2: fetch response 263 bytes
22:20:43.913 [info] UploadPackV2: processing fetch command
22:20:43.913 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.914 [info] UploadPackV2: collected 11 objects, generating pack
22:20:43.915 [info] UploadPackV2: pack generated, 717 bytes
22:20:43.915 [info] UploadPackV2: fetch response 739 bytes
22:20:43.915 [info] UploadPackV2: pack generated, 2459813 bytes
22:20:43.923 [info] UploadPackV2: fetch response 2460020 bytes
22:20:43.923 [info] UploadPackV2: processing fetch command
22:20:43.923 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.925 [info] UploadPackV2: processing fetch command
22:20:43.925 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.926 [info] UploadPackV2: collected 15 objects, generating pack
22:20:43.927 [info] UploadPackV2: pack generated, 958 bytes
22:20:43.927 [info] UploadPackV2: fetch response 980 bytes
22:20:43.932 [info] UploadPackV2: processing fetch command
22:20:43.932 [info] UploadPackV2: collected 32 objects, streaming pack
22:20:43.932 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.933 [info] UploadPackV2: collected 15 objects, generating pack
22:20:43.934 [info] UploadPackV2: pack generated, 958 bytes
22:20:43.934 [info] UploadPackV2: fetch response 980 bytes
22:20:43.938 [info] UploadPackV2: processing fetch command
22:20:43.938 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.939 [info] UploadPackV2: collected 23 objects, generating pack
22:20:43.939 [info] UploadPackV2: pack generated, 1435 bytes
22:20:43.939 [info] UploadPackV2: fetch response 1457 bytes
22:20:43.944 [info] UploadPackV2: processing fetch command
22:20:43.944 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.945 [info] UploadPackV2: collected 23 objects, generating pack
22:20:43.946 [info] UploadPackV2: pack generated, 1405 bytes
22:20:43.946 [info] UploadPackV2: fetch response 1427 bytes
22:20:43.952 [info] UploadPackV2: processing fetch command
22:20:43.959 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.960 [info] UploadPackV2: collected 7 objects, generating pack
22:20:43.960 [info] UploadPackV2: pack generated, 475 bytes
22:20:43.960 [info] UploadPackV2: fetch response 497 bytes
22:20:43.963 [info] UploadPackV2: processing fetch command
22:20:43.963 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.964 [info] UploadPackV2: collected 16 objects, generating pack
22:20:43.964 [info] UploadPackV2: pack generated, 962 bytes
22:20:43.964 [info] UploadPackV2: fetch response 984 bytes
22:20:43.968 [info] UploadPackV2: processing fetch command
22:20:43.968 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.969 [info] UploadPackV2: collected 16 objects, generating pack
22:20:43.969 [info] UploadPackV2: pack generated, 962 bytes
22:20:43.970 [info] UploadPackV2: fetch response 984 bytes
22:20:43.976 [info] UploadPackV2: processing fetch command
22:20:43.976 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.978 [info] UploadPackV2: collected 20 objects, generating pack
22:20:43.978 [info] UploadPackV2: pack generated, 1203 bytes
22:20:43.978 [info] UploadPackV2: fetch response 1225 bytes
22:20:43.982 [info] UploadPackV2: processing fetch command
22:20:43.982 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.983 [info] UploadPackV2: collected 12 objects, generating pack
22:20:43.983 [info] UploadPackV2: pack generated, 723 bytes
22:20:43.983 [info] UploadPackV2: fetch response 745 bytes
22:20:43.991 [info] UploadPackV2: processing fetch command
22:20:43.991 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:43.994 [info] UploadPackV2: collected 75 objects, generating pack
22:20:43.996 [info] UploadPackV2: pack generated, 4504 bytes
22:20:43.996 [info] UploadPackV2: fetch response 4526 bytes
22:20:44.015 [info] UploadPackV2: processing fetch command
22:20:44.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.016 [info] UploadPackV2: collected 20 objects, generating pack
22:20:44.018 [info] UploadPackV2: pack generated, 1203 bytes
22:20:44.018 [info] UploadPackV2: fetch response 1225 bytes
22:20:44.024 [info] UploadPackV2: processing fetch command
22:20:44.024 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.025 [info] UploadPackV2: collected 20 objects, generating pack
22:20:44.026 [info] UploadPackV2: pack generated, 1203 bytes
22:20:44.026 [info] UploadPackV2: fetch response 1225 bytes
22:20:44.034 [info] UploadPackV2: processing fetch command
22:20:44.034 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.037 [info] UploadPackV2: collected 68 objects, generating pack
22:20:44.040 [info] UploadPackV2: pack generated, 4023 bytes
22:20:44.040 [info] UploadPackV2: fetch response 4045 bytes
22:20:44.050 [info] UploadPackV2: processing fetch command
22:20:44.050 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.051 [info] UploadPackV2: collected 15 objects, generating pack
22:20:44.052 [info] UploadPackV2: pack generated, 956 bytes
22:20:44.052 [info] UploadPackV2: fetch response 978 bytes
22:20:44.055 [info] UploadPackV2: processing fetch command
22:20:44.055 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.055 [info] UploadPackV2: collected 8 objects, generating pack
22:20:44.056 [info] UploadPackV2: pack generated, 482 bytes
22:20:44.056 [info] UploadPackV2: fetch response 504 bytes
22:20:44.060 [info] UploadPackV2: processing fetch command
22:20:44.060 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.062 [info] UploadPackV2: collected 23 objects, generating pack
22:20:44.062 [info] UploadPackV2: pack generated, 1435 bytes
22:20:44.063 [info] UploadPackV2: fetch response 1457 bytes
22:20:44.069 [info] UploadPackV2: processing fetch command
22:20:44.069 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.071 [info] UploadPackV2: collected 24 objects, generating pack
22:20:44.072 [info] UploadPackV2: pack generated, 1443 bytes
22:20:44.072 [info] UploadPackV2: fetch response 1465 bytes
22:20:44.081 [info] UploadPackV2: processing fetch command
22:20:44.081 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.082 [info] UploadPackV2: collected 11 objects, generating pack
22:20:44.083 [info] UploadPackV2: pack generated, 717 bytes
22:20:44.083 [info] UploadPackV2: fetch response 739 bytes
22:20:44.087 [info] UploadPackV2: processing fetch command
22:20:44.087 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.089 [info] UploadPackV2: collected 26 objects, generating pack
22:20:44.090 [info] UploadPackV2: pack generated, 1616 bytes
22:20:44.090 [info] UploadPackV2: fetch response 1638 bytes
22:20:44.095 [info] UploadPackV2: processing fetch command
22:20:44.095 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.096 [info] UploadPackV2: collected 12 objects, generating pack
22:20:44.097 [info] UploadPackV2: pack generated, 723 bytes
22:20:44.097 [info] UploadPackV2: fetch response 745 bytes
.
22:20:44.104 [info] UploadPackV2: streamed pack 2459813 bytes, 32 objects
.
22:20:44.104 [info] UploadPackV2: fetch streamed 2459813 pack bytes, 32 objects
..
22:20:44.189 [info] UploadPackV2: processing fetch command
22:20:44.189 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.220 [info] UploadPackV2: collected 700 objects, generating pack
22:20:44.241 [info] UploadPackV2: pack generated, 48139 bytes
22:20:44.241 [info] UploadPackV2: fetch response 48161 bytes
..
22:20:44.330 [info] UploadPackV2: processing ls-refs command
.
22:20:44.331 [info] UploadPackV2: processing fetch command
22:20:44.331 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:44.332 [info] UploadPackV2: collected 3 objects, streaming pack
22:20:44.334 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
22:20:44.334 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
........................*****
22:20:45.081 [info] UploadPackV2: processing ls-refs command
22:20:45.083 [info] UploadPackV2: processing fetch command
22:20:45.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:20:45.084 [info] UploadPackV2: collected 9 objects, generating pack
22:20:45.084 [info] UploadPackV2: pack generated, 585 bytes
22:20:45.084 [info] UploadPackV2: fetch response 681 bytes
.
22:20:45.153 [info] UploadPackV2: processing ls-refs command
22:20:45.156 [info] UploadPackV2: processing fetch command
22:20:45.156 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:20:45.157 [info] UploadPackV2: collected 6 objects, generating pack
22:20:45.157 [info] UploadPackV2: pack generated, 513 bytes
22:20:45.157 [info] UploadPackV2: fetch response 535 bytes
.
22:20:45.233 [info] UploadPackV2: processing ls-refs command
22:20:45.236 [info] UploadPackV2: processing fetch command
22:20:45.236 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
22:20:45.237 [info] UploadPackV2: collected 5 objects, generating pack
22:20:45.237 [info] UploadPackV2: pack generated, 319 bytes
22:20:45.237 [info] UploadPackV2: fetch response 341 bytes
..
22:20:45.309 [info] UploadPackV2: processing ls-refs command
22:20:45.311 [info] UploadPackV2: processing fetch command
22:20:45.311 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:20:45.311 [info] UploadPackV2: collected 3 objects, generating pack
22:20:45.311 [info] UploadPackV2: pack generated, 218 bytes
22:20:45.312 [info] UploadPackV2: fetch response 314 bytes
.
22:20:45.381 [info] UploadPackV2: processing ls-refs command
..
22:20:45.433 [info] UploadPackV2: processing ls-refs command
22:20:45.435 [info] UploadPackV2: processing fetch command
22:20:45.435 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:20:45.435 [info] UploadPackV2: collected 3 objects, generating pack
22:20:45.435 [info] UploadPackV2: pack generated, 216 bytes
22:20:45.435 [info] UploadPackV2: fetch response 312 bytes
.
22:20:45.513 [info] UploadPackV2: processing ls-refs command
22:20:45.515 [info] UploadPackV2: processing fetch command
22:20:45.515 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:20:45.515 [info] UploadPackV2: collected 3 objects, generating pack
22:20:45.516 [info] UploadPackV2: pack generated, 216 bytes
22:20:45.516 [info] UploadPackV2: fetch response 312 bytes
22:20:45.585 [info] UploadPackV2: processing ls-refs command
22:20:45.586 [info] UploadPackV2: processing fetch command
22:20:45.586 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:20:45.587 [info] UploadPackV2: collected 12 objects, generating pack
22:20:45.587 [info] UploadPackV2: pack generated, 768 bytes
22:20:45.588 [info] UploadPackV2: fetch response 1002 bytes
.
22:20:45.653 [info] UploadPackV2: processing ls-refs command
22:20:45.656 [info] UploadPackV2: processing fetch command
22:20:45.656 [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
22:20:45.657 [info] UploadPackV2: collected 6 objects, generating pack
22:20:45.657 [info] UploadPackV2: pack generated, 513 bytes
22:20:45.657 [info] UploadPackV2: fetch response 535 bytes
.
22:20:45.733 [info] UploadPackV2: processing ls-refs command
22:20:45.736 [info] UploadPackV2: processing fetch command
22:20:45.736 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
22:20:45.737 [info] UploadPackV2: collected 3 objects, generating pack
22:20:45.737 [info] UploadPackV2: pack generated, 381 bytes
22:20:45.737 [info] UploadPackV2: fetch response 403 bytes
.
22:20:45.805 [info] UploadPackV2: processing ls-refs command
.
22:20:45.861 [info] UploadPackV2: processing ls-refs command
.
22:20:45.917 [info] UploadPackV2: processing ls-refs command
22:20:45.921 [info] UploadPackV2: processing fetch command
22:20:45.921 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
22:20:45.922 [info] UploadPackV2: collected 3 objects, generating pack
22:20:45.922 [info] UploadPackV2: pack generated, 381 bytes
22:20:45.922 [info] UploadPackV2: fetch response 403 bytes
.
22:20:46.001 [info] UploadPackV2: processing ls-refs command
22:20:46.003 [info] UploadPackV2: processing fetch command
22:20:46.003 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:20:46.004 [info] UploadPackV2: collected 9 objects, generating pack
22:20:46.004 [info] UploadPackV2: pack generated, 549 bytes
22:20:46.004 [info] UploadPackV2: fetch response 571 bytes
22:20:46.027 [info] UploadPackV2: processing fetch command
22:20:46.027 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
22:20:46.027 [info] UploadPackV2: fetch response 171 bytes
.
22:20:46.085 [info] UploadPackV2: processing ls-refs command
....
22:21:31.373 [info] UploadPackV2: processing ls-refs command
22:21:31.375 [info] UploadPackV2: processing fetch command
22:21:31.375 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:21:31.375 [info] UploadPackV2: collected 3 objects, generating pack
22:21:31.375 [info] UploadPackV2: pack generated, 183 bytes
22:21:31.375 [info] UploadPackV2: fetch response 205 bytes
..
22:22:01.585 [info] UploadPackV2: processing ls-refs command
22:22:01.587 [info] UploadPackV2: processing fetch command
22:22:01.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:22:01.588 [info] UploadPackV2: collected 6 objects, generating pack
22:22:01.588 [info] UploadPackV2: pack generated, 365 bytes
22:22:01.588 [info] UploadPackV2: fetch response 387 bytes
.
22:22:01.677 [info] UploadPackV2: processing ls-refs command
22:22:01.679 [info] UploadPackV2: processing fetch command
22:22:01.679 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:22:01.679 [info] UploadPackV2: collected 3 objects, generating pack
22:22:01.679 [info] UploadPackV2: pack generated, 201 bytes
22:22:01.680 [info] UploadPackV2: fetch response 223 bytes
..
22:22:31.897 [info] UploadPackV2: processing ls-refs command
22:22:31.899 [info] UploadPackV2: processing fetch command
22:22:31.899 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:22:31.900 [info] UploadPackV2: collected 3 objects, generating pack
22:22:31.900 [info] UploadPackV2: pack generated, 183 bytes
22:22:31.900 [info] UploadPackV2: fetch response 205 bytes
..
22:22:47.121 [info] UploadPackV2: processing ls-refs command
22:22:47.123 [info] UploadPackV2: processing fetch command
22:22:47.123 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:22:47.123 [info] UploadPackV2: collected 6 objects, generating pack
22:22:47.124 [info] UploadPackV2: pack generated, 365 bytes
22:22:47.124 [info] UploadPackV2: fetch response 387 bytes
................
22:23:03.556 [info] The function passed as a handler with ID "graph-query-test-16483" 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
.
22:23:03.557 [info] The function passed as a handler with ID "graph-query-test-16547" 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
..
22:23:03.562 [info] The function passed as a handler with ID "graph-query-test-10244" 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
..........
22:23:03.580 [info] UploadPackV2: processing fetch command
22:23:03.580 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.581 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.582 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.582 [info] UploadPackV2: fetch response 205 bytes
22:23:03.582 [info] UploadPackV2: processing fetch command
22:23:03.582 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.582 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.583 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.583 [info] UploadPackV2: fetch response 205 bytes
22:23:03.583 [info] UploadPackV2: processing fetch command
22:23:03.583 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.583 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.583 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.584 [info] UploadPackV2: fetch response 205 bytes
22:23:03.584 [info] UploadPackV2: processing fetch command
22:23:03.584 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.584 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.584 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.585 [info] UploadPackV2: fetch response 205 bytes
22:23:03.585 [info] UploadPackV2: processing fetch command
22:23:03.585 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.585 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.585 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.585 [info] UploadPackV2: fetch response 205 bytes
22:23:03.586 [info] UploadPackV2: processing fetch command
22:23:03.586 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.586 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.586 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.586 [info] UploadPackV2: fetch response 205 bytes
22:23:03.586 [info] UploadPackV2: processing fetch command
22:23:03.586 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.586 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.587 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.587 [info] UploadPackV2: fetch response 205 bytes
22:23:03.587 [info] UploadPackV2: processing fetch command
22:23:03.587 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.587 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.588 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.588 [info] UploadPackV2: fetch response 205 bytes
22:23:03.588 [info] UploadPackV2: processing fetch command
22:23:03.588 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.588 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.589 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.589 [info] UploadPackV2: fetch response 205 bytes
22:23:03.589 [info] UploadPackV2: processing fetch command
22:23:03.589 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.589 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.589 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.590 [info] UploadPackV2: fetch response 205 bytes
22:23:03.590 [info] UploadPackV2: processing fetch command
22:23:03.590 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.590 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.590 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.590 [info] UploadPackV2: fetch response 205 bytes
22:23:03.591 [info] UploadPackV2: processing fetch command
22:23:03.591 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.591 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.591 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.591 [info] UploadPackV2: fetch response 205 bytes
22:23:03.592 [info] UploadPackV2: processing fetch command
22:23:03.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.592 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.592 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.592 [info] UploadPackV2: fetch response 205 bytes
22:23:03.592 [info] UploadPackV2: processing fetch command
22:23:03.593 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.593 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.593 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.593 [info] UploadPackV2: fetch response 205 bytes
22:23:03.593 [info] UploadPackV2: processing fetch command
22:23:03.594 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.594 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.594 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.594 [info] UploadPackV2: fetch response 205 bytes
22:23:03.594 [info] UploadPackV2: processing fetch command
22:23:03.594 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.595 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.595 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.595 [info] UploadPackV2: fetch response 205 bytes
22:23:03.595 [info] UploadPackV2: processing fetch command
22:23:03.595 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.595 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.596 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.596 [info] UploadPackV2: fetch response 205 bytes
22:23:03.596 [info] UploadPackV2: processing fetch command
22:23:03.596 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.596 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.597 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.597 [info] UploadPackV2: fetch response 205 bytes
22:23:03.597 [info] UploadPackV2: processing fetch command
22:23:03.597 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.597 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.597 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.598 [info] UploadPackV2: fetch response 205 bytes
22:23:03.598 [info] UploadPackV2: processing fetch command
.
22:23:03.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.598 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.598 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.599 [info] UploadPackV2: fetch response 205 bytes
22:23:03.599 [info] UploadPackV2: processing fetch command
22:23:03.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.599 [info] UploadPackV2: collected 3 objects, generating pack
22:23:03.599 [info] UploadPackV2: pack generated, 183 bytes
22:23:03.599 [info] UploadPackV2: fetch response 205 bytes
22:23:03.697 [info] UploadPackV2: processing ls-refs command
22:23:03.699 [info] UploadPackV2: processing fetch command
22:23:03.699 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.723 [info] UploadPackV2: collected 600 objects, generating pack
22:23:03.742 [info] UploadPackV2: pack generated, 45197 bytes
22:23:03.742 [info] UploadPackV2: fetch response 45219 bytes
.
22:23:03.829 [info] UploadPackV2: processing ls-refs command
.
22:23:03.836 [info] UploadPackV2: processing fetch command
22:23:03.836 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:03.836 [info] UploadPackV2: collected 0 objects, generating pack
22:23:03.837 [info] UploadPackV2: pack generated, 32 bytes
22:23:03.837 [info] UploadPackV2: fetch response 54 bytes
.
22:23:04.109 [info] UploadPackV2: processing ls-refs command
22:23:04.111 [info] UploadPackV2: processing fetch command
22:23:04.111 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:04.120 [info] UploadPackV2: collected 240 objects, generating pack
22:23:04.124 [info] UploadPackV2: pack generated, 16258 bytes
22:23:04.125 [info] UploadPackV2: fetch response 16280 bytes
.
22:23:04.201 [info] UploadPackV2: processing ls-refs command
.
22:23:04.357 [info] UploadPackV2: processing ls-refs command
22:23:04.359 [info] UploadPackV2: processing fetch command
22:23:04.359 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:23:04.360 [info] UploadPackV2: collected 3 objects, generating pack
22:23:04.360 [info] UploadPackV2: pack generated, 231 bytes
22:23:04.360 [info] UploadPackV2: fetch response 327 bytes
.
22:23:04.379 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303406878" 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
22:23:04.379 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303406846" 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
.
22:23:04.380 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303406814" 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
22:23:04.380 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303406782" 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
.
22:23:04.381 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303406750" 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
22:23:04.381 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303406718" 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
.
22:23:04.382 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303406686" 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
22:23:04.383 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303406654" 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
..
22:23:19.513 [info] UploadPackV2: processing ls-refs command
22:23:19.515 [info] UploadPackV2: processing fetch command
22:23:19.515 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.516 [info] UploadPackV2: collected 3 objects, generating pack
22:23:19.516 [info] UploadPackV2: pack generated, 196 bytes
22:23:19.517 [info] UploadPackV2: fetch response 218 bytes
.
22:23:19.585 [info] UploadPackV2: processing ls-refs command
22:23:19.587 [info] UploadPackV2: processing fetch command
22:23:19.587 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.588 [info] UploadPackV2: collected 3 objects, generating pack
22:23:19.588 [info] UploadPackV2: pack generated, 185 bytes
22:23:19.588 [info] UploadPackV2: fetch response 207 bytes
...................
22:23:19.653 [info] UploadPackV2: processing ls-refs command
22:23:19.657 [info] UploadPackV2: processing fetch command
22:23:19.657 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.661 [info] UploadPackV2: collected 180 objects, generating pack
22:23:19.664 [info] UploadPackV2: pack generated, 11106 bytes
22:23:19.664 [info] UploadPackV2: fetch response 11128 bytes
.
22:23:19.710 [info] UploadPackV2: processing ls-refs command
22:23:19.714 [info] UploadPackV2: processing fetch command
22:23:19.714 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.715 [info] UploadPackV2: collected 15 objects, generating pack
22:23:19.715 [info] UploadPackV2: pack generated, 919 bytes
22:23:19.715 [info] UploadPackV2: fetch response 941 bytes
..
22:23:19.867 [info] UploadPackV2: processing fetch command
22:23:19.867 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.868 [info] UploadPackV2: collected 3 objects, generating pack
22:23:19.868 [info] UploadPackV2: pack generated, 183 bytes
22:23:19.868 [info] UploadPackV2: fetch response 205 bytes
.
22:23:19.894 [info] UploadPackV2: processing ls-refs command
22:23:19.898 [info] UploadPackV2: processing fetch command
22:23:19.898 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.899 [info] UploadPackV2: collected 3 objects, generating pack
22:23:19.899 [info] UploadPackV2: pack generated, 183 bytes
22:23:19.899 [info] UploadPackV2: fetch response 205 bytes
.
22:23:19.937 [info] UploadPackV2: processing ls-refs command
22:23:19.940 [info] UploadPackV2: processing fetch command
22:23:19.940 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:19.940 [info] UploadPackV2: collected 9 objects, generating pack
22:23:19.941 [info] UploadPackV2: pack generated, 549 bytes
22:23:19.941 [info] UploadPackV2: fetch response 571 bytes
22:23:19.974 [info] UploadPackV2: processing ls-refs command
.
22:23:20.002 [info] UploadPackV2: processing ls-refs command
22:23:20.006 [info] UploadPackV2: processing fetch command
22:23:20.006 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:20.006 [info] UploadPackV2: collected 6 objects, generating pack
22:23:20.007 [info] UploadPackV2: pack generated, 366 bytes
22:23:20.007 [info] UploadPackV2: fetch response 388 bytes
22:23:20.041 [info] UploadPackV2: processing ls-refs command
.
22:23:20.047 [info] The function passed as a handler with ID "telemetry-test-16962" 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
22:23:20.048 [info] UploadPackV2: processing fetch command
22:23:20.048 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:23:20.048 [info] UploadPackV2: collected 3 objects, generating pack
22:23:20.048 [info] UploadPackV2: pack generated, 183 bytes
22:23:20.048 [info] UploadPackV2: fetch response 205 bytes
.
22:23:20.049 [info] The function passed as a handler with ID "telemetry-test-16931" 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
22:23:20.050 [info] UploadPackV2: processing fetch command
22:23:20.050 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:20.050 [info] UploadPackV2: collected 3 objects, generating pack
22:23:20.050 [info] UploadPackV2: pack generated, 186 bytes
22:23:20.050 [info] UploadPackV2: fetch response 208 bytes
.
22:23:20.054 [info] The function passed as a handler with ID "telemetry-test-16963" 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
.
22:23:35.120 [info] The function passed as a handler with ID "telemetry-test-16994" 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
22:23:35.120 [info] UploadPackV2: processing fetch command
22:23:35.120 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
22:23:35.121 [info] UploadPackV2: collected 2 objects, generating pack
22:23:35.121 [info] UploadPackV2: pack generated, 169 bytes
.
22:23:35.121 [info] UploadPackV2: fetch response 191 bytes
***********
22:23:35.181 [info] UploadPackV2: processing ls-refs command
22:23:35.183 [info] UploadPackV2: processing fetch command
22:23:35.183 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:35.183 [info] UploadPackV2: collected 6 objects, generating pack
22:23:35.184 [info] UploadPackV2: pack generated, 365 bytes
22:23:35.184 [info] UploadPackV2: fetch response 387 bytes
22:23:35.185 [info] UploadPackV2: processing ls-refs command
22:23:35.187 [info] UploadPackV2: processing fetch command
22:23:35.187 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:35.188 [info] UploadPackV2: collected 6 objects, generating pack
22:23:35.188 [info] UploadPackV2: pack generated, 365 bytes
22:23:35.188 [info] UploadPackV2: fetch response 387 bytes
.
22:23:35.301 [info] UploadPackV2: processing ls-refs command
22:23:35.303 [info] UploadPackV2: processing fetch command
22:23:35.303 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:35.303 [info] UploadPackV2: collected 6 objects, generating pack
22:23:35.304 [info] UploadPackV2: pack generated, 365 bytes
22:23:35.304 [info] UploadPackV2: fetch response 387 bytes
.
22:23:50.457 [info] UploadPackV2: processing ls-refs command
22:23:50.459 [info] UploadPackV2: processing fetch command
22:23:50.459 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:50.460 [info] UploadPackV2: collected 6 objects, generating pack
22:23:50.460 [info] UploadPackV2: pack generated, 365 bytes
22:23:50.460 [info] UploadPackV2: fetch response 387 bytes
22:23:52.765 [info] UploadPackV2: processing ls-refs command
.
22:23:52.837 [info] UploadPackV2: processing ls-refs command
22:23:52.838 [info] UploadPackV2: processing fetch command
22:23:52.838 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:23:52.838 [info] UploadPackV2: collected 3 objects, generating pack
22:23:52.838 [info] UploadPackV2: pack generated, 216 bytes
22:23:52.838 [info] UploadPackV2: fetch response 346 bytes
.
22:23:52.901 [info] UploadPackV2: processing ls-refs command
22:23:52.903 [info] UploadPackV2: processing fetch command
22:23:52.903 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:52.903 [info] UploadPackV2: collected 6 objects, generating pack
22:23:52.903 [info] UploadPackV2: pack generated, 365 bytes
22:23:52.903 [info] UploadPackV2: fetch response 387 bytes
22:23:52.946 [info] UploadPackV2: processing fetch command
22:23:52.946 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
22:23:52.946 [info] UploadPackV2: fetch response 122 bytes
.
22:23:52.950 [info] UploadPackV2: processing fetch command
22:23:52.950 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:52.950 [info] UploadPackV2: collected 3 objects, generating pack
22:23:52.950 [info] UploadPackV2: pack generated, 183 bytes
.
22:23:52.950 [info] UploadPackV2: fetch response 205 bytes
22:23:53.013 [info] UploadPackV2: processing ls-refs command
22:23:53.015 [info] UploadPackV2: processing fetch command
22:23:53.015 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.016 [info] UploadPackV2: collected 6 objects, generating pack
22:23:53.016 [info] UploadPackV2: pack generated, 366 bytes
22:23:53.016 [info] UploadPackV2: fetch response 388 bytes
22:23:53.077 [info] UploadPackV2: processing ls-refs command
22:23:53.078 [info] UploadPackV2: processing fetch command
22:23:53.078 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
22:23:53.078 [info] UploadPackV2: fetch response 32 bytes
22:23:53.079 [info] UploadPackV2: processing fetch command
22:23:53.079 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.079 [info] UploadPackV2: collected 3 objects, generating pack
22:23:53.079 [info] UploadPackV2: pack generated, 183 bytes
22:23:53.080 [info] UploadPackV2: fetch response 205 bytes
.
22:23:53.165 [info] UploadPackV2: processing ls-refs command
22:23:53.167 [info] UploadPackV2: processing fetch command
22:23:53.167 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.170 [info] UploadPackV2: collected 90 objects, generating pack
22:23:53.171 [info] UploadPackV2: pack generated, 5649 bytes
22:23:53.171 [info] UploadPackV2: fetch response 5671 bytes
22:23:53.481 [info] UploadPackV2: processing ls-refs command
.
22:23:53.541 [info] UploadPackV2: processing ls-refs command
22:23:53.543 [info] UploadPackV2: processing fetch command
22:23:53.543 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.543 [info] UploadPackV2: collected 9 objects, generating pack
22:23:53.544 [info] UploadPackV2: pack generated, 547 bytes
22:23:53.544 [info] UploadPackV2: fetch response 569 bytes
22:23:53.621 [info] UploadPackV2: processing ls-refs command
.
22:23:53.677 [info] UploadPackV2: processing ls-refs command
22:23:53.679 [info] UploadPackV2: processing fetch command
22:23:53.679 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.680 [info] UploadPackV2: collected 15 objects, generating pack
22:23:53.681 [info] UploadPackV2: pack generated, 952 bytes
22:23:53.681 [info] UploadPackV2: fetch response 974 bytes
.
22:23:53.757 [info] UploadPackV2: processing ls-refs command
22:23:53.759 [info] UploadPackV2: processing fetch command
22:23:53.760 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.760 [info] UploadPackV2: collected 3 objects, generating pack
22:23:53.761 [info] UploadPackV2: pack generated, 196 bytes
22:23:53.761 [info] UploadPackV2: fetch response 218 bytes
.
22:23:53.833 [info] UploadPackV2: processing ls-refs command
22:23:53.835 [info] UploadPackV2: processing fetch command
22:23:53.835 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
22:23:53.836 [info] UploadPackV2: collected 3 objects, generating pack
22:23:53.836 [info] UploadPackV2: pack generated, 185 bytes
22:23:53.836 [info] UploadPackV2: fetch response 207 bytes
22:23:53.897 [info] UploadPackV2: processing ls-refs command
.
22:23:53.969 [info] UploadPackV2: processing ls-refs command
22:23:53.970 [info] UploadPackV2: processing fetch command
22:23:53.970 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
22:23:53.971 [info] UploadPackV2: collected 3 objects, generating pack
22:23:53.971 [info] UploadPackV2: pack generated, 200 bytes
22:23:53.971 [info] UploadPackV2: fetch response 256 bytes
.
Finished in 205.3 seconds (16.3s async, 188.9s sync)
Result: 971 passed (2 properties, 969 tests), 16 skipped, 51 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info