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: DESKTOP-12GQBKK paused linux/x86_64
Started: Jul 31, 2026 at 04:18 UTC Completed: Jul 31, 2026 at 04:22 UTC Duration: 3m 50s
Exit code: 0

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 5 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
Running ExUnit with seed: 617127, max_cases: 40
Excluding tags: [:s3]
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: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
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: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
497 │ {_tip, parent} =
│ ~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
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
..................................................................................................................................................................................................................................................................................................................................
04:18:59.885 [info] The function passed as a handler with ID #Reference<0.1974859342.3909877776.168161> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: 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 "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
1131 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1131: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
1161 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1161:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
.......................................................................................................................................................................................................
04:19:01.465 [info] The function passed as a handler with ID "test-fail-#Reference<0.1974859342.3909877768.169543>" 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
....
04:19:01.466 [info] The function passed as a handler with ID "test-#Reference<0.1974859342.3909877765.170880>" 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 "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
.......................................................................................................
04:19:01.587 [info] The function passed as a handler with ID #Reference<0.1974859342.3909877767.170545> 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
.................................
04:19:01.631 [warning] post_receive hook failed: "webhook failed"
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
848 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:848:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:218:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split across two feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
259 │ <<p1::binary-size(s1), rest::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:259:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s2" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:25: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "s1" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
260 │ <<p2::binary-size(s2 - s1), p3::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:260:30: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles clone data split into three feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
321 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:321:28: ExGitObjectstore.Protocol.UploadPackTest."test buffering split data handles fetch with haves split across feeds"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
360 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_test.exs:360:28: ExGitObjectstore.Protocol.UploadPackTest.extract_pkt_payload/3
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
................................................................................................
04:19:02.479 [info] UploadPackV2: processing fetch command
04:19:02.479 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
04:19:02.486 [info] UploadPackV2: collected 163 objects, generating pack
..
04:19:02.489 [info] UploadPackV2: pack generated, 15089 bytes
.
04:19:02.489 [info] UploadPackV2: fetch response 15111 bytes
..........................................
04:19:02.501 [info] UploadPackV2: processing fetch command
04:19:02.501 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
04:19:02.501 [info] UploadPackV2: fetch response 73 bytes
04:19:02.501 [info] UploadPackV2: processing fetch command
04:19:02.501 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
04:19:02.501 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.
04:19:02.502 [info] UploadPackV2: processing fetch command
04:19:02.502 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.502 [info] UploadPackV2: collected 3 objects, generating pack
.
04:19:02.502 [info] UploadPackV2: pack generated, 195 bytes
.
04:19:02.502 [info] UploadPackV2: fetch response 217 bytes
04:19:02.502 [info] UploadPackV2: processing fetch command
04:19:02.502 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.502 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.503 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.503 [info] UploadPackV2: fetch response 497 bytes
04:19:02.504 [info] UploadPackV2: processing fetch command
04:19:02.504 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.504 [info] UploadPackV2: collected 3 objects, streaming pack
.
04:19:02.508 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
.
04:19:02.508 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
.....
04:19:02.523 [info] UploadPackV2: processing fetch command
04:19:02.523 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.530 [info] UploadPackV2: collected 39 objects, generating pack
04:19:02.531 [info] UploadPackV2: pack generated, 2347 bytes
.
04:19:02.531 [info] UploadPackV2: fetch response 2369 bytes
..
04:19:02.533 [info] UploadPackV2: processing fetch command
04:19:02.533 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.533 [info] UploadPackV2: collected 8 objects, generating pack
04:19:02.534 [info] UploadPackV2: pack generated, 482 bytes
04:19:02.534 [info] UploadPackV2: fetch response 504 bytes
04:19:02.535 [info] UploadPackV2: processing fetch command
.
04:19:02.535 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.538 [info] UploadPackV2: collected 62 objects, generating pack
.
04:19:02.538 [info] UploadPackV2: pack generated, 3775 bytes
...
04:19:02.539 [info] UploadPackV2: fetch response 3797 bytes
...
04:19:02.563 [info] UploadPackV2: processing fetch command
.
04:19:02.563 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.565 [info] UploadPackV2: processing fetch command
.
04:19:02.565 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.565 [info] UploadPackV2: collected 8 objects, generating pack
04:19:02.565 [info] UploadPackV2: pack generated, 482 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
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
04:19:02.565 [info] UploadPackV2: fetch response 504 bytes
.
04:19:02.566 [info] UploadPackV2: processing fetch command
..
04:19:02.566 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.567 [info] UploadPackV2: collected 15 objects, generating pack
.
04:19:02.567 [info] UploadPackV2: pack generated, 958 bytes
.
04:19:02.567 [info] UploadPackV2: fetch response 980 bytes
..
04:19:02.568 [info] UploadPackV2: processing fetch command
.
04:19:02.568 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.568 [info] UploadPackV2: collected 19 objects, generating pack
.
04:19:02.568 [info] UploadPackV2: pack generated, 1144 bytes
.......
04:19:02.568 [info] UploadPackV2: fetch response 1166 bytes
....
04:19:02.570 [info] UploadPackV2: processing fetch command
.
04:19:02.570 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.571 [info] UploadPackV2: collected 27 objects, generating pack
04:19:02.571 [info] UploadPackV2: pack generated, 1678 bytes
04:19:02.571 [info] UploadPackV2: fetch response 1700 bytes
04:19:02.573 [info] UploadPackV2: processing fetch command
04:19:02.573 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.573 [info] UploadPackV2: collected 24 objects, generating pack
04:19:02.573 [info] UploadPackV2: pack generated, 1443 bytes
04:19:02.573 [info] UploadPackV2: fetch response 1465 bytes
04:19:02.574 [info] UploadPackV2: processing fetch command
04:19:02.574 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.575 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.575 [info] UploadPackV2: pack generated, 1437 bytes
04:19:02.575 [info] UploadPackV2: fetch response 1459 bytes
04:19:02.576 [info] UploadPackV2: processing fetch command
04:19:02.576 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.576 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.577 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.577 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.578 [info] UploadPackV2: processing fetch command
04:19:02.578 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.578 [info] UploadPackV2: collected 20 objects, generating pack
04:19:02.579 [info] UploadPackV2: pack generated, 1203 bytes
04:19:02.579 [info] UploadPackV2: fetch response 1225 bytes
04:19:02.580 [info] UploadPackV2: processing fetch command
04:19:02.580 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.581 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.581 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.581 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.582 [info] UploadPackV2: processing fetch command
04:19:02.582 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.582 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.582 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.582 [info] UploadPackV2: fetch response 497 bytes
04:19:02.584 [info] UploadPackV2: processing fetch command
04:19:02.584 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.584 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.584 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.584 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.587 [info] UploadPackV2: processing fetch command
04:19:02.587 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.591 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.592 [info] UploadPackV2: pack generated, 714 bytes
04:19:02.592 [info] UploadPackV2: fetch response 736 bytes
04:19:02.594 [info] UploadPackV2: collected 32 objects, streaming pack
04:19:02.612 [info] UploadPackV2: processing fetch command
04:19:02.612 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.613 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.613 [info] UploadPackV2: pack generated, 1435 bytes
04:19:02.622 [info] UploadPackV2: fetch response 1457 bytes
04:19:02.641 [info] UploadPackV2: processing fetch command
04:19:02.641 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.641 [info] UploadPackV2: collected 27 objects, generating pack
04:19:02.642 [info] UploadPackV2: pack generated, 1676 bytes
........
04:19:02.642 [info] UploadPackV2: fetch response 1698 bytes
04:19:02.643 [info] UploadPackV2: processing fetch command
04:19:02.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.643 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.643 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.643 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.657 [info] UploadPackV2: processing fetch command
04:19:02.657 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.658 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.676 [info] UploadPackV2: streamed pack 2459752 bytes, 32 objects
04:19:02.713 [info] UploadPackV2: fetch streamed 2459752 pack bytes, 32 objects
04:19:02.713 [info] UploadPackV2: pack generated, 1437 bytes
04:19:02.713 [info] UploadPackV2: fetch response 1459 bytes
04:19:02.715 [info] UploadPackV2: processing fetch command
04:19:02.716 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.716 [info] UploadPackV2: collected 24 objects, generating pack
04:19:02.717 [info] UploadPackV2: pack generated, 1443 bytes
04:19:02.717 [info] UploadPackV2: fetch response 1465 bytes
04:19:02.720 [info] UploadPackV2: processing fetch command
04:19:02.721 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.721 [info] UploadPackV2: collected 8 objects, generating pack
04:19:02.721 [info] UploadPackV2: pack generated, 482 bytes
04:19:02.721 [info] UploadPackV2: fetch response 504 bytes
04:19:02.726 [info] UploadPackV2: processing fetch command
04:19:02.726 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.726 [info] UploadPackV2: collected 4 objects, generating pack
04:19:02.726 [info] UploadPackV2: pack generated, 241 bytes
04:19:02.726 [info] UploadPackV2: fetch response 263 bytes
04:19:02.728 [info] UploadPackV2: processing fetch command
04:19:02.728 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.729 [info] UploadPackV2: collected 39 objects, generating pack
04:19:02.731 [info] UploadPackV2: pack generated, 2347 bytes
04:19:02.731 [info] UploadPackV2: fetch response 2369 bytes
04:19:02.736 [info] UploadPackV2: processing fetch command
04:19:02.737 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.737 [info] UploadPackV2: collected 31 objects, generating pack
04:19:02.739 [info] UploadPackV2: pack generated, 1887 bytes
04:19:02.739 [info] UploadPackV2: fetch response 1909 bytes
04:19:02.743 [info] UploadPackV2: processing fetch command
04:19:02.743 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.743 [info] UploadPackV2: collected 16 objects, generating pack
04:19:02.744 [info] UploadPackV2: processing ls-refs command
.
04:19:02.745 [info] UploadPackV2: processing fetch command
04:19:02.745 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.745 [info] UploadPackV2: pack generated, 962 bytes
04:19:02.745 [info] UploadPackV2: collected 3 objects, streaming pack
04:19:02.745 [info] UploadPackV2: fetch response 984 bytes
04:19:02.746 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
04:19:02.746 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
04:19:02.747 [info] UploadPackV2: processing fetch command
04:19:02.747 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.748 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.748 [info] UploadPackV2: pack generated, 984 bytes
.
04:19:02.748 [info] UploadPackV2: fetch response 1006 bytes
04:19:02.749 [info] UploadPackV2: processing fetch command
04:19:02.749 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.750 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.750 [info] UploadPackV2: pack generated, 1435 bytes
04:19:02.750 [info] UploadPackV2: fetch response 1457 bytes
04:19:02.752 [info] UploadPackV2: processing fetch command
04:19:02.752 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.753 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.753 [info] UploadPackV2: pack generated, 924 bytes
04:19:02.753 [info] UploadPackV2: fetch response 946 bytes
04:19:02.754 [info] UploadPackV2: processing fetch command
04:19:02.755 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.755 [info] UploadPackV2: collected 16 objects, generating pack
04:19:02.755 [info] UploadPackV2: pack generated, 962 bytes
04:19:02.755 [info] UploadPackV2: fetch response 984 bytes
04:19:02.756 [info] UploadPackV2: processing fetch command
04:19:02.756 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.757 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.757 [info] UploadPackV2: pack generated, 1196 bytes
04:19:02.757 [info] UploadPackV2: fetch response 1218 bytes
04:19:02.759 [info] UploadPackV2: processing fetch command
04:19:02.759 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.759 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.759 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.759 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.761 [info] UploadPackV2: processing fetch command
04:19:02.761 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.762 [info] UploadPackV2: collected 20 objects, generating pack
04:19:02.763 [info] UploadPackV2: pack generated, 1203 bytes
04:19:02.763 [info] UploadPackV2: fetch response 1225 bytes
04:19:02.766 [info] UploadPackV2: processing fetch command
04:19:02.766 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.766 [info] UploadPackV2: collected 24 objects, generating pack
04:19:02.766 [info] UploadPackV2: pack generated, 1443 bytes
04:19:02.766 [info] UploadPackV2: fetch response 1465 bytes
04:19:02.769 [info] UploadPackV2: processing fetch command
04:19:02.769 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.769 [info] UploadPackV2: collected 16 objects, generating pack
....
04:19:02.770 [info] UploadPackV2: pack generated, 962 bytes
04:19:02.770 [info] UploadPackV2: fetch response 984 bytes
04:19:02.772 [info] UploadPackV2: processing fetch command
04:19:02.772 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.772 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.772 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.772 [info] UploadPackV2: fetch response 497 bytes
04:19:02.774 [info] UploadPackV2: processing fetch command
04:19:02.774 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.774 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.774 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.774 [info] UploadPackV2: fetch response 497 bytes
04:19:02.775 [info] UploadPackV2: processing fetch command
04:19:02.775 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.776 [info] UploadPackV2: processing fetch command
04:19:02.776 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.777 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.777 [info] UploadPackV2: pack generated, 958 bytes
04:19:02.777 [info] UploadPackV2: fetch response 980 bytes
04:19:02.778 [info] UploadPackV2: processing fetch command
04:19:02.778 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.778 [info] UploadPackV2: collected 27 objects, generating pack
04:19:02.779 [info] UploadPackV2: pack generated, 1645 bytes
04:19:02.779 [info] UploadPackV2: fetch response 1667 bytes
04:19:02.781 [info] UploadPackV2: processing fetch command
04:19:02.781 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.781 [info] UploadPackV2: collected 36 objects, generating pack
04:19:02.782 [info] UploadPackV2: pack generated, 2132 bytes
04:19:02.782 [info] UploadPackV2: fetch response 2154 bytes
04:19:02.784 [info] UploadPackV2: collected 700 objects, generating pack
04:19:02.785 [info] UploadPackV2: processing fetch command
04:19:02.785 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.785 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.786 [info] UploadPackV2: pack generated, 714 bytes
04:19:02.786 [info] UploadPackV2: fetch response 736 bytes
04:19:02.788 [info] UploadPackV2: processing fetch command
04:19:02.788 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.788 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.788 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.788 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.790 [info] UploadPackV2: processing fetch command
04:19:02.790 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.790 [info] UploadPackV2: pack generated, 48139 bytes
04:19:02.790 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.790 [info] UploadPackV2: fetch response 48161 bytes
04:19:02.790 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.790 [info] UploadPackV2: fetch response 497 bytes
04:19:02.791 [info] UploadPackV2: processing fetch command
04:19:02.791 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.791 [info] UploadPackV2: collected 16 objects, generating pack
04:19:02.792 [info] UploadPackV2: pack generated, 962 bytes
04:19:02.792 [info] UploadPackV2: fetch response 984 bytes
04:19:02.793 [info] UploadPackV2: processing fetch command
04:19:02.793 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.793 [info] UploadPackV2: collected 12 objects, generating pack
04:19:02.793 [info] UploadPackV2: pack generated, 723 bytes
04:19:02.794 [info] UploadPackV2: fetch response 745 bytes
04:19:02.794 [info] UploadPackV2: processing fetch command
04:19:02.794 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.795 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.795 [info] UploadPackV2: pack generated, 717 bytes
04:19:02.795 [info] UploadPackV2: fetch response 739 bytes
04:19:02.796 [info] UploadPackV2: processing fetch command
04:19:02.796 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.797 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.797 [info] UploadPackV2: pack generated, 717 bytes
04:19:02.797 [info] UploadPackV2: fetch response 739 bytes
04:19:02.800 [info] UploadPackV2: processing fetch command
04:19:02.800 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.801 [info] UploadPackV2: collected 35 objects, generating pack
04:19:02.801 [info] UploadPackV2: pack generated, 2128 bytes
04:19:02.801 [info] UploadPackV2: fetch response 2150 bytes
04:19:02.803 [info] UploadPackV2: processing fetch command
04:19:02.803 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.803 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.804 [info] UploadPackV2: pack generated, 956 bytes
04:19:02.804 [info] UploadPackV2: fetch response 978 bytes
04:19:02.807 [info] UploadPackV2: processing fetch command
04:19:02.807 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.808 [info] UploadPackV2: collected 39 objects, generating pack
04:19:02.808 [info] UploadPackV2: pack generated, 2340 bytes
04:19:02.808 [info] UploadPackV2: fetch response 2362 bytes
..
04:19:02.811 [info] UploadPackV2: processing fetch command
04:19:02.811 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.811 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.811 [info] UploadPackV2: pack generated, 191 bytes
04:19:02.811 [info] UploadPackV2: fetch response 213 bytes
.
04:19:02.811 [info] UploadPackV2: processing fetch command
04:19:02.811 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.811 [info] UploadPackV2: processing fetch command
.
04:19:02.811 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.812 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.812 [info] UploadPackV2: pack generated, 191 bytes
04:19:02.812 [info] UploadPackV2: fetch response 213 bytes
04:19:02.812 [info] UploadPackV2: processing ls-refs command
04:19:02.812 [info] UploadPackV2: collected 24 objects, generating pack
04:19:02.812 [info] UploadPackV2: pack generated, 1443 bytes
04:19:02.812 [info] UploadPackV2: fetch response 1465 bytes
04:19:02.813 [info] UploadPackV2: processing ls-refs command
.
04:19:02.813 [info] UploadPackV2: processing fetch command
04:19:02.813 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.813 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.813 [info] UploadPackV2: pack generated, 206 bytes
04:19:02.813 [info] UploadPackV2: fetch response 228 bytes
04:19:02.814 [info] UploadPackV2: processing fetch command
04:19:02.814 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.814 [info] UploadPackV2: collected 6 objects, generating pack
04:19:02.814 [info] UploadPackV2: pack generated, 414 bytes
.
04:19:02.814 [info] UploadPackV2: fetch response 436 bytes
04:19:02.815 [info] UploadPackV2: processing fetch command
04:19:02.815 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.815 [info] UploadPackV2: collected 0 objects, generating pack
04:19:02.815 [info] UploadPackV2: pack generated, 32 bytes
04:19:02.815 [info] UploadPackV2: fetch response 54 bytes
04:19:02.815 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
04:19:02.815 [info] UploadPackV2: processing fetch command
04:19:02.815 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.816 [info] UploadPackV2: collected 3 objects, generating pack
.
04:19:02.816 [info] UploadPackV2: pack generated, 191 bytes
04:19:02.816 [info] UploadPackV2: fetch response 213 bytes
04:19:02.816 [info] UploadPackV2: processing fetch command
04:19:02.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.816 [info] UploadPackV2: processing fetch command
04:19:02.816 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.816 [info] UploadPackV2: collected 8 objects, generating pack
04:19:02.816 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.816 [info] UploadPackV2: pack generated, 482 bytes
04:19:02.816 [info] UploadPackV2: fetch response 504 bytes
04:19:02.817 [info] UploadPackV2: pack generated, 195 bytes
.
04:19:02.817 [info] UploadPackV2: fetch response 217 bytes
04:19:02.818 [info] UploadPackV2: processing fetch command
04:19:02.818 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.818 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.818 [info] UploadPackV2: pack generated, 714 bytes
04:19:02.818 [info] UploadPackV2: fetch response 736 bytes
04:19:02.819 [info] UploadPackV2: processing ls-refs command
04:19:02.820 [info] UploadPackV2: processing fetch command
04:19:02.820 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.820 [info] UploadPackV2: processing fetch command
04:19:02.820 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.820 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.820 [info] UploadPackV2: pack generated, 210 bytes
04:19:02.820 [info] UploadPackV2: fetch response 232 bytes
04:19:02.820 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.821 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.821 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.823 [info] UploadPackV2: processing fetch command
04:19:02.823 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.824 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.824 [info] UploadPackV2: pack generated, 1196 bytes
04:19:02.825 [info] UploadPackV2: fetch response 1218 bytes
04:19:02.827 [info] UploadPackV2: processing fetch command
04:19:02.827 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.827 [info] UploadPackV2: collected 12 objects, generating pack
04:19:02.828 [info] UploadPackV2: pack generated, 723 bytes
04:19:02.828 [info] UploadPackV2: fetch response 745 bytes
.
04:19:02.830 [info] UploadPackV2: processing fetch command
04:19:02.830 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.831 [info] UploadPackV2: collected 31 objects, generating pack
04:19:02.831 [info] UploadPackV2: pack generated, 1865 bytes
04:19:02.831 [info] UploadPackV2: fetch response 1887 bytes
.
04:19:02.833 [info] UploadPackV2: processing fetch command
04:19:02.833 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.834 [info] UploadPackV2: collected 27 objects, generating pack
04:19:02.834 [info] UploadPackV2: pack generated, 1678 bytes
04:19:02.834 [info] UploadPackV2: fetch response 1700 bytes
04:19:02.836 [info] UploadPackV2: processing fetch command
04:19:02.836 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.837 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.837 [info] UploadPackV2: pack generated, 1196 bytes
04:19:02.837 [info] UploadPackV2: fetch response 1218 bytes
04:19:02.839 [info] UploadPackV2: processing fetch command
04:19:02.839 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.840 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.840 [info] UploadPackV2: pack generated, 1165 bytes
04:19:02.840 [info] UploadPackV2: fetch response 1187 bytes
04:19:02.841 [info] UploadPackV2: processing fetch command
04:19:02.841 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.842 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.842 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.842 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.845 [info] UploadPackV2: processing fetch command
04:19:02.845 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.845 [info] UploadPackV2: collected 34 objects, generating pack
04:19:02.846 [info] UploadPackV2: pack generated, 2099 bytes
04:19:02.846 [info] UploadPackV2: fetch response 2121 bytes
04:19:02.848 [info] UploadPackV2: processing fetch command
04:19:02.849 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.849 [info] UploadPackV2: collected 35 objects, generating pack
04:19:02.849 [info] UploadPackV2: pack generated, 2109 bytes
04:19:02.849 [info] UploadPackV2: fetch response 2131 bytes
04:19:02.852 [info] UploadPackV2: processing fetch command
04:19:02.852 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.852 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.852 [info] UploadPackV2: pack generated, 1437 bytes
04:19:02.852 [info] UploadPackV2: fetch response 1459 bytes
04:19:02.853 [info] UploadPackV2: processing fetch command
04:19:02.854 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.854 [info] UploadPackV2: processing fetch command
04:19:02.854 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.854 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.854 [info] UploadPackV2: pack generated, 958 bytes
04:19:02.855 [info] UploadPackV2: fetch response 980 bytes
04:19:02.856 [info] UploadPackV2: processing fetch command
04:19:02.857 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.857 [info] UploadPackV2: collected 24 objects, generating pack
04:19:02.857 [info] UploadPackV2: pack generated, 1443 bytes
04:19:02.857 [info] UploadPackV2: fetch response 1465 bytes
04:19:02.860 [info] UploadPackV2: processing fetch command
04:19:02.860 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.860 [info] UploadPackV2: collected 20 objects, generating pack
04:19:02.860 [info] UploadPackV2: pack generated, 1171 bytes
04:19:02.860 [info] UploadPackV2: fetch response 1193 bytes
04:19:02.862 [info] UploadPackV2: collected 600 objects, generating pack
04:19:02.862 [info] UploadPackV2: processing fetch command
04:19:02.862 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.863 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.863 [info] UploadPackV2: pack generated, 1437 bytes
04:19:02.863 [info] UploadPackV2: fetch response 1459 bytes
04:19:02.865 [info] UploadPackV2: processing fetch command
04:19:02.865 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.865 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.865 [info] UploadPackV2: pack generated, 958 bytes
04:19:02.865 [info] UploadPackV2: fetch response 980 bytes
04:19:02.866 [info] UploadPackV2: pack generated, 39862 bytes
04:19:02.866 [info] UploadPackV2: fetch response 39884 bytes
04:19:02.867 [info] UploadPackV2: processing fetch command
04:19:02.867 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.867 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.868 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.868 [info] UploadPackV2: fetch response 497 bytes
04:19:02.868 [info] UploadPackV2: processing fetch command
04:19:02.868 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.869 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.869 [info] UploadPackV2: pack generated, 717 bytes
04:19:02.869 [info] UploadPackV2: fetch response 739 bytes
04:19:02.870 [info] UploadPackV2: processing fetch command
04:19:02.870 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.870 [info] UploadPackV2: collected 12 objects, generating pack
04:19:02.870 [info] UploadPackV2: pack generated, 723 bytes
04:19:02.870 [info] UploadPackV2: fetch response 745 bytes
04:19:02.873 [info] UploadPackV2: processing fetch command
04:19:02.873 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.873 [info] UploadPackV2: collected 4 objects, generating pack
04:19:02.873 [info] UploadPackV2: pack generated, 241 bytes
04:19:02.873 [info] UploadPackV2: fetch response 263 bytes
04:19:02.873 [info] UploadPackV2: processing fetch command
04:19:02.873 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.874 [info] UploadPackV2: collected 20 objects, generating pack
04:19:02.874 [info] UploadPackV2: pack generated, 1203 bytes
04:19:02.874 [info] UploadPackV2: fetch response 1225 bytes
04:19:02.877 [info] UploadPackV2: processing fetch command
04:19:02.877 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.878 [info] UploadPackV2: collected 22 objects, generating pack
04:19:02.878 [info] UploadPackV2: pack generated, 1379 bytes
04:19:02.878 [info] UploadPackV2: fetch response 1401 bytes
04:19:02.879 [info] UploadPackV2: processing fetch command
04:19:02.879 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.880 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.880 [info] UploadPackV2: pack generated, 1196 bytes
04:19:02.880 [info] UploadPackV2: fetch response 1218 bytes
04:19:02.881 [info] UploadPackV2: processing fetch command
04:19:02.881 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.882 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.882 [info] UploadPackV2: pack generated, 926 bytes
04:19:02.882 [info] UploadPackV2: fetch response 948 bytes
04:19:02.883 [info] UploadPackV2: processing fetch command
04:19:02.883 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.883 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.883 [info] UploadPackV2: pack generated, 903 bytes
04:19:02.883 [info] UploadPackV2: fetch response 925 bytes
.
04:19:02.884 [info] UploadPackV2: processing fetch command
04:19:02.884 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.884 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.884 [info] UploadPackV2: pack generated, 194 bytes
04:19:02.884 [info] UploadPackV2: fetch response 216 bytes
.
04:19:02.885 [info] UploadPackV2: processing fetch command
04:19:02.885 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.885 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.885 [info] UploadPackV2: pack generated, 223 bytes
04:19:02.885 [info] UploadPackV2: fetch response 245 bytes
.
04:19:02.886 [info] UploadPackV2: processing fetch command
04:19:02.886 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.886 [info] UploadPackV2: processing fetch command
04:19:02.886 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.886 [info] UploadPackV2: collected 9 objects, streaming pack
04:19:02.886 [info] UploadPackV2: collected 19 objects, generating pack
04:19:02.887 [info] UploadPackV2: pack generated, 1194 bytes
04:19:02.887 [info] UploadPackV2: fetch response 1216 bytes
04:19:02.887 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
04:19:02.887 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
04:19:02.887 [info] UploadPackV2: processing ls-refs command
04:19:02.888 [info] UploadPackV2: processing ls-refs command
.
04:19:02.888 [info] UploadPackV2: processing fetch command
04:19:02.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.888 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.888 [info] UploadPackV2: processing fetch command
04:19:02.889 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.889 [info] UploadPackV2: collected 7 objects, generating pack
04:19:02.889 [info] UploadPackV2: pack generated, 984 bytes
04:19:02.889 [info] UploadPackV2: pack generated, 475 bytes
04:19:02.889 [info] UploadPackV2: fetch response 497 bytes
04:19:02.889 [info] UploadPackV2: fetch response 1006 bytes
04:19:02.889 [info] UploadPackV2: processing fetch command
04:19:02.889 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.889 [info] UploadPackV2: collected 15 objects, streaming pack
04:19:02.890 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
04:19:02.890 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
04:19:02.890 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
04:19:02.892 [info] UploadPackV2: processing fetch command
04:19:02.892 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.893 [info] UploadPackV2: collected 43 objects, generating pack
04:19:02.893 [info] UploadPackV2: pack generated, 2605 bytes
04:19:02.893 [info] UploadPackV2: fetch response 2627 bytes
04:19:02.893 [info] UploadPackV2: processing fetch command
04:19:02.893 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
04:19:02.895 [info] UploadPackV2: collected 90 objects, generating pack
04:19:02.896 [info] UploadPackV2: processing fetch command
04:19:02.896 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.896 [info] UploadPackV2: collected 5 objects, generating pack
04:19:02.896 [info] UploadPackV2: pack generated, 5946 bytes
04:19:02.896 [info] UploadPackV2: fetch response 5968 bytes
04:19:02.897 [info] UploadPackV2: pack generated, 424 bytes
04:19:02.897 [info] UploadPackV2: fetch response 446 bytes
.
04:19:02.899 [info] UploadPackV2: processing fetch command
04:19:02.899 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.899 [info] UploadPackV2: collected 29 objects, generating pack
04:19:02.900 [info] UploadPackV2: pack generated, 2089 bytes
04:19:02.900 [info] UploadPackV2: fetch response 2111 bytes
04:19:02.904 [info] UploadPackV2: processing fetch command
04:19:02.904 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.904 [info] UploadPackV2: collected 6 objects, generating pack
04:19:02.904 [info] UploadPackV2: pack generated, 428 bytes
04:19:02.904 [info] UploadPackV2: fetch response 450 bytes
04:19:02.908 [info] UploadPackV2: processing fetch command
04:19:02.908 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:19:02.909 [info] UploadPackV2: collected 46 objects, generating pack
04:19:02.909 [info] UploadPackV2: pack generated, 3358 bytes
04:19:02.910 [info] UploadPackV2: fetch response 3380 bytes
04:19:02.914 [info] UploadPackV2: processing fetch command
04:19:02.914 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.915 [info] UploadPackV2: collected 6 objects, generating pack
04:19:02.915 [info] UploadPackV2: pack generated, 428 bytes
04:19:02.915 [info] UploadPackV2: fetch response 450 bytes
04:19:02.917 [info] UploadPackV2: processing fetch command
04:19:02.917 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.917 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.917 [info] UploadPackV2: pack generated, 853 bytes
04:19:02.917 [info] UploadPackV2: fetch response 875 bytes
04:19:02.919 [info] UploadPackV2: processing fetch command
04:19:02.919 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.921 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.921 [info] UploadPackV2: pack generated, 1021 bytes
04:19:02.921 [info] UploadPackV2: fetch response 1043 bytes
04:19:02.924 [info] UploadPackV2: processing fetch command
04:19:02.924 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.925 [info] UploadPackV2: collected 20 objects, generating pack
04:19:02.925 [info] UploadPackV2: pack generated, 1492 bytes
04:19:02.925 [info] UploadPackV2: fetch response 1514 bytes
04:19:02.928 [info] UploadPackV2: processing fetch command
04:19:02.928 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.928 [info] UploadPackV2: collected 18 objects, generating pack
04:19:02.928 [info] UploadPackV2: pack generated, 1281 bytes
04:19:02.929 [info] UploadPackV2: fetch response 1303 bytes
04:19:02.932 [info] UploadPackV2: processing fetch command
04:19:02.932 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.933 [info] UploadPackV2: collected 17 objects, generating pack
04:19:02.933 [info] UploadPackV2: pack generated, 1278 bytes
04:19:02.933 [info] UploadPackV2: fetch response 1300 bytes
04:19:02.935 [info] UploadPackV2: processing fetch command
04:19:02.935 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.935 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.936 [info] UploadPackV2: pack generated, 1062 bytes
04:19:02.936 [info] UploadPackV2: fetch response 1084 bytes
04:19:02.937 [info] UploadPackV2: processing fetch command
04:19:02.938 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.938 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.938 [info] UploadPackV2: pack generated, 1068 bytes
04:19:02.938 [info] UploadPackV2: fetch response 1090 bytes
04:19:02.941 [info] UploadPackV2: processing fetch command
04:19:02.941 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.941 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.941 [info] UploadPackV2: pack generated, 1062 bytes
04:19:02.941 [info] UploadPackV2: fetch response 1084 bytes
04:19:02.943 [info] UploadPackV2: processing fetch command
04:19:02.943 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.943 [info] UploadPackV2: collected 5 objects, generating pack
04:19:02.943 [info] UploadPackV2: pack generated, 424 bytes
04:19:02.943 [info] UploadPackV2: fetch response 446 bytes
04:19:02.945 [info] UploadPackV2: processing fetch command
04:19:02.945 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.945 [info] UploadPackV2: processing fetch command
04:19:02.945 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.946 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.946 [info] UploadPackV2: pack generated, 1062 bytes
04:19:02.946 [info] UploadPackV2: fetch response 1084 bytes
04:19:02.948 [info] UploadPackV2: processing fetch command
04:19:02.948 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.949 [info] UploadPackV2: collected 8 objects, generating pack
04:19:02.949 [info] UploadPackV2: pack generated, 636 bytes
04:19:02.949 [info] UploadPackV2: fetch response 658 bytes
.
04:19:02.951 [info] UploadPackV2: collected 32 objects, generating pack
04:19:02.951 [info] UploadPackV2: processing fetch command
04:19:02.951 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.951 [info] UploadPackV2: collected 17 objects, generating pack
04:19:02.952 [info] UploadPackV2: pack generated, 1276 bytes
04:19:02.952 [info] UploadPackV2: fetch response 1298 bytes
04:19:02.954 [info] UploadPackV2: processing fetch command
04:19:02.954 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.954 [info] UploadPackV2: collected 20 objects, generating pack
04:19:02.954 [info] UploadPackV2: pack generated, 1490 bytes
04:19:02.954 [info] UploadPackV2: fetch response 1512 bytes
04:19:02.957 [info] UploadPackV2: processing fetch command
04:19:02.957 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.957 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.957 [info] UploadPackV2: pack generated, 1062 bytes
04:19:02.957 [info] UploadPackV2: fetch response 1084 bytes
04:19:02.960 [info] UploadPackV2: processing fetch command
04:19:02.960 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.960 [info] UploadPackV2: collected 17 objects, generating pack
04:19:02.960 [info] UploadPackV2: pack generated, 1278 bytes
04:19:02.960 [info] UploadPackV2: fetch response 1300 bytes
04:19:02.962 [info] UploadPackV2: processing fetch command
04:19:02.962 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.963 [info] UploadPackV2: collected 18 objects, generating pack
04:19:02.963 [info] UploadPackV2: pack generated, 1281 bytes
04:19:02.963 [info] UploadPackV2: fetch response 1303 bytes
04:19:02.967 [info] UploadPackV2: processing fetch command
04:19:02.967 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.967 [info] UploadPackV2: collected 6 objects, generating pack
04:19:02.967 [info] UploadPackV2: pack generated, 428 bytes
04:19:02.967 [info] UploadPackV2: fetch response 450 bytes
04:19:02.970 [info] UploadPackV2: processing fetch command
04:19:02.970 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.970 [info] UploadPackV2: collected 3 objects, generating pack
04:19:02.970 [info] UploadPackV2: pack generated, 214 bytes
04:19:02.970 [info] UploadPackV2: fetch response 236 bytes
04:19:02.971 [info] UploadPackV2: processing fetch command
04:19:02.971 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.972 [info] UploadPackV2: collected 29 objects, generating pack
04:19:02.972 [info] UploadPackV2: pack generated, 2089 bytes
04:19:02.972 [info] UploadPackV2: fetch response 2111 bytes
04:19:02.975 [info] UploadPackV2: processing fetch command
04:19:02.975 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.975 [info] UploadPackV2: collected 23 objects, generating pack
04:19:02.976 [info] UploadPackV2: pack generated, 1674 bytes
04:19:02.976 [info] UploadPackV2: fetch response 1696 bytes
04:19:02.977 [info] UploadPackV2: processing fetch command
04:19:02.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.977 [info] UploadPackV2: collected 12 objects, generating pack
04:19:02.977 [info] UploadPackV2: pack generated, 854 bytes
04:19:02.977 [info] UploadPackV2: fetch response 876 bytes
04:19:02.980 [info] UploadPackV2: processing fetch command
04:19:02.981 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.981 [info] UploadPackV2: collected 17 objects, generating pack
04:19:02.981 [info] UploadPackV2: pack generated, 1276 bytes
04:19:02.981 [info] UploadPackV2: fetch response 1298 bytes
04:19:02.983 [info] UploadPackV2: processing fetch command
04:19:02.983 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.983 [info] UploadPackV2: collected 11 objects, generating pack
04:19:02.984 [info] UploadPackV2: pack generated, 819 bytes
04:19:02.984 [info] UploadPackV2: fetch response 841 bytes
04:19:02.985 [info] UploadPackV2: processing fetch command
04:19:02.985 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.986 [info] UploadPackV2: collected 12 objects, generating pack
04:19:02.986 [info] UploadPackV2: pack generated, 854 bytes
04:19:02.986 [info] UploadPackV2: fetch response 876 bytes
04:19:02.988 [info] UploadPackV2: processing fetch command
04:19:02.988 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.988 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.988 [info] UploadPackV2: pack generated, 1064 bytes
04:19:02.988 [info] UploadPackV2: fetch response 1086 bytes
04:19:02.990 [info] UploadPackV2: processing fetch command
04:19:02.990 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.991 [info] UploadPackV2: collected 14 objects, generating pack
04:19:02.991 [info] UploadPackV2: pack generated, 1062 bytes
04:19:02.991 [info] UploadPackV2: fetch response 1084 bytes
04:19:02.993 [info] UploadPackV2: processing fetch command
04:19:02.993 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.993 [info] UploadPackV2: pack generated, 2459817 bytes
04:19:02.993 [info] UploadPackV2: collected 15 objects, generating pack
04:19:02.993 [info] UploadPackV2: pack generated, 1068 bytes
04:19:02.993 [info] UploadPackV2: fetch response 1090 bytes
04:19:02.995 [info] UploadPackV2: processing fetch command
04:19:02.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:02.996 [info] UploadPackV2: collected 18 objects, generating pack
04:19:02.996 [info] UploadPackV2: pack generated, 1281 bytes
04:19:02.997 [info] UploadPackV2: fetch response 1303 bytes
04:19:02.997 [info] UploadPackV2: fetch response 2460024 bytes
04:19:02.997 [info] UploadPackV2: processing fetch command
04:19:02.997 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:02.999 [info] UploadPackV2: processing fetch command
04:19:02.999 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:03.000 [info] UploadPackV2: collected 12 objects, generating pack
04:19:03.000 [info] UploadPackV2: pack generated, 854 bytes
04:19:03.000 [info] UploadPackV2: fetch response 876 bytes
04:19:03.002 [info] UploadPackV2: processing fetch command
04:19:03.002 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:03.002 [info] UploadPackV2: collected 5 objects, generating pack
04:19:03.002 [info] UploadPackV2: pack generated, 424 bytes
04:19:03.002 [info] UploadPackV2: fetch response 446 bytes
04:19:03.002 [info] UploadPackV2: collected 32 objects, streaming pack
04:19:03.003 [info] UploadPackV2: processing fetch command
04:19:03.003 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:03.004 [info] UploadPackV2: collected 5 objects, generating pack
04:19:03.004 [info] UploadPackV2: pack generated, 424 bytes
04:19:03.004 [info] UploadPackV2: fetch response 446 bytes
04:19:03.005 [info] UploadPackV2: processing fetch command
04:19:03.005 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:03.006 [info] UploadPackV2: collected 11 objects, generating pack
04:19:03.006 [info] UploadPackV2: pack generated, 853 bytes
04:19:03.006 [info] UploadPackV2: fetch response 875 bytes
04:19:03.008 [info] UploadPackV2: processing fetch command
04:19:03.008 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:03.008 [info] UploadPackV2: collected 20 objects, generating pack
04:19:03.009 [info] UploadPackV2: pack generated, 1459 bytes
04:19:03.009 [info] UploadPackV2: fetch response 1481 bytes
04:19:03.011 [info] UploadPackV2: processing fetch command
04:19:03.011 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:03.012 [info] UploadPackV2: collected 27 objects, generating pack
04:19:03.012 [info] UploadPackV2: pack generated, 1889 bytes
04:19:03.012 [info] UploadPackV2: fetch response 1911 bytes
.......
04:19:03.015 [info] UploadPackV2: processing fetch command
04:19:03.015 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
04:19:03.016 [info] UploadPackV2: collected 8 objects, generating pack
04:19:03.016 [info] UploadPackV2: pack generated, 636 bytes
04:19:03.016 [info] UploadPackV2: fetch response 658 bytes
.
04:19:03.049 [info] UploadPackV2: streamed pack 2459817 bytes, 32 objects
04:19:03.049 [info] UploadPackV2: fetch streamed 2459817 pack bytes, 32 objects
.............
04:19:03.088 [info] UploadPackV2: processing fetch command
04:19:03.088 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:03.090 [info] UploadPackV2: reused pack 12224 bytes, 160 objects
04:19:03.091 [info] UploadPackV2: fetch response 12246 bytes
..............
04:19:03.368 [info] UploadPackV2: processing fetch command
04:19:03.368 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:03.370 [info] UploadPackV2: reused pack 12015 bytes, 160 objects
04:19:03.370 [info] UploadPackV2: fetch response 12037 bytes
..........
04:19:04.524 [info] UploadPackV2: processing ls-refs command
04:19:04.526 [info] UploadPackV2: processing fetch command
04:19:04.526 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:04.526 [info] UploadPackV2: collected 3 objects, generating pack
04:19:04.526 [info] UploadPackV2: pack generated, 185 bytes
04:19:04.526 [info] UploadPackV2: fetch response 207 bytes
.
04:19:04.584 [info] UploadPackV2: processing ls-refs command
04:19:04.585 [info] UploadPackV2: processing fetch command
04:19:04.585 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:04.586 [info] UploadPackV2: collected 3 objects, generating pack
04:19:04.586 [info] UploadPackV2: pack generated, 196 bytes
04:19:04.586 [info] UploadPackV2: fetch response 218 bytes
...........................
04:19:19.772 [info] UploadPackV2: processing ls-refs command
04:19:19.774 [info] UploadPackV2: processing fetch command
04:19:19.774 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:19.776 [info] UploadPackV2: collected 180 objects, generating pack
04:19:19.777 [info] UploadPackV2: pack generated, 11106 bytes
04:19:19.777 [info] UploadPackV2: fetch response 11128 bytes
.
04:19:19.814 [info] UploadPackV2: processing ls-refs command
04:19:19.816 [info] UploadPackV2: processing fetch command
04:19:19.816 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:19.816 [info] UploadPackV2: collected 6 objects, generating pack
04:19:19.816 [info] UploadPackV2: pack generated, 366 bytes
04:19:19.816 [info] UploadPackV2: fetch response 388 bytes
04:19:19.836 [info] UploadPackV2: processing ls-refs command
..
04:19:19.879 [info] UploadPackV2: processing ls-refs command
04:19:19.881 [info] UploadPackV2: processing fetch command
04:19:19.881 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:19.881 [info] UploadPackV2: collected 3 objects, generating pack
04:19:19.881 [info] UploadPackV2: pack generated, 183 bytes
04:19:19.881 [info] UploadPackV2: fetch response 205 bytes
.
04:19:19.904 [info] UploadPackV2: processing ls-refs command
04:19:19.906 [info] UploadPackV2: processing fetch command
04:19:19.906 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:19.906 [info] UploadPackV2: collected 15 objects, generating pack
04:19:19.906 [info] UploadPackV2: pack generated, 919 bytes
04:19:19.906 [info] UploadPackV2: fetch response 941 bytes
.
04:19:19.929 [info] UploadPackV2: processing ls-refs command
04:19:19.930 [info] UploadPackV2: processing fetch command
04:19:19.930 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:19.931 [info] UploadPackV2: collected 9 objects, generating pack
04:19:19.931 [info] UploadPackV2: pack generated, 549 bytes
04:19:19.931 [info] UploadPackV2: fetch response 571 bytes
04:19:19.949 [info] UploadPackV2: processing ls-refs command
.
04:19:19.999 [info] UploadPackV2: processing fetch command
04:19:19.999 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:19.999 [info] UploadPackV2: collected 3 objects, generating pack
04:19:19.999 [info] UploadPackV2: pack generated, 183 bytes
04:19:19.999 [info] UploadPackV2: fetch response 205 bytes
...........
04:19:20.008 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303417852" 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
04:19:20.009 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303416123" 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
.
04:19:20.009 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303390463" 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
04:19:20.009 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303417788" 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
.
04:19:20.009 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303417724" 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
04:19:20.009 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303412542" 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
.
04:19:20.010 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303417660" 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
04:19:20.010 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303417596" 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
.*****
04:19:20.068 [info] UploadPackV2: processing ls-refs command
04:19:20.068 [info] UploadPackV2: processing fetch command
04:19:20.068 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:20.069 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.069 [info] UploadPackV2: pack generated, 200 bytes
04:19:20.069 [info] UploadPackV2: fetch response 256 bytes
.
04:19:20.124 [info] UploadPackV2: processing ls-refs command
04:19:20.125 [info] UploadPackV2: processing fetch command
04:19:20.125 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.125 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.125 [info] UploadPackV2: pack generated, 196 bytes
04:19:20.125 [info] UploadPackV2: fetch response 218 bytes
.
04:19:20.188 [info] UploadPackV2: processing ls-refs command
04:19:20.190 [info] UploadPackV2: processing fetch command
04:19:20.190 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.190 [info] UploadPackV2: collected 15 objects, generating pack
04:19:20.190 [info] UploadPackV2: pack generated, 952 bytes
04:19:20.190 [info] UploadPackV2: fetch response 974 bytes
.
04:19:20.252 [info] UploadPackV2: processing ls-refs command
04:19:20.253 [info] UploadPackV2: processing fetch command
04:19:20.253 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.254 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.254 [info] UploadPackV2: pack generated, 185 bytes
04:19:20.254 [info] UploadPackV2: fetch response 207 bytes
04:19:20.308 [info] UploadPackV2: processing ls-refs command
.***********
04:19:20.311 [info] UploadPackV2: processing fetch command
04:19:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.312 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.312 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.312 [info] UploadPackV2: fetch response 205 bytes
04:19:20.312 [info] UploadPackV2: processing fetch command
04:19:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.312 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.312 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.312 [info] UploadPackV2: fetch response 205 bytes
04:19:20.312 [info] UploadPackV2: processing fetch command
04:19:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.312 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.312 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.312 [info] UploadPackV2: fetch response 205 bytes
04:19:20.312 [info] UploadPackV2: processing fetch command
04:19:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.312 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.312 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.312 [info] UploadPackV2: fetch response 205 bytes
04:19:20.312 [info] UploadPackV2: processing fetch command
04:19:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.312 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.312 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.312 [info] UploadPackV2: fetch response 205 bytes
04:19:20.312 [info] UploadPackV2: processing fetch command
04:19:20.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.313 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.313 [info] UploadPackV2: fetch response 205 bytes
04:19:20.313 [info] UploadPackV2: processing fetch command
04:19:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.313 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.313 [info] UploadPackV2: fetch response 205 bytes
04:19:20.313 [info] UploadPackV2: processing fetch command
04:19:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.313 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.313 [info] UploadPackV2: fetch response 205 bytes
04:19:20.313 [info] UploadPackV2: processing fetch command
04:19:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.313 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.313 [info] UploadPackV2: fetch response 205 bytes
04:19:20.313 [info] UploadPackV2: processing fetch command
04:19:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.313 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.313 [info] UploadPackV2: fetch response 205 bytes
04:19:20.313 [info] UploadPackV2: processing fetch command
04:19:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.313 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.313 [info] UploadPackV2: fetch response 205 bytes
04:19:20.313 [info] UploadPackV2: processing fetch command
04:19:20.313 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.313 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.314 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.314 [info] UploadPackV2: fetch response 205 bytes
04:19:20.314 [info] UploadPackV2: processing fetch command
04:19:20.314 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.314 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.314 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.314 [info] UploadPackV2: fetch response 205 bytes
04:19:20.314 [info] UploadPackV2: processing fetch command
04:19:20.314 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.314 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.314 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.314 [info] UploadPackV2: fetch response 205 bytes
04:19:20.314 [info] UploadPackV2: processing fetch command
04:19:20.314 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.314 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.314 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.314 [info] UploadPackV2: fetch response 205 bytes
04:19:20.314 [info] UploadPackV2: processing fetch command
04:19:20.314 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.315 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.315 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.315 [info] UploadPackV2: fetch response 205 bytes
04:19:20.315 [info] UploadPackV2: processing fetch command
04:19:20.315 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.315 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.315 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.315 [info] UploadPackV2: fetch response 205 bytes
04:19:20.315 [info] UploadPackV2: processing fetch command
04:19:20.315 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.315 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.315 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.315 [info] UploadPackV2: fetch response 205 bytes
04:19:20.315 [info] UploadPackV2: processing fetch command
04:19:20.315 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.315 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.315 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.315 [info] UploadPackV2: fetch response 205 bytes
04:19:20.315 [info] UploadPackV2: processing fetch command
04:19:20.315 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.316 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.316 [info] UploadPackV2: pack generated, 183 bytes
04:19:20.316 [info] UploadPackV2: fetch response 205 bytes
04:19:20.316 [info] UploadPackV2: processing fetch command
04:19:20.316 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.316 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.316 [info] UploadPackV2: pack generated, 183 bytes
.
04:19:20.316 [info] UploadPackV2: fetch response 205 bytes
04:19:20.392 [info] UploadPackV2: processing ls-refs command
04:19:20.393 [info] UploadPackV2: processing fetch command
04:19:20.393 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:20.394 [info] UploadPackV2: collected 3 objects, generating pack
04:19:20.394 [info] UploadPackV2: pack generated, 231 bytes
04:19:20.394 [info] UploadPackV2: fetch response 327 bytes
.
04:19:20.452 [info] UploadPackV2: processing ls-refs command
.
04:19:20.508 [info] UploadPackV2: processing ls-refs command
04:19:20.509 [info] UploadPackV2: processing fetch command
04:19:20.509 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.511 [info] UploadPackV2: collected 240 objects, generating pack
04:19:20.513 [info] UploadPackV2: pack generated, 16258 bytes
04:19:20.513 [info] UploadPackV2: fetch response 16280 bytes
.
04:19:20.592 [info] UploadPackV2: processing ls-refs command
04:19:20.593 [info] UploadPackV2: processing fetch command
04:19:20.593 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.601 [info] UploadPackV2: collected 600 objects, generating pack
04:19:20.608 [info] UploadPackV2: pack generated, 45197 bytes
04:19:20.608 [info] UploadPackV2: fetch response 45219 bytes
.
04:19:20.672 [info] UploadPackV2: processing ls-refs command
.
04:19:20.678 [info] UploadPackV2: processing fetch command
04:19:20.678 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.678 [info] UploadPackV2: collected 0 objects, generating pack
04:19:20.678 [info] UploadPackV2: pack generated, 32 bytes
04:19:20.678 [info] UploadPackV2: fetch response 54 bytes
.
04:19:20.956 [info] UploadPackV2: processing ls-refs command
04:19:20.958 [info] UploadPackV2: processing fetch command
04:19:20.958 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:20.958 [info] UploadPackV2: collected 6 objects, generating pack
04:19:20.958 [info] UploadPackV2: pack generated, 365 bytes
04:19:20.958 [info] UploadPackV2: fetch response 387 bytes
04:19:22.400 [info] UploadPackV2: processing ls-refs command
.
04:19:22.452 [info] UploadPackV2: processing ls-refs command
04:19:22.453 [info] UploadPackV2: processing fetch command
04:19:22.453 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:22.454 [info] UploadPackV2: collected 9 objects, generating pack
04:19:22.454 [info] UploadPackV2: pack generated, 547 bytes
04:19:22.454 [info] UploadPackV2: fetch response 569 bytes
04:19:22.516 [info] UploadPackV2: processing ls-refs command
.
04:19:22.572 [info] UploadPackV2: processing ls-refs command
04:19:22.573 [info] UploadPackV2: processing fetch command
04:19:22.573 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:22.573 [info] UploadPackV2: collected 6 objects, generating pack
04:19:22.574 [info] UploadPackV2: pack generated, 365 bytes
04:19:22.574 [info] UploadPackV2: fetch response 387 bytes
04:19:22.585 [info] UploadPackV2: processing fetch command
04:19:22.586 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
04:19:22.586 [info] UploadPackV2: fetch response 122 bytes
.
04:19:22.636 [info] UploadPackV2: processing ls-refs command
04:19:22.637 [info] UploadPackV2: processing fetch command
04:19:22.637 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:22.638 [info] UploadPackV2: collected 6 objects, generating pack
04:19:22.638 [info] UploadPackV2: pack generated, 366 bytes
04:19:22.638 [info] UploadPackV2: fetch response 388 bytes
04:19:22.692 [info] UploadPackV2: processing ls-refs command
04:19:22.693 [info] UploadPackV2: processing fetch command
04:19:22.693 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
04:19:22.693 [info] UploadPackV2: fetch response 32 bytes
04:19:22.693 [info] UploadPackV2: processing fetch command
04:19:22.693 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:22.693 [info] UploadPackV2: collected 3 objects, generating pack
04:19:22.693 [info] UploadPackV2: pack generated, 183 bytes
04:19:22.693 [info] UploadPackV2: fetch response 205 bytes
.
04:19:22.776 [info] UploadPackV2: processing ls-refs command
04:19:22.777 [info] UploadPackV2: processing fetch command
04:19:22.777 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:22.777 [info] UploadPackV2: collected 6 objects, generating pack
04:19:22.777 [info] UploadPackV2: pack generated, 365 bytes
04:19:22.777 [info] UploadPackV2: fetch response 387 bytes
.
04:19:40.769 [info] UploadPackV2: processing ls-refs command
04:19:40.770 [info] UploadPackV2: processing fetch command
04:19:40.770 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:40.770 [info] UploadPackV2: collected 3 objects, generating pack
04:19:40.770 [info] UploadPackV2: pack generated, 216 bytes
04:19:40.770 [info] UploadPackV2: fetch response 346 bytes
.
04:19:40.841 [info] UploadPackV2: processing ls-refs command
04:19:40.843 [info] UploadPackV2: processing fetch command
04:19:40.843 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:40.844 [info] UploadPackV2: collected 90 objects, generating pack
04:19:40.844 [info] UploadPackV2: pack generated, 5649 bytes
04:19:40.844 [info] UploadPackV2: fetch response 5671 bytes
04:19:41.045 [info] UploadPackV2: processing ls-refs command
.
04:19:41.101 [info] UploadPackV2: processing ls-refs command
04:19:41.101 [info] UploadPackV2: processing ls-refs command
04:19:41.103 [info] UploadPackV2: processing fetch command
04:19:41.103 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:41.103 [info] UploadPackV2: processing fetch command
04:19:41.103 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:41.103 [info] UploadPackV2: collected 6 objects, generating pack
04:19:41.103 [info] UploadPackV2: pack generated, 365 bytes
04:19:41.103 [info] UploadPackV2: collected 6 objects, generating pack
04:19:41.103 [info] UploadPackV2: fetch response 387 bytes
04:19:41.103 [info] UploadPackV2: pack generated, 365 bytes
04:19:41.103 [info] UploadPackV2: fetch response 387 bytes
.
04:19:41.117 [info] UploadPackV2: processing fetch command
04:19:41.117 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:41.117 [info] UploadPackV2: collected 3 objects, generating pack
04:19:41.117 [info] UploadPackV2: pack generated, 183 bytes
.
04:19:41.117 [info] UploadPackV2: fetch response 205 bytes
04:19:41.165 [info] UploadPackV2: processing ls-refs command
04:19:41.166 [info] UploadPackV2: processing fetch command
04:19:41.167 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:41.167 [info] UploadPackV2: collected 3 objects, generating pack
04:19:41.167 [info] UploadPackV2: pack generated, 218 bytes
04:19:41.167 [info] UploadPackV2: fetch response 314 bytes
.
04:19:41.225 [info] UploadPackV2: processing ls-refs command
.
04:19:41.273 [info] UploadPackV2: processing ls-refs command
04:19:41.274 [info] UploadPackV2: processing fetch command
04:19:41.275 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:41.275 [info] UploadPackV2: collected 3 objects, generating pack
04:19:41.275 [info] UploadPackV2: pack generated, 216 bytes
04:19:41.275 [info] UploadPackV2: fetch response 312 bytes
.
04:19:41.333 [info] UploadPackV2: processing ls-refs command
.
04:19:41.385 [info] UploadPackV2: processing ls-refs command
04:19:41.387 [info] UploadPackV2: processing fetch command
04:19:41.387 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:41.387 [info] UploadPackV2: collected 6 objects, generating pack
04:19:41.387 [info] UploadPackV2: pack generated, 513 bytes
04:19:41.387 [info] UploadPackV2: fetch response 535 bytes
.
04:19:41.445 [info] UploadPackV2: processing ls-refs command
04:19:41.447 [info] UploadPackV2: processing fetch command
04:19:41.447 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
04:19:41.447 [info] UploadPackV2: collected 3 objects, generating pack
04:19:41.447 [info] UploadPackV2: pack generated, 381 bytes
04:19:41.447 [info] UploadPackV2: fetch response 403 bytes
.
04:19:41.505 [info] UploadPackV2: processing ls-refs command
.
04:19:41.557 [info] UploadPackV2: processing ls-refs command
04:19:41.559 [info] UploadPackV2: processing fetch command
04:19:41.559 [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
04:19:41.560 [info] UploadPackV2: collected 6 objects, generating pack
04:19:41.560 [info] UploadPackV2: pack generated, 513 bytes
04:19:41.560 [info] UploadPackV2: fetch response 535 bytes
.
04:19:41.621 [info] UploadPackV2: processing ls-refs command
04:19:41.623 [info] UploadPackV2: processing fetch command
04:19:41.623 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
04:19:41.623 [info] UploadPackV2: collected 5 objects, generating pack
04:19:41.624 [info] UploadPackV2: pack generated, 319 bytes
04:19:41.624 [info] UploadPackV2: fetch response 341 bytes
...
04:19:41.693 [info] UploadPackV2: processing ls-refs command
04:19:41.695 [info] UploadPackV2: processing fetch command
04:19:41.695 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
04:19:41.696 [info] UploadPackV2: collected 3 objects, generating pack
04:19:41.696 [info] UploadPackV2: pack generated, 381 bytes
04:19:41.696 [info] UploadPackV2: fetch response 403 bytes
.
04:19:41.757 [info] UploadPackV2: processing ls-refs command
.
04:19:41.809 [info] UploadPackV2: processing ls-refs command
04:19:41.811 [info] UploadPackV2: processing fetch command
04:19:41.811 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:41.811 [info] UploadPackV2: collected 9 objects, generating pack
04:19:41.811 [info] UploadPackV2: pack generated, 585 bytes
04:19:41.811 [info] UploadPackV2: fetch response 681 bytes
.
04:19:41.869 [info] UploadPackV2: processing ls-refs command
04:19:41.871 [info] UploadPackV2: processing fetch command
04:19:41.871 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:41.871 [info] UploadPackV2: collected 9 objects, generating pack
04:19:41.871 [info] UploadPackV2: pack generated, 549 bytes
04:19:41.871 [info] UploadPackV2: fetch response 571 bytes
04:19:41.884 [info] UploadPackV2: processing fetch command
04:19:41.884 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
04:19:41.884 [info] UploadPackV2: fetch response 171 bytes
.
04:19:41.933 [info] UploadPackV2: processing ls-refs command
04:19:41.935 [info] UploadPackV2: processing fetch command
04:19:41.935 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:41.935 [info] UploadPackV2: collected 3 objects, generating pack
04:19:41.935 [info] UploadPackV2: pack generated, 216 bytes
04:19:41.935 [info] UploadPackV2: fetch response 312 bytes
04:19:41.989 [info] UploadPackV2: processing ls-refs command
04:19:41.990 [info] UploadPackV2: processing fetch command
04:19:41.990 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:41.991 [info] UploadPackV2: collected 12 objects, generating pack
04:19:41.991 [info] UploadPackV2: pack generated, 768 bytes
04:19:41.991 [info] UploadPackV2: fetch response 1002 bytes
..
04:19:42.003 [info] The function passed as a handler with ID "telemetry-test-11011" 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
04:19:42.003 [info] UploadPackV2: processing fetch command
04:19:42.003 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
04:19:42.003 [info] UploadPackV2: collected 2 objects, generating pack
04:19:42.003 [info] UploadPackV2: pack generated, 169 bytes
04:19:42.003 [info] UploadPackV2: fetch response 191 bytes
.
04:19:42.004 [info] The function passed as a handler with ID "telemetry-test-11075" 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
04:19:42.004 [info] UploadPackV2: processing fetch command
04:19:42.004 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:42.004 [info] UploadPackV2: collected 3 objects, generating pack
04:19:42.004 [info] UploadPackV2: pack generated, 186 bytes
04:19:42.004 [info] UploadPackV2: fetch response 208 bytes
.
04:19:42.004 [info] The function passed as a handler with ID "telemetry-test-5957" 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
04:19:42.005 [info] UploadPackV2: processing fetch command
04:19:42.005 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
04:19:42.005 [info] UploadPackV2: collected 3 objects, generating pack
04:19:42.005 [info] UploadPackV2: pack generated, 183 bytes
04:19:42.005 [info] UploadPackV2: fetch response 205 bytes
.
04:19:42.007 [info] The function passed as a handler with ID "telemetry-test-6021" 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
.
04:19:57.125 [info] UploadPackV2: processing ls-refs command
04:19:57.127 [info] UploadPackV2: processing fetch command
04:19:57.127 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:57.127 [info] UploadPackV2: collected 6 objects, generating pack
04:19:57.127 [info] UploadPackV2: pack generated, 365 bytes
04:19:57.127 [info] UploadPackV2: fetch response 387 bytes
.
04:19:57.193 [info] UploadPackV2: processing ls-refs command
04:19:57.195 [info] UploadPackV2: processing fetch command
04:19:57.195 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:19:57.195 [info] UploadPackV2: reused pack 240 bytes, 3 objects
04:19:57.195 [info] UploadPackV2: fetch response 262 bytes
.
04:20:15.261 [info] UploadPackV2: processing ls-refs command
04:20:15.262 [info] UploadPackV2: processing fetch command
04:20:15.263 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:20:15.263 [info] UploadPackV2: collected 3 objects, generating pack
04:20:15.263 [info] UploadPackV2: pack generated, 183 bytes
04:20:15.263 [info] UploadPackV2: fetch response 205 bytes
...
04:20:48.427 [info] UploadPackV2: processing ls-refs command
04:20:48.428 [info] UploadPackV2: processing fetch command
04:20:48.428 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:20:48.429 [info] UploadPackV2: collected 3 objects, generating pack
04:20:48.429 [info] UploadPackV2: pack generated, 201 bytes
04:20:48.429 [info] UploadPackV2: fetch response 223 bytes
.
04:21:03.555 [info] UploadPackV2: processing ls-refs command
04:21:03.556 [info] UploadPackV2: processing fetch command
04:21:03.556 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:21:03.556 [info] UploadPackV2: collected 3 objects, generating pack
04:21:03.556 [info] UploadPackV2: pack generated, 183 bytes
04:21:03.556 [info] UploadPackV2: fetch response 205 bytes
...
04:21:54.688 [info] UploadPackV2: processing ls-refs command
04:21:54.690 [info] UploadPackV2: processing fetch command
04:21:54.690 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
04:21:54.690 [info] UploadPackV2: collected 6 objects, generating pack
04:21:54.690 [info] UploadPackV2: pack generated, 365 bytes
04:21:54.690 [info] UploadPackV2: fetch response 387 bytes
......
04:22:43.369 [info] The function passed as a handler with ID "graph-query-test-11203" 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
.....
04:22:43.371 [info] The function passed as a handler with ID "graph-query-test-39554" 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
....
04:22:43.373 [info] The function passed as a handler with ID "rev-list-range-test-7494" 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
..
04:22:43.374 [info] The function passed as a handler with ID "rev-list-range-test-11459" 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
...
04:22:43.377 [info] The function passed as a handler with ID "graph-query-test-17860" 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
.
04:22:43.377 [info] The function passed as a handler with ID "rev-list-range-test-11715" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..
Finished in 206.0 seconds (4.7s async, 201.3s sync)
Result: 1066 passed (2 properties, 1064 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)