fangorn/ex_git_objectstore
public
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 30, 2026 at 02:04 UTC
Completed: Jul 30, 2026 at 02:08 UTC
Duration: 3m 43s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
==> file_system
Compiling 7 files (.ex)
Generated file_system app
==> stream_data
Compiling 3 files (.ex)
Generated stream_data app
==> mime
Compiling 1 file (.ex)
Generated mime app
==> nimble_options
Compiling 3 files (.ex)
Generated nimble_options app
==> bunt
Compiling 2 files (.ex)
Generated bunt app
==> jason
Compiling 10 files (.ex)
Generated jason app
==> plug_crypto
Compiling 5 files (.ex)
Generated plug_crypto app
==> hpax
Compiling 4 files (.ex)
warning: the variable "prefix" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
50 │ with <<value::size(prefix), rest::binary>> <- bitstring do
│ ~
│
└─ lib/hpax/types.ex:50:24: HPAX.Types.decode_integer/2
warning: the variable "length" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
77 │ <<contents::binary-size(length), rest::binary>> <- rest do
│ ~
│
└─ lib/hpax/types.ex:77:34: HPAX.Types.decode_binary/1
warning: the variable "padding_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
79 │ <<padding::size(padding_size)>> = padding
│ ~
│
└─ lib/hpax/huffman.ex:79:21: HPAX.Huffman.decode/1
Generated hpax app
==> mint
Compiling 1 file (.erl)
warning: "xref: [exclude: ...]" in your mix.exs file is deprecated, instead use: "elixirc_options: [no_warn_undefined: ...]"
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:243: Mix.Tasks.Compile.Elixir.xref_exclude_opts/2
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:142: Mix.Tasks.Compile.Elixir.run/1
(mix 1.20.0) lib/mix/task.ex:502: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.20.0) lib/mix/task.compiler.ex:299: Mix.Task.Compiler.run_compiler/2
(mix 1.20.0) lib/mix/task.compiler.ex:287: Mix.Task.Compiler.run/4
(mix 1.20.0) lib/mix/tasks/compile.all.ex:75: Mix.Tasks.Compile.All.do_run/2
Compiling 19 files (.ex)
Generated mint app
==> erlex
Compiling 2 files (.erl)
Compiling 2 files (.ex)
Generated erlex app
==> ex_git_objectstore
===> Analyzing applications...
===> Compiling telemetry
==> thousand_island
Compiling 18 files (.ex)
Generated thousand_island app
==> dialyxir
Compiling 67 files (.ex)
Generated dialyxir app
==> credo
Compiling 257 files (.ex)
Generated credo app
==> plug
Compiling 1 file (.erl)
warning: "xref: [exclude: ...]" in your mix.exs file is deprecated, instead use: "elixirc_options: [no_warn_undefined: ...]"
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:243: Mix.Tasks.Compile.Elixir.xref_exclude_opts/2
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:142: Mix.Tasks.Compile.Elixir.run/1
(mix 1.20.0) lib/mix/task.ex:502: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.20.0) lib/mix/task.compiler.ex:299: Mix.Task.Compiler.run_compiler/2
(mix 1.20.0) lib/mix/task.compiler.ex:287: Mix.Task.Compiler.run/4
(mix 1.20.0) lib/mix/tasks/compile.all.ex:75: Mix.Tasks.Compile.All.do_run/2
Compiling 42 files (.ex)
warning: the variable "prefix_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
154 │ <<prefix::binary-size(prefix_size), ?\\, char, suffix::binary-size(suffix_size)>> =
│ ~
│
└─ lib/plug/router/utils.ex:154:31: Plug.Router.Utils.build_path_clause/7
warning: the variable "suffix_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
154 │ <<prefix::binary-size(prefix_size), ?\\, char, suffix::binary-size(suffix_size)>> =
│ ~
│
└─ lib/plug/router/utils.ex:154:76: Plug.Router.Utils.build_path_clause/7
warning: the variable "prefix_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
162 │ <<prefix::binary-size(prefix_size), char, suffix::binary-size(suffix_size)>> = segment
│ ~
│
└─ lib/plug/router/utils.ex:162:31: Plug.Router.Utils.build_path_clause/7
warning: the variable "suffix_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
162 │ <<prefix::binary-size(prefix_size), char, suffix::binary-size(suffix_size)>> = segment
│ ~
│
└─ lib/plug/router/utils.ex:162:71: Plug.Router.Utils.build_path_clause/7
warning: the following clause will never match:
{:error, reason} ->
because it attempts to match on the result of:
IO.binwrite(device, contents)
which has type:
dynamic(not {:error, term()})
type warning found at:
│
269 │ {:error, reason} ->
│ ~~~~~~~~~~~~~~~~~~~
│
└─ lib/plug/parsers/multipart.ex:269: Plug.Parsers.MULTIPART.binwrite!/2
Generated plug app
==> nimble_pool
Compiling 2 files (.ex)
Generated nimble_pool app
==> finch
Compiling 22 files (.ex)
Generated finch app
warning: "xref: [exclude: ...]" in your mix.exs file is deprecated, instead use: "elixirc_options: [no_warn_undefined: ...]"
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:243: Mix.Tasks.Compile.Elixir.xref_exclude_opts/2
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:142: Mix.Tasks.Compile.Elixir.run/1
(mix 1.20.0) lib/mix/task.ex:502: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.20.0) lib/mix/task.compiler.ex:299: Mix.Task.Compiler.run_compiler/2
(mix 1.20.0) lib/mix/task.compiler.ex:287: Mix.Task.Compiler.run/4
(mix 1.20.0) lib/mix/tasks/compile.all.ex:75: Mix.Tasks.Compile.All.do_run/2
==> req
Compiling 19 files (.ex)
Generated req app
==> websock
Compiling 1 file (.ex)
Generated websock app
==> bandit
Compiling 54 files (.ex)
warning: the variable "required_length" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
82 │ <<payload::binary-size(required_length), rest::binary>> =
│ ~
│
└─ lib/bandit/extractor.ex:82:30: Bandit.Extractor.pop_frame/1
warning: the variable "max_frame_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
61 │ <<this_frame::binary-size(max_frame_size), rest::binary>> =
│ ~
│
└─ lib/bandit/http2/frame/data.ex:61:35: Bandit.HTTP2.Frame.Serializable.Bandit.HTTP2.Frame.Data.serialize/2
warning: the variable "max_frame_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
127 │ <<this_frame::binary-size(max_frame_size), rest::binary>> =
│ ~
│
└─ lib/bandit/http2/frame/headers.ex:127:35: Bandit.HTTP2.Frame.Serializable.Bandit.HTTP2.Frame.Headers.serialize/2
warning: the variable "max_frame_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
44 │ <<this_frame::binary-size(max_frame_size), rest::binary>> =
│ ~
│
└─ lib/bandit/http2/frame/continuation.ex:44:35: Bandit.HTTP2.Frame.Serializable.Bandit.HTTP2.Frame.Continuation.serialize/2
warning: the variable "desired_length" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
396 │ <<to_send::binary-size(desired_length), rest::binary>> = IO.iodata_to_binary(data)
│ ~
│
└─ lib/bandit/http2/connection.ex:396:30: Bandit.HTTP2.Connection.split_data/2
warning: the variable "max_to_return" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
221 │ <<to_return::binary-size(max_to_return), rest::binary>> = buffer
│ ~
│
└─ lib/bandit/http1/socket.ex:221:36: Bandit.HTTPTransport.Bandit.HTTP1.Socket.do_read_content_length_data!/4
warning: the variable "max_to_return" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
235 │ <<to_return::binary-size(max_to_return), rest::binary>> = to_return
│ ~
│
└─ lib/bandit/http1/socket.ex:235:38: Bandit.HTTPTransport.Bandit.HTTP1.Socket.do_read_content_length_data!/4
warning: the variable "chunk_size_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
337 │ <<chunk_size::binary-size(chunk_size_size), "\r\n", rest::binary>> = buffer
│ ~
│
└─ lib/bandit/http1/socket.ex:337:33: Bandit.HTTPTransport.Bandit.HTTP1.Socket.do_parse_chunk_size/2
warning: the variable "to_read" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
369 │ <<to_return::binary-size(to_read), rest::binary>> = IO.iodata_to_binary(buffer)
│ ~
│
└─ lib/bandit/http1/socket.ex:369:36: Bandit.HTTPTransport.Bandit.HTTP1.Socket.read_exactly!/5
warning: the variable "desired_length" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
529 │ <<to_send::binary-size(desired_length), rest::binary>> = IO.iodata_to_binary(data)
│ ~
│
└─ lib/bandit/http2/stream.ex:529:32: Bandit.HTTPTransport.Bandit.HTTP2.Stream.split_data/2
warning: the variable "deflated_size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
171 │ <<deflated_data::binary-size(deflated_size), 0x00, 0x00, 0xFF, 0xFF>> -> deflated_data
│ ~
│
└─ lib/bandit/websocket/permessage_deflate.ex:171:38: Bandit.WebSocket.PerMessageDeflate.deflate/2
warning: the following clause is redundant:
def handle_info({msg, _raw_socket, _data}, _state) when msg === :tcp or msg === :ssl
it has type:
dynamic({:ssl or :tcp, term(), term()}), dynamic()
previous clauses have already matched on the following types:
{:thousand_island_ready, term(), term(), term(), term()}, {nil, term()}
:read_timeout, {%ThousandIsland.Socket{}, term()}
{:plug_conn, :sent}, {term(), term()}
{:EXIT, term(), :normal}, {term(), term()}
term(), {term(), term()}
term(), term()
│
1 │ defmodule Bandit.HTTP1.Handler do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
│
└─ lib/bandit/http1/handler.ex:1: Bandit.HTTP1.Handler.handle_info/2
warning: the following clause will never match:
%Bandit.HTTP2.Stream{} = stream ->
because it attempts to match on the result of:
do_recv(stream, stream.read_timeout)
which has type:
dynamic(:timeout or {:headers, term(), term()})
type warning found at:
│
137 │ %@for{} = stream ->
│ ~
│
└─ lib/bandit/http2/stream.ex:137:17: Bandit.HTTPTransport.Bandit.HTTP2.Stream.read_headers/1
warning: this clause of defp do_recv/2 is never used (or it will always fail/warn when invoked)
│
316 │ defp do_recv(%@for{state: :remote_closed} = stream, timeout) do
│ ~
│
└─ lib/bandit/http2/stream.ex:316:10: Bandit.HTTPTransport.Bandit.HTTP2.Stream.do_recv/2
warning: this clause of defp do_recv/2 is never used (or it will always fail/warn when invoked)
│
334 │ defp do_recv(%@for{state: :closed} = stream, timeout) do
│ ~
│
└─ lib/bandit/http2/stream.ex:334:10: Bandit.HTTPTransport.Bandit.HTTP2.Stream.do_recv/2
Generated bandit app
==> sweet_xml
Compiling 2 files (.ex)
warning: the variable "size" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
838 │ <<_::binary - size(size), h>> <> tail when h == ?\s or h == ?\n or h == ?\r or h == ?\t ->
│ ~
│
└─ lib/sweet_xml.ex:838:26: SweetXml.split_last_whitespace/2
warning: a struct for SweetXpath is expected on struct update:
%SweetXpath{xpath | namespaces: [{to_charlist(prefix), to_charlist(uri)} | xpath.namespaces]}
but got type:
dynamic()
where "xpath" was given the type:
# type: dynamic()
# from: lib/sweet_xml.ex:245:21
xpath
when defining the variable "xpath", you must also pattern match on "%SweetXpath{}"
type warning found at:
│
246 │ %SweetXpath{xpath | namespaces: [{to_charlist(prefix), to_charlist(uri)}
│ ~
│
└─ lib/sweet_xml.ex:246:5: SweetXml.add_namespace/3
Generated sweet_xml app
warning: "xref: [exclude: ...]" in your mix.exs file is deprecated, instead use: "elixirc_options: [no_warn_undefined: ...]"
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:243: Mix.Tasks.Compile.Elixir.xref_exclude_opts/2
(mix 1.20.0) lib/mix/tasks/compile.elixir.ex:142: Mix.Tasks.Compile.Elixir.run/1
(mix 1.20.0) lib/mix/task.ex:502: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.20.0) lib/mix/task.compiler.ex:299: Mix.Task.Compiler.run_compiler/2
(mix 1.20.0) lib/mix/task.compiler.ex:287: Mix.Task.Compiler.run/4
(mix 1.20.0) lib/mix/tasks/compile.all.ex:75: Mix.Tasks.Compile.All.do_run/2
==> ex_aws
Compiling 29 files (.ex)
Generated ex_aws app
==> ex_aws_s3
Compiling 7 files (.ex)
Generated ex_aws_s3 app
==> ex_git_objectstore
Compiling 55 files (.ex)
Generated ex_git_objectstore app
Cover compiling modules ...
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
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: the variable "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 "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
35 │ test "symrefs resolves HEAD to its target branch", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:35:67: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs symrefs resolves HEAD to its target branch"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
Running ExUnit with seed: 544389, max_cases: 40
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
Excluding tags: [:s3]
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1130 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1130:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1160 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1160:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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
......................................................................................................................................................
02:04:31.760 [info] UploadPackV2: processing fetch command
02:04:31.849 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.850 [info] UploadPackV2: collected 11 objects, generating pack
02:04:31.850 [info] UploadPackV2: pack generated, 717 bytes
02:04:31.850 [info] UploadPackV2: fetch response 739 bytes
warning: default values for the optional arguments in the private function http_post/4 are never used
│
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
│
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
................................................
02:04:31.948 [info] UploadPackV2: processing fetch command
02:04:31.948 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.949 [info] UploadPackV2: collected 19 objects, generating pack
02:04:31.949 [info] UploadPackV2: pack generated, 1194 bytes
02:04:31.949 [info] UploadPackV2: fetch response 1216 bytes
02:04:31.952 [info] UploadPackV2: processing fetch command
02:04:31.952 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.952 [info] UploadPackV2: collected 16 objects, generating pack
02:04:31.952 [info] UploadPackV2: pack generated, 962 bytes
02:04:31.952 [info] UploadPackV2: fetch response 984 bytes
02:04:31.957 [info] UploadPackV2: processing fetch command
02:04:31.957 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.958 [info] UploadPackV2: collected 35 objects, generating pack
02:04:31.958 [info] UploadPackV2: pack generated, 2128 bytes
02:04:31.958 [info] UploadPackV2: fetch response 2150 bytes
02:04:31.960 [info] UploadPackV2: processing fetch command
02:04:31.960 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.961 [info] UploadPackV2: collected 15 objects, generating pack
02:04:31.962 [info] UploadPackV2: pack generated, 956 bytes
02:04:31.962 [info] UploadPackV2: fetch response 978 bytes
warning: module attribute @git_lfs_available was set but never used
│
63 │ @git_lfs_available (case System.cmd("git", ["lfs", "version"], stderr_to_stdout: true) do
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
│
└─ test/ex_git_objectstore/lfs/interop_s3_test.exs:63: ExGitObjectstore.Lfs.InteropS3Test (module)
02:04:31.965 [info] UploadPackV2: processing fetch command
02:04:31.965 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.968 [info] UploadPackV2: collected 27 objects, generating pack
02:04:31.968 [info] UploadPackV2: pack generated, 1678 bytes
02:04:31.968 [info] UploadPackV2: fetch response 1700 bytes
....
02:04:31.972 [info] UploadPackV2: processing fetch command
02:04:31.972 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.973 [info] UploadPackV2: collected 20 objects, generating pack
02:04:31.973 [info] UploadPackV2: pack generated, 1203 bytes
02:04:31.974 [info] UploadPackV2: fetch response 1225 bytes
02:04:31.977 [info] UploadPackV2: processing fetch command
02:04:31.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.978 [info] UploadPackV2: collected 24 objects, generating pack
02:04:31.978 [info] UploadPackV2: pack generated, 1443 bytes
02:04:31.978 [info] UploadPackV2: fetch response 1465 bytes
02:04:31.983 [info] UploadPackV2: processing fetch command
02:04:31.983 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.984 [info] UploadPackV2: collected 12 objects, generating pack
02:04:31.984 [info] UploadPackV2: pack generated, 723 bytes
02:04:31.984 [info] UploadPackV2: fetch response 745 bytes
02:04:31.987 [info] UploadPackV2: processing fetch command
02:04:31.987 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.989 [info] UploadPackV2: collected 27 objects, generating pack
02:04:31.989 [info] UploadPackV2: pack generated, 1678 bytes
02:04:31.989 [info] UploadPackV2: fetch response 1700 bytes
...
02:04:31.994 [info] UploadPackV2: processing fetch command
02:04:31.994 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:31.996 [info] UploadPackV2: collected 54 objects, generating pack
02:04:31.996 [info] UploadPackV2: pack generated, 3299 bytes
02:04:31.996 [info] UploadPackV2: fetch response 3321 bytes
02:04:32.003 [info] UploadPackV2: processing fetch command
02:04:32.004 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.005 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.005 [info] UploadPackV2: pack generated, 1171 bytes
02:04:32.005 [info] UploadPackV2: fetch response 1193 bytes
02:04:32.007 [info] UploadPackV2: processing fetch command
02:04:32.007 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.008 [info] UploadPackV2: collected 27 objects, generating pack
02:04:32.008 [info] UploadPackV2: pack generated, 1676 bytes
.
02:04:32.008 [info] UploadPackV2: fetch response 1698 bytes
........
02:04:32.012 [info] UploadPackV2: processing fetch command
02:04:32.012 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
02:04:32.013 [info] UploadPackV2: collected 50 objects, generating pack
.
02:04:32.014 [info] UploadPackV2: pack generated, 3054 bytes
02:04:32.014 [info] UploadPackV2: fetch response 3076 bytes
..........
02:04:32.022 [info] UploadPackV2: processing fetch command
02:04:32.022 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.023 [info] UploadPackV2: collected 24 objects, generating pack
02:04:32.023 [warning] post_receive hook failed: "webhook failed"
.
02:04:32.023 [info] UploadPackV2: pack generated, 1411 bytes
02:04:32.023 [info] UploadPackV2: fetch response 1433 bytes
..
02:04:32.028 [info] UploadPackV2: processing fetch command
.
02:04:32.028 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.029 [info] UploadPackV2: collected 35 objects, generating pack
02:04:32.029 [info] UploadPackV2: pack generated, 2104 bytes
02:04:32.029 [info] UploadPackV2: fetch response 2126 bytes
....
02:04:32.033 [info] UploadPackV2: processing fetch command
.
02:04:32.033 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:04:32.033 [info] UploadPackV2: collected 12 objects, generating pack
.
02:04:32.033 [info] UploadPackV2: pack generated, 723 bytes
.
02:04:32.033 [info] UploadPackV2: fetch response 745 bytes
...........
02:04:32.039 [info] UploadPackV2: processing fetch command
.
02:04:32.039 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
02:04:32.039 [info] UploadPackV2: collected 24 objects, generating pack
02:04:32.040 [info] UploadPackV2: pack generated, 1443 bytes
02:04:32.040 [info] UploadPackV2: fetch response 1465 bytes
..
02:04:32.042 [info] UploadPackV2: processing fetch command
02:04:32.043 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.043 [info] UploadPackV2: collected 12 objects, generating pack
02:04:32.043 [info] UploadPackV2: pack generated, 723 bytes
02:04:32.043 [info] UploadPackV2: fetch response 745 bytes
02:04:32.048 [info] UploadPackV2: processing fetch command
02:04:32.048 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.049 [info] UploadPackV2: collected 24 objects, generating pack
02:04:32.050 [info] UploadPackV2: pack generated, 1411 bytes
02:04:32.050 [info] UploadPackV2: fetch response 1433 bytes
02:04:32.052 [info] UploadPackV2: processing fetch command
02:04:32.052 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.052 [info] UploadPackV2: collected 7 objects, generating pack
.
02:04:32.052 [info] UploadPackV2: pack generated, 475 bytes
02:04:32.052 [info] UploadPackV2: fetch response 497 bytes
02:04:32.056 [info] UploadPackV2: processing fetch command
02:04:32.056 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.057 [info] UploadPackV2: collected 50 objects, generating pack
02:04:32.060 [info] UploadPackV2: pack generated, 3060 bytes
02:04:32.060 [info] UploadPackV2: fetch response 3082 bytes
02:04:32.065 [info] UploadPackV2: processing fetch command
02:04:32.065 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.066 [info] UploadPackV2: collected 35 objects, generating pack
02:04:32.066 [info] UploadPackV2: pack generated, 2125 bytes
02:04:32.066 [info] UploadPackV2: fetch response 2147 bytes
02:04:32.070 [info] UploadPackV2: processing fetch command
02:04:32.070 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.071 [info] UploadPackV2: collected 24 objects, generating pack
02:04:32.072 [info] UploadPackV2: pack generated, 1443 bytes
02:04:32.072 [info] UploadPackV2: fetch response 1465 bytes
02:04:32.075 [info] UploadPackV2: processing fetch command
02:04:32.076 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.076 [info] UploadPackV2: collected 4 objects, generating pack
02:04:32.076 [info] UploadPackV2: pack generated, 241 bytes
02:04:32.076 [info] UploadPackV2: fetch response 263 bytes
02:04:32.079 [info] UploadPackV2: processing fetch command
02:04:32.080 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.081 [info] UploadPackV2: collected 35 objects, generating pack
02:04:32.081 [info] UploadPackV2: pack generated, 2106 bytes
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
02:04:32.081 [info] UploadPackV2: fetch response 2128 bytes
02:04:32.084 [info] UploadPackV2: processing fetch command
02:04:32.084 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.085 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.085 [info] UploadPackV2: pack generated, 1170 bytes
02:04:32.085 [info] UploadPackV2: fetch response 1192 bytes
02:04:32.088 [info] UploadPackV2: processing fetch command
02:04:32.088 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.090 [info] UploadPackV2: collected 35 objects, generating pack
02:04:32.090 [info] UploadPackV2: pack generated, 2106 bytes
02:04:32.090 [info] UploadPackV2: fetch response 2128 bytes
02:04:32.093 [info] UploadPackV2: processing fetch command
02:04:32.093 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.094 [info] UploadPackV2: collected 30 objects, generating pack
02:04:32.095 [info] UploadPackV2: pack generated, 1860 bytes
02:04:32.095 [info] UploadPackV2: fetch response 1882 bytes
02:04:32.099 [info] UploadPackV2: processing fetch command
02:04:32.099 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.100 [info] UploadPackV2: collected 30 objects, generating pack
02:04:32.100 [info] UploadPackV2: pack generated, 1859 bytes
02:04:32.100 [info] UploadPackV2: fetch response 1881 bytes
02:04:32.104 [info] UploadPackV2: processing fetch command
02:04:32.105 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.105 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.105 [info] UploadPackV2: pack generated, 1203 bytes
02:04:32.105 [info] UploadPackV2: fetch response 1225 bytes
02:04:32.109 [info] UploadPackV2: processing fetch command
02:04:32.109 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.110 [info] UploadPackV2: collected 55 objects, generating pack
02:04:32.110 [info] UploadPackV2: pack generated, 3295 bytes
02:04:32.110 [info] UploadPackV2: fetch response 3317 bytes
.
02:04:32.113 [info] UploadPackV2: processing fetch command
02:04:32.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.113 [info] UploadPackV2: collected 8 objects, generating pack
02:04:32.113 [info] UploadPackV2: pack generated, 482 bytes
02:04:32.113 [info] UploadPackV2: fetch response 504 bytes
02:04:32.115 [info] UploadPackV2: processing fetch command
02:04:32.115 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.115 [info] UploadPackV2: collected 11 objects, generating pack
02:04:32.115 [info] UploadPackV2: pack generated, 714 bytes
.
02:04:32.115 [info] UploadPackV2: fetch response 736 bytes
......
02:04:32.118 [info] UploadPackV2: processing fetch command
02:04:32.118 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.118 [info] UploadPackV2: collected 39 objects, generating pack
..
02:04:32.119 [info] UploadPackV2: pack generated, 2343 bytes
02:04:32.119 [info] UploadPackV2: fetch response 2365 bytes
02:04:32.121 [info] UploadPackV2: processing fetch command
02:04:32.121 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.121 [info] UploadPackV2: collected 11 objects, generating pack
02:04:32.121 [info] UploadPackV2: pack generated, 717 bytes
02:04:32.122 [info] UploadPackV2: fetch response 739 bytes
02:04:32.123 [info] UploadPackV2: processing fetch command
02:04:32.123 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.124 [info] UploadPackV2: collected 4 objects, generating pack
02:04:32.124 [info] UploadPackV2: pack generated, 241 bytes
02:04:32.124 [info] UploadPackV2: fetch response 263 bytes
02:04:32.126 [info] UploadPackV2: processing fetch command
02:04:32.126 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.126 [info] UploadPackV2: collected 4 objects, generating pack
02:04:32.126 [info] UploadPackV2: pack generated, 241 bytes
02:04:32.126 [info] UploadPackV2: fetch response 263 bytes
02:04:32.128 [info] UploadPackV2: processing fetch command
02:04:32.128 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.128 [info] UploadPackV2: collected 7 objects, generating pack
02:04:32.128 [info] UploadPackV2: pack generated, 475 bytes
02:04:32.128 [info] UploadPackV2: fetch response 497 bytes
02:04:32.130 [info] UploadPackV2: processing fetch command
02:04:32.130 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.132 [info] UploadPackV2: collected 34 objects, generating pack
02:04:32.132 [info] UploadPackV2: pack generated, 2099 bytes
02:04:32.132 [info] UploadPackV2: fetch response 2121 bytes
02:04:32.135 [info] UploadPackV2: processing fetch command
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
585 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:585:27: ExGitObjectstore.Integration.ProtocolInteropTest."test adversarial packs corrupted pack checksum is rejected with structured error"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
847 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:847:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "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
02:04:32.135 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.135 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.136 [info] UploadPackV2: pack generated, 958 bytes
02:04:32.136 [info] UploadPackV2: fetch response 980 bytes
02:04:32.138 [info] UploadPackV2: processing fetch command
02:04:32.138 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.139 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.139 [info] UploadPackV2: pack generated, 956 bytes
02:04:32.139 [info] UploadPackV2: fetch response 978 bytes
02:04:32.142 [info] UploadPackV2: processing fetch command
02:04:32.142 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.143 [info] UploadPackV2: collected 43 objects, generating pack
02:04:32.143 [info] UploadPackV2: pack generated, 2584 bytes
02:04:32.143 [info] UploadPackV2: fetch response 2606 bytes
02:04:32.147 [info] UploadPackV2: processing fetch command
02:04:32.147 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.147 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.147 [info] UploadPackV2: pack generated, 1203 bytes
02:04:32.147 [info] UploadPackV2: fetch response 1225 bytes
02:04:32.150 [info] UploadPackV2: processing fetch command
02:04:32.150 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.150 [info] UploadPackV2: collected 23 objects, generating pack
02:04:32.151 [info] UploadPackV2: pack generated, 1435 bytes
02:04:32.151 [info] UploadPackV2: fetch response 1457 bytes
02:04:32.155 [info] UploadPackV2: processing fetch command
02:04:32.155 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.156 [info] UploadPackV2: collected 27 objects, generating pack
02:04:32.156 [info] UploadPackV2: pack generated, 1678 bytes
02:04:32.156 [info] UploadPackV2: fetch response 1700 bytes
.
02:04:32.159 [info] UploadPackV2: processing fetch command
02:04:32.159 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.160 [info] UploadPackV2: collected 19 objects, generating pack
02:04:32.160 [info] UploadPackV2: pack generated, 1194 bytes
02:04:32.160 [info] UploadPackV2: fetch response 1216 bytes
02:04:32.162 [info] UploadPackV2: processing fetch command
02:04:32.162 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.163 [info] UploadPackV2: collected 22 objects, generating pack
02:04:32.163 [info] UploadPackV2: pack generated, 1379 bytes
02:04:32.163 [info] UploadPackV2: fetch response 1401 bytes
02:04:32.166 [info] UploadPackV2: processing fetch command
02:04:32.166 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.166 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.166 [info] UploadPackV2: pack generated, 956 bytes
02:04:32.166 [info] UploadPackV2: fetch response 978 bytes
02:04:32.167 [info] UploadPackV2: processing fetch command
02:04:32.168 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.168 [info] UploadPackV2: collected 4 objects, generating pack
02:04:32.168 [info] UploadPackV2: pack generated, 241 bytes
02:04:32.168 [info] UploadPackV2: fetch response 263 bytes
02:04:32.170 [info] UploadPackV2: processing fetch command
02:04:32.170 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.170 [info] UploadPackV2: collected 8 objects, generating pack
02:04:32.170 [info] UploadPackV2: pack generated, 482 bytes
02:04:32.170 [info] UploadPackV2: fetch response 504 bytes
02:04:32.173 [info] UploadPackV2: processing fetch command
02:04:32.173 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.173 [info] UploadPackV2: collected 27 objects, generating pack
02:04:32.174 [info] UploadPackV2: pack generated, 1676 bytes
02:04:32.174 [info] UploadPackV2: fetch response 1698 bytes
02:04:32.176 [info] UploadPackV2: processing fetch command
02:04:32.176 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.177 [info] UploadPackV2: collected 23 objects, generating pack
02:04:32.177 [info] UploadPackV2: pack generated, 1435 bytes
02:04:32.177 [info] UploadPackV2: fetch response 1457 bytes
02:04:32.179 [info] UploadPackV2: processing fetch command
02:04:32.179 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.180 [info] UploadPackV2: collected 11 objects, generating pack
02:04:32.180 [info] UploadPackV2: pack generated, 664 bytes
02:04:32.180 [info] UploadPackV2: fetch response 686 bytes
.
02:04:32.181 [info] UploadPackV2: processing fetch command
02:04:32.181 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.181 [info] UploadPackV2: collected 19 objects, generating pack
02:04:32.182 [info] UploadPackV2: pack generated, 1145 bytes
02:04:32.182 [info] UploadPackV2: fetch response 1167 bytes
.
02:04:32.184 [info] UploadPackV2: processing fetch command
02:04:32.184 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.185 [info] UploadPackV2: collected 30 objects, generating pack
.
02:04:32.185 [info] UploadPackV2: pack generated, 1860 bytes
02:04:32.185 [info] UploadPackV2: fetch response 1882 bytes
02:04:32.189 [info] UploadPackV2: processing fetch command
02:04:32.189 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.189 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.190 [info] UploadPackV2: pack generated, 956 bytes
02:04:32.190 [info] UploadPackV2: fetch response 978 bytes
02:04:32.191 [info] UploadPackV2: processing fetch command
02:04:32.191 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.192 [info] UploadPackV2: collected 24 objects, generating pack
02:04:32.192 [info] UploadPackV2: pack generated, 1443 bytes
02:04:32.192 [info] UploadPackV2: fetch response 1465 bytes
02:04:32.194 [info] UploadPackV2: processing fetch command
02:04:32.194 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.194 [info] UploadPackV2: collected 8 objects, generating pack
02:04:32.194 [info] UploadPackV2: pack generated, 482 bytes
02:04:32.194 [info] UploadPackV2: fetch response 504 bytes
02:04:32.195 [info] UploadPackV2: processing fetch command
02:04:32.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.196 [info] UploadPackV2: collected 16 objects, generating pack
02:04:32.196 [info] UploadPackV2: pack generated, 962 bytes
02:04:32.196 [info] UploadPackV2: fetch response 984 bytes
02:04:32.198 [info] UploadPackV2: processing fetch command
02:04:32.198 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.199 [info] UploadPackV2: collected 40 objects, generating pack
02:04:32.199 [info] UploadPackV2: pack generated, 2373 bytes
02:04:32.199 [info] UploadPackV2: fetch response 2395 bytes
02:04:32.202 [info] UploadPackV2: processing fetch command
02:04:32.202 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.202 [info] UploadPackV2: collected 8 objects, generating pack
02:04:32.202 [info] UploadPackV2: pack generated, 482 bytes
02:04:32.202 [info] UploadPackV2: fetch response 504 bytes
02:04:32.204 [info] UploadPackV2: processing fetch command
02:04:32.204 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.205 [info] UploadPackV2: collected 16 objects, generating pack
02:04:32.205 [info] UploadPackV2: pack generated, 962 bytes
02:04:32.205 [info] UploadPackV2: fetch response 984 bytes
02:04:32.206 [info] UploadPackV2: processing fetch command
02:04:32.206 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.207 [info] UploadPackV2: collected 4 objects, generating pack
02:04:32.207 [info] UploadPackV2: pack generated, 241 bytes
02:04:32.207 [info] UploadPackV2: fetch response 263 bytes
02:04:32.208 [info] UploadPackV2: processing fetch command
02:04:32.208 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.208 [info] UploadPackV2: collected 12 objects, generating pack
02:04:32.208 [info] UploadPackV2: pack generated, 723 bytes
02:04:32.209 [info] UploadPackV2: fetch response 745 bytes
02:04:32.211 [info] UploadPackV2: processing fetch command
02:04:32.211 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.211 [info] UploadPackV2: collected 11 objects, generating pack
02:04:32.211 [info] UploadPackV2: pack generated, 714 bytes
02:04:32.211 [info] UploadPackV2: fetch response 736 bytes
02:04:32.213 [info] UploadPackV2: processing fetch command
02:04:32.213 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.214 [info] UploadPackV2: collected 42 objects, generating pack
02:04:32.215 [info] UploadPackV2: pack generated, 2582 bytes
02:04:32.215 [info] UploadPackV2: fetch response 2604 bytes
02:04:32.217 [info] UploadPackV2: processing fetch command
02:04:32.217 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.218 [info] UploadPackV2: collected 19 objects, generating pack
02:04:32.218 [info] UploadPackV2: pack generated, 1194 bytes
02:04:32.218 [info] UploadPackV2: fetch response 1216 bytes
02:04:32.220 [info] UploadPackV2: processing fetch command
02:04:32.220 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.222 [info] UploadPackV2: collected 50 objects, generating pack
02:04:32.223 [info] UploadPackV2: pack generated, 3056 bytes
02:04:32.223 [info] UploadPackV2: fetch response 3078 bytes
.
02:04:32.227 [info] UploadPackV2: processing fetch command
02:04:32.227 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.227 [info] UploadPackV2: collected 7 objects, generating pack
02:04:32.227 [info] UploadPackV2: pack generated, 475 bytes
02:04:32.227 [info] UploadPackV2: fetch response 497 bytes
02:04:32.228 [info] UploadPackV2: processing fetch command
02:04:32.228 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.229 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.230 [info] UploadPackV2: pack generated, 1203 bytes
02:04:32.230 [info] UploadPackV2: fetch response 1225 bytes
02:04:32.232 [info] UploadPackV2: processing fetch command
02:04:32.232 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.232 [info] UploadPackV2: collected 8 objects, generating pack
02:04:32.232 [info] UploadPackV2: pack generated, 482 bytes
02:04:32.232 [info] UploadPackV2: fetch response 504 bytes
02:04:32.234 [info] UploadPackV2: processing fetch command
02:04:32.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.234 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.234 [info] UploadPackV2: pack generated, 1203 bytes
02:04:32.234 [info] UploadPackV2: fetch response 1225 bytes
02:04:32.236 [info] UploadPackV2: processing fetch command
02:04:32.236 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.236 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.236 [info] UploadPackV2: pack generated, 956 bytes
02:04:32.236 [info] UploadPackV2: fetch response 978 bytes
02:04:32.238 [info] UploadPackV2: processing fetch command
02:04:32.238 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
02:04:32.238 [info] UploadPackV2: collected 32 objects, generating pack
02:04:32.239 [info] UploadPackV2: pack generated, 1893 bytes
02:04:32.239 [info] UploadPackV2: fetch response 1915 bytes
.
02:04:32.241 [info] UploadPackV2: processing fetch command
02:04:32.241 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.242 [info] UploadPackV2: collected 23 objects, generating pack
02:04:32.242 [info] UploadPackV2: pack generated, 1405 bytes
02:04:32.242 [info] UploadPackV2: fetch response 1427 bytes
02:04:32.244 [info] UploadPackV2: processing fetch command
02:04:32.244 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.244 [info] UploadPackV2: collected 19 objects, generating pack
02:04:32.244 [info] UploadPackV2: pack generated, 1196 bytes
02:04:32.245 [info] UploadPackV2: fetch response 1218 bytes
02:04:32.247 [info] UploadPackV2: processing fetch command
02:04:32.247 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.248 [info] UploadPackV2: collected 24 objects, generating pack
02:04:32.248 [info] UploadPackV2: pack generated, 1443 bytes
02:04:32.248 [info] UploadPackV2: fetch response 1465 bytes
02:04:32.249 [info] UploadPackV2: processing fetch command
02:04:32.249 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.249 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.250 [info] UploadPackV2: pack generated, 956 bytes
02:04:32.250 [info] UploadPackV2: fetch response 978 bytes
02:04:32.251 [info] UploadPackV2: processing fetch command
02:04:32.251 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.251 [info] UploadPackV2: collected 11 objects, generating pack
02:04:32.251 [info] UploadPackV2: pack generated, 714 bytes
02:04:32.251 [info] UploadPackV2: fetch response 736 bytes
.
02:04:32.253 [info] UploadPackV2: processing fetch command
02:04:32.253 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.253 [info] UploadPackV2: collected 8 objects, generating pack
02:04:32.253 [info] UploadPackV2: pack generated, 639 bytes
02:04:32.253 [info] UploadPackV2: fetch response 661 bytes
02:04:32.255 [info] UploadPackV2: processing fetch command
02:04:32.255 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.255 [info] UploadPackV2: collected 14 objects, generating pack
02:04:32.255 [info] UploadPackV2: pack generated, 1062 bytes
02:04:32.255 [info] UploadPackV2: fetch response 1084 bytes
02:04:32.257 [info] UploadPackV2: processing fetch command
02:04:32.257 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.257 [info] UploadPackV2: collected 12 objects, generating pack
02:04:32.257 [info] UploadPackV2: pack generated, 854 bytes
02:04:32.257 [info] UploadPackV2: fetch response 876 bytes
02:04:32.259 [info] UploadPackV2: processing fetch command
02:04:32.259 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.260 [info] UploadPackV2: collected 26 objects, generating pack
02:04:32.260 [info] UploadPackV2: pack generated, 1888 bytes
02:04:32.260 [info] UploadPackV2: fetch response 1910 bytes
.
02:04:32.263 [info] UploadPackV2: processing fetch command
02:04:32.263 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.264 [info] UploadPackV2: collected 11 objects, generating pack
02:04:32.264 [info] UploadPackV2: pack generated, 851 bytes
02:04:32.264 [info] UploadPackV2: fetch response 873 bytes
.
02:04:32.266 [info] UploadPackV2: processing fetch command
02:04:32.266 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.266 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.266 [info] UploadPackV2: pack generated, 1492 bytes
02:04:32.266 [info] UploadPackV2: fetch response 1514 bytes
02:04:32.269 [info] UploadPackV2: processing fetch command
02:04:32.269 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.269 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.270 [info] UploadPackV2: pack generated, 1068 bytes
02:04:32.270 [info] UploadPackV2: fetch response 1090 bytes
02:04:32.272 [info] UploadPackV2: processing fetch command
02:04:32.272 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.272 [info] UploadPackV2: collected 18 objects, generating pack
02:04:32.272 [info] UploadPackV2: pack generated, 1281 bytes
02:04:32.272 [info] UploadPackV2: fetch response 1303 bytes
02:04:32.274 [info] UploadPackV2: processing fetch command
02:04:32.274 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.275 [info] UploadPackV2: collected 9 objects, generating pack
02:04:32.275 [info] UploadPackV2: pack generated, 642 bytes
02:04:32.275 [info] UploadPackV2: fetch response 664 bytes
02:04:32.278 [info] UploadPackV2: processing fetch command
02:04:32.278 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.278 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.278 [info] UploadPackV2: pack generated, 1492 bytes
02:04:32.278 [info] UploadPackV2: fetch response 1514 bytes
..
02:04:32.282 [info] UploadPackV2: processing fetch command
02:04:32.282 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.282 [info] UploadPackV2: collected 40 objects, generating pack
02:04:32.283 [info] UploadPackV2: pack generated, 2936 bytes
02:04:32.283 [info] UploadPackV2: fetch response 2958 bytes
.
02:04:32.287 [info] UploadPackV2: processing fetch command
02:04:32.287 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.287 [info] UploadPackV2: collected 15 objects, generating pack
02:04:32.287 [info] UploadPackV2: pack generated, 1036 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()-
02:04:32.287 [info] UploadPackV2: fetch response 1058 bytes
02:04:32.290 [info] UploadPackV2: processing fetch command
02:04:32.290 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.291 [info] UploadPackV2: collected 20 objects, generating pack
02:04:32.291 [info] UploadPackV2: pack generated, 1490 bytes
02:04:32.291 [info] UploadPackV2: fetch response 1512 bytes
02:04:32.294 [info] UploadPackV2: processing fetch command
02:04:32.294 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.295 [info] UploadPackV2: collected 37 objects, generating pack
02:04:32.295 [info] UploadPackV2: pack generated, 2718 bytes
02:04:32.295 [info] UploadPackV2: fetch response 2740 bytes
02:04:32.300 [info] UploadPackV2: processing fetch command
02:04:32.300 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.300 [info] UploadPackV2: collected 18 objects, generating pack
02:04:32.300 [info] UploadPackV2: pack generated, 1249 bytes
02:04:32.300 [info] UploadPackV2: fetch response 1271 bytes
02:04:32.303 [info] UploadPackV2: processing fetch command
02:04:32.303 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.303 [info] UploadPackV2: collected 26 objects, generating pack
02:04:32.304 [info] UploadPackV2: pack generated, 1873 bytes
02:04:32.304 [info] UploadPackV2: fetch response 1895 bytes
02:04:32.307 [info] UploadPackV2: processing fetch command
02:04:32.307 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.308 [info] UploadPackV2: collected 9 objects, generating pack
02:04:32.308 [info] UploadPackV2: pack generated, 642 bytes
02:04:32.308 [info] UploadPackV2: fetch response 664 bytes
02:04:32.310 [info] UploadPackV2: processing fetch command
02:04:32.310 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.310 [info] UploadPackV2: collected 18 objects, generating pack
02:04:32.310 [info] UploadPackV2: pack generated, 1281 bytes
02:04:32.310 [info] UploadPackV2: fetch response 1303 bytes
02:04:32.312 [info] UploadPackV2: processing fetch command
02:04:32.312 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.312 [info] UploadPackV2: collected 9 objects, generating pack
02:04:32.312 [info] UploadPackV2: pack generated, 642 bytes
02:04:32.312 [info] UploadPackV2: fetch response 664 bytes
02:04:32.314 [info] UploadPackV2: processing fetch command
02:04:32.314 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:32.315 [info] UploadPackV2: collected 18 objects, generating pack
02:04:32.315 [info] UploadPackV2: pack generated, 1249 bytes
......................................................
02:04:32.770 [info] UploadPackV2: processing fetch command
.
02:04:32.770 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:04:32.770 [info] UploadPackV2: collected 3 objects, generating pack
.
02:04:32.770 [info] UploadPackV2: pack generated, 191 bytes
.
02:04:32.770 [info] UploadPackV2: fetch response 213 bytes
.
02:04:32.771 [info] UploadPackV2: processing fetch command
..
02:04:32.771 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
..
02:04:32.772 [info] UploadPackV2: fetch response 73 bytes
.
02:04:32.772 [info] UploadPackV2: processing fetch command
02:04:32.772 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
02:04:32.772 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
.........................................................................................
02:04:32.840 [info] UploadPackV2: processing fetch command
02:04:32.841 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:04:32.848 [info] UploadPackV2: collected 32 objects, streaming pack
................
02:04:32.924 [info] UploadPackV2: streamed pack 2459751 bytes, 32 objects
.
02:04:32.924 [info] UploadPackV2: fetch streamed 2459751 pack bytes, 32 objects
................
02:04:32.977 [info] UploadPackV2: processing fetch command
02:04:32.977 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.977 [info] UploadPackV2: collected 3 objects, generating pack
02:04:32.977 [info] UploadPackV2: pack generated, 194 bytes
02:04:32.977 [info] UploadPackV2: fetch response 216 bytes
.
02:04:32.978 [info] UploadPackV2: processing fetch command
02:04:32.978 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.978 [info] UploadPackV2: collected 3 objects, streaming pack
.
02:04:32.979 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
02:04:32.979 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
02:04:32.979 [info] UploadPackV2: processing ls-refs command
02:04:32.980 [info] UploadPackV2: processing fetch command
02:04:32.980 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:32.982 [info] UploadPackV2: collected 3 objects, generating pack
.
02:04:32.982 [info] UploadPackV2: pack generated, 206 bytes
02:04:32.982 [info] UploadPackV2: fetch response 228 bytes
02:04:32.983 [info] UploadPackV2: processing ls-refs command
.
02:04:32.984 [info] UploadPackV2: processing fetch command
02:04:32.984 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:04:32.985 [info] UploadPackV2: collected 15 objects, generating pack
.
02:04:32.985 [info] UploadPackV2: pack generated, 984 bytes
02:04:32.985 [info] UploadPackV2: fetch response 1006 bytes
...
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
02:04:32.987 [info] UploadPackV2: processing fetch command
..
02:04:32.987 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:04:32.988 [info] UploadPackV2: collected 3 objects, generating pack
.
02:04:32.988 [info] UploadPackV2: pack generated, 191 bytes
.
02:04:32.989 [info] UploadPackV2: fetch response 213 bytes
.......
02:04:32.995 [info] UploadPackV2: processing fetch command
02:04:32.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....
02:04:32.997 [info] UploadPackV2: collected 90 objects, generating pack
........
02:04:33.004 [info] UploadPackV2: pack generated, 5946 bytes
02:04:33.004 [info] UploadPackV2: fetch response 5968 bytes
..................
02:04:33.009 [info] UploadPackV2: processing fetch command
.
02:04:33.009 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
02:04:33.009 [info] UploadPackV2: collected 3 objects, generating pack
.
02:04:33.009 [info] UploadPackV2: pack generated, 223 bytes
.
02:04:33.009 [info] UploadPackV2: fetch response 245 bytes
.
02:04:33.010 [info] UploadPackV2: processing fetch command
.
02:04:33.010 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
02:04:33.011 [info] UploadPackV2: collected 9 objects, streaming pack
.
02:04:33.012 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
02:04:33.012 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
.
02:04:33.013 [info] UploadPackV2: processing fetch command
.
02:04:33.013 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.013 [info] UploadPackV2: collected 0 objects, generating pack
02:04:33.013 [info] UploadPackV2: pack generated, 32 bytes
02:04:33.013 [info] UploadPackV2: fetch response 54 bytes
...............
02:04:32.970 [info] The function passed as a handler with ID #Reference<0.2419781297.3666345992.250798> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:04:32.961 [info] The function passed as a handler with ID "test-fail-#Reference<0.2419781297.3666345995.254617>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:04:32.955 [info] The function passed as a handler with ID #Reference<0.2419781297.3666345990.260646> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:04:33.061 [info] The function passed as a handler with ID "test-#Reference<0.2419781297.3666345988.258454>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
......................................
02:04:33.082 [info] UploadPackV2: processing fetch command
..
02:04:33.082 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
02:04:33.090 [info] UploadPackV2: collected 32 objects, generating pack
.............................................
02:04:33.149 [info] UploadPackV2: pack generated, 2459811 bytes
.
02:04:33.155 [info] UploadPackV2: fetch response 2460018 bytes
02:04:33.155 [info] UploadPackV2: processing fetch command
.
02:04:33.155 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
......
02:04:33.162 [info] UploadPackV2: collected 32 objects, streaming pack
.........................................................
02:04:33.231 [info] UploadPackV2: streamed pack 2459811 bytes, 32 objects
02:04:33.231 [info] UploadPackV2: fetch streamed 2459811 pack bytes, 32 objects
..
02:04:33.233 [info] UploadPackV2: processing fetch command
02:04:33.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
02:04:33.234 [info] UploadPackV2: collected 15 objects, generating pack
02:04:33.234 [info] UploadPackV2: pack generated, 984 bytes
02:04:33.234 [info] UploadPackV2: fetch response 1006 bytes
02:04:33.234 [info] UploadPackV2: processing fetch command
02:04:33.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.234 [info] UploadPackV2: collected 15 objects, streaming pack
02:04:33.235 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
02:04:33.235 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
........
02:04:33.261 [info] UploadPackV2: processing fetch command
02:04:33.261 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.........
02:04:33.274 [info] UploadPackV2: collected 600 objects, generating pack
..........
02:04:33.279 [info] UploadPackV2: pack generated, 39862 bytes
02:04:33.279 [info] UploadPackV2: fetch response 39884 bytes
...
02:04:33.296 [info] UploadPackV2: processing ls-refs command
02:04:33.296 [info] UploadPackV2: processing ls-refs command
.
02:04:33.296 [info] UploadPackV2: processing fetch command
02:04:33.296 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.297 [info] UploadPackV2: collected 3 objects, generating pack
02:04:33.297 [info] UploadPackV2: pack generated, 191 bytes
.
02:04:33.297 [info] UploadPackV2: fetch response 213 bytes
02:04:33.297 [info] UploadPackV2: processing fetch command
02:04:33.298 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.298 [info] UploadPackV2: collected 6 objects, generating pack
02:04:33.298 [info] UploadPackV2: pack generated, 414 bytes
02:04:33.298 [info] UploadPackV2: fetch response 436 bytes
.
02:04:33.301 [info] UploadPackV2: processing fetch command
02:04:33.301 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.302 [info] UploadPackV2: collected 3 objects, streaming pack
02:04:33.304 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
02:04:33.304 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
..
02:04:33.322 [info] UploadPackV2: processing fetch command
02:04:33.322 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.332 [info] UploadPackV2: collected 700 objects, generating pack
02:04:33.338 [info] UploadPackV2: pack generated, 48139 bytes
02:04:33.338 [info] UploadPackV2: fetch response 48161 bytes
.
02:04:33.358 [info] UploadPackV2: processing fetch command
02:04:33.358 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.358 [info] UploadPackV2: collected 3 objects, generating pack
02:04:33.358 [info] UploadPackV2: pack generated, 195 bytes
02:04:33.358 [info] UploadPackV2: fetch response 217 bytes
.
02:04:33.359 [info] UploadPackV2: processing fetch command
02:04:33.359 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.359 [info] UploadPackV2: collected 3 objects, generating pack
02:04:33.359 [info] UploadPackV2: pack generated, 195 bytes
02:04:33.359 [info] UploadPackV2: fetch response 217 bytes
.
02:04:33.360 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
.
02:04:33.361 [info] UploadPackV2: processing ls-refs command
02:04:33.361 [info] UploadPackV2: processing fetch command
02:04:33.361 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.361 [info] UploadPackV2: collected 3 objects, generating pack
02:04:33.361 [info] UploadPackV2: pack generated, 210 bytes
02:04:33.361 [info] UploadPackV2: fetch response 232 bytes
.
02:04:33.372 [info] UploadPackV2: processing ls-refs command
.
02:04:33.372 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
....................................
02:04:33.564 [info] UploadPackV2: processing fetch command
02:04:33.564 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.568 [info] UploadPackV2: collected 163 objects, generating pack
02:04:33.571 [info] UploadPackV2: pack generated, 15084 bytes
02:04:33.571 [info] UploadPackV2: fetch response 15106 bytes
.
02:04:33.888 [info] UploadPackV2: processing fetch command
02:04:33.888 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:33.890 [info] UploadPackV2: reused pack 12011 bytes, 160 objects
02:04:33.890 [info] UploadPackV2: fetch response 12033 bytes
.
02:04:34.195 [info] UploadPackV2: processing fetch command
02:04:34.195 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:34.196 [info] UploadPackV2: reused pack 12107 bytes, 160 objects
02:04:34.196 [info] UploadPackV2: fetch response 12129 bytes
......................................................................................................................***********
02:04:36.396 [info] UploadPackV2: processing ls-refs command
02:04:36.397 [info] UploadPackV2: processing fetch command
02:04:36.398 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
02:04:36.398 [info] UploadPackV2: collected 3 objects, generating pack
02:04:36.398 [info] UploadPackV2: pack generated, 381 bytes
02:04:36.398 [info] UploadPackV2: fetch response 403 bytes
.
02:04:36.460 [info] UploadPackV2: processing ls-refs command
.
02:04:36.512 [info] UploadPackV2: processing ls-refs command
02:04:36.513 [info] UploadPackV2: processing fetch command
02:04:36.513 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:combine, [:blob_none, {:tree_depth, 1}]}, send_packfile=true
02:04:36.514 [info] UploadPackV2: collected 6 objects, generating pack
02:04:36.514 [info] UploadPackV2: pack generated, 513 bytes
02:04:36.514 [info] UploadPackV2: fetch response 535 bytes
.
02:04:36.572 [info] UploadPackV2: processing ls-refs command
.
02:04:36.620 [info] UploadPackV2: processing ls-refs command
02:04:36.621 [info] UploadPackV2: processing fetch command
02:04:36.621 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:04:36.621 [info] UploadPackV2: collected 3 objects, generating pack
02:04:36.622 [info] UploadPackV2: pack generated, 216 bytes
02:04:36.622 [info] UploadPackV2: fetch response 312 bytes
.
02:04:36.680 [info] UploadPackV2: processing ls-refs command
02:04:36.681 [info] UploadPackV2: processing fetch command
02:04:36.681 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:04:36.682 [info] UploadPackV2: collected 6 objects, generating pack
02:04:36.682 [info] UploadPackV2: pack generated, 513 bytes
02:04:36.682 [info] UploadPackV2: fetch response 535 bytes
.
02:04:36.740 [info] UploadPackV2: processing ls-refs command
.
02:04:36.788 [info] UploadPackV2: processing ls-refs command
02:04:36.789 [info] UploadPackV2: processing fetch command
02:04:36.789 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:04:36.789 [info] UploadPackV2: collected 3 objects, generating pack
02:04:36.789 [info] UploadPackV2: pack generated, 216 bytes
02:04:36.789 [info] UploadPackV2: fetch response 312 bytes
02:04:36.844 [info] UploadPackV2: processing ls-refs command
02:04:36.845 [info] UploadPackV2: processing fetch command
02:04:36.845 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:04:36.845 [info] UploadPackV2: collected 12 objects, generating pack
02:04:36.845 [info] UploadPackV2: pack generated, 768 bytes
02:04:36.845 [info] UploadPackV2: fetch response 1002 bytes
.
02:04:36.904 [info] UploadPackV2: processing ls-refs command
02:04:36.905 [info] UploadPackV2: processing fetch command
02:04:36.905 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:04:36.906 [info] UploadPackV2: collected 9 objects, generating pack
02:04:36.906 [info] UploadPackV2: pack generated, 585 bytes
02:04:36.906 [info] UploadPackV2: fetch response 681 bytes
..
02:04:36.964 [info] UploadPackV2: processing ls-refs command
02:04:36.966 [info] UploadPackV2: processing fetch command
02:04:36.966 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
02:04:36.966 [info] UploadPackV2: collected 3 objects, generating pack
02:04:36.967 [info] UploadPackV2: pack generated, 381 bytes
02:04:36.967 [info] UploadPackV2: fetch response 403 bytes
.
02:04:37.028 [info] UploadPackV2: processing ls-refs command
02:04:37.029 [info] UploadPackV2: processing fetch command
02:04:37.029 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
02:04:37.030 [info] UploadPackV2: collected 5 objects, generating pack
02:04:37.030 [info] UploadPackV2: pack generated, 319 bytes
02:04:37.030 [info] UploadPackV2: fetch response 341 bytes
.
02:04:37.092 [info] UploadPackV2: processing ls-refs command
02:04:37.093 [info] UploadPackV2: processing fetch command
02:04:37.093 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:04:37.093 [info] UploadPackV2: collected 3 objects, generating pack
02:04:37.093 [info] UploadPackV2: pack generated, 218 bytes
02:04:37.094 [info] UploadPackV2: fetch response 314 bytes
..
02:04:37.168 [info] UploadPackV2: processing ls-refs command
.
02:04:37.216 [info] UploadPackV2: processing ls-refs command
02:04:37.217 [info] UploadPackV2: processing fetch command
02:04:37.217 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.217 [info] UploadPackV2: collected 9 objects, generating pack
02:04:37.218 [info] UploadPackV2: pack generated, 549 bytes
02:04:37.218 [info] UploadPackV2: fetch response 571 bytes
02:04:37.231 [info] UploadPackV2: processing fetch command
02:04:37.231 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
02:04:37.231 [info] UploadPackV2: fetch response 171 bytes
.
02:04:37.242 [info] UploadPackV2: processing ls-refs command
02:04:37.243 [info] UploadPackV2: processing fetch command
02:04:37.243 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.244 [info] UploadPackV2: collected 9 objects, generating pack
02:04:37.244 [info] UploadPackV2: pack generated, 549 bytes
02:04:37.244 [info] UploadPackV2: fetch response 571 bytes
02:04:37.262 [info] UploadPackV2: processing ls-refs command
.
02:04:37.285 [info] UploadPackV2: processing ls-refs command
02:04:37.287 [info] UploadPackV2: processing fetch command
02:04:37.287 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.288 [info] UploadPackV2: collected 6 objects, generating pack
02:04:37.288 [info] UploadPackV2: pack generated, 366 bytes
02:04:37.288 [info] UploadPackV2: fetch response 388 bytes
02:04:37.306 [info] UploadPackV2: processing ls-refs command
..
02:04:37.344 [info] UploadPackV2: processing ls-refs command
02:04:37.345 [info] UploadPackV2: processing fetch command
02:04:37.345 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.346 [info] UploadPackV2: collected 3 objects, generating pack
02:04:37.346 [info] UploadPackV2: pack generated, 183 bytes
02:04:37.346 [info] UploadPackV2: fetch response 205 bytes
.
02:04:37.408 [info] UploadPackV2: processing fetch command
02:04:37.408 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.408 [info] UploadPackV2: collected 3 objects, generating pack
02:04:37.409 [info] UploadPackV2: pack generated, 183 bytes
02:04:37.409 [info] UploadPackV2: fetch response 205 bytes
.
02:04:37.432 [info] UploadPackV2: processing ls-refs command
02:04:37.433 [info] UploadPackV2: processing fetch command
02:04:37.433 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.435 [info] UploadPackV2: collected 180 objects, generating pack
02:04:37.439 [info] UploadPackV2: pack generated, 11106 bytes
02:04:37.439 [info] UploadPackV2: fetch response 11128 bytes
.
02:04:37.462 [info] UploadPackV2: processing ls-refs command
02:04:37.464 [info] UploadPackV2: processing fetch command
02:04:37.464 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.464 [info] UploadPackV2: collected 15 objects, generating pack
02:04:37.464 [info] UploadPackV2: pack generated, 919 bytes
02:04:37.464 [info] UploadPackV2: fetch response 941 bytes
.
02:04:37.524 [info] UploadPackV2: processing ls-refs command
02:04:37.525 [info] UploadPackV2: processing fetch command
02:04:37.525 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.525 [info] UploadPackV2: collected 3 objects, generating pack
02:04:37.526 [info] UploadPackV2: pack generated, 185 bytes
02:04:37.526 [info] UploadPackV2: fetch response 207 bytes
.
02:04:37.584 [info] UploadPackV2: processing ls-refs command
02:04:37.585 [info] UploadPackV2: processing fetch command
02:04:37.585 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:04:37.585 [info] UploadPackV2: collected 3 objects, generating pack
02:04:37.585 [info] UploadPackV2: pack generated, 196 bytes
02:04:37.585 [info] UploadPackV2: fetch response 218 bytes
..*****.
02:05:10.730 [info] UploadPackV2: processing ls-refs command
02:05:10.731 [info] UploadPackV2: processing fetch command
02:05:10.731 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:05:10.732 [info] UploadPackV2: collected 3 objects, generating pack
02:05:10.732 [info] UploadPackV2: pack generated, 183 bytes
02:05:10.732 [info] UploadPackV2: fetch response 205 bytes
.
02:05:10.838 [info] UploadPackV2: processing ls-refs command
02:05:10.839 [info] UploadPackV2: processing fetch command
02:05:10.839 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:05:10.839 [info] UploadPackV2: collected 6 objects, generating pack
02:05:10.839 [info] UploadPackV2: pack generated, 365 bytes
02:05:10.839 [info] UploadPackV2: fetch response 387 bytes
....
02:06:17.019 [info] UploadPackV2: processing ls-refs command
02:06:17.020 [info] UploadPackV2: processing fetch command
02:06:17.020 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:06:17.021 [info] UploadPackV2: collected 6 objects, generating pack
02:06:17.021 [info] UploadPackV2: pack generated, 365 bytes
02:06:17.021 [info] UploadPackV2: fetch response 387 bytes
..
02:06:32.167 [info] UploadPackV2: processing ls-refs command
02:06:32.168 [info] UploadPackV2: processing fetch command
02:06:32.168 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:06:32.169 [info] UploadPackV2: collected 3 objects, generating pack
02:06:32.169 [info] UploadPackV2: pack generated, 201 bytes
02:06:32.169 [info] UploadPackV2: fetch response 223 bytes
..
02:07:05.283 [info] UploadPackV2: processing ls-refs command
02:07:05.284 [info] UploadPackV2: processing fetch command
02:07:05.284 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:05.284 [info] UploadPackV2: collected 3 objects, generating pack
02:07:05.285 [info] UploadPackV2: pack generated, 183 bytes
02:07:05.285 [info] UploadPackV2: fetch response 205 bytes
.
02:07:20.351 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303348926" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:20.351 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303351292" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:07:20.351 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303348862" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:20.351 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303348798" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:07:20.352 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303348734" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:20.352 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303348670" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:07:20.352 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303348606" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:20.352 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303348542" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.....
02:07:20.967 [info] UploadPackV2: processing ls-refs command
02:07:20.968 [info] UploadPackV2: processing fetch command
02:07:20.968 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:20.969 [info] UploadPackV2: collected 90 objects, generating pack
02:07:20.970 [info] UploadPackV2: pack generated, 5649 bytes
02:07:20.970 [info] UploadPackV2: fetch response 5671 bytes
02:07:21.163 [info] UploadPackV2: processing ls-refs command
.
02:07:21.211 [info] UploadPackV2: processing ls-refs command
02:07:21.212 [info] UploadPackV2: processing fetch command
02:07:21.212 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:21.213 [info] UploadPackV2: collected 9 objects, generating pack
02:07:21.213 [info] UploadPackV2: pack generated, 547 bytes
02:07:21.213 [info] UploadPackV2: fetch response 569 bytes
02:07:21.275 [info] UploadPackV2: processing ls-refs command
.
02:07:21.323 [info] UploadPackV2: processing ls-refs command
02:07:21.324 [info] UploadPackV2: processing fetch command
02:07:21.324 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:21.324 [info] UploadPackV2: collected 6 objects, generating pack
02:07:21.324 [info] UploadPackV2: pack generated, 365 bytes
02:07:21.325 [info] UploadPackV2: fetch response 387 bytes
02:07:21.336 [info] UploadPackV2: processing fetch command
02:07:21.336 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
02:07:21.336 [info] UploadPackV2: fetch response 122 bytes
.
02:07:21.407 [info] UploadPackV2: processing ls-refs command
02:07:21.408 [info] UploadPackV2: processing fetch command
02:07:21.408 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:21.409 [info] UploadPackV2: collected 6 objects, generating pack
02:07:21.409 [info] UploadPackV2: pack generated, 365 bytes
02:07:21.409 [info] UploadPackV2: fetch response 387 bytes
.
02:07:39.400 [info] UploadPackV2: processing ls-refs command
02:07:39.401 [info] UploadPackV2: processing fetch command
02:07:39.401 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:39.401 [info] UploadPackV2: collected 6 objects, generating pack
02:07:39.401 [info] UploadPackV2: pack generated, 366 bytes
02:07:39.401 [info] UploadPackV2: fetch response 388 bytes
02:07:39.456 [info] UploadPackV2: processing ls-refs command
02:07:39.456 [info] UploadPackV2: processing fetch command
02:07:39.457 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
02:07:39.457 [info] UploadPackV2: fetch response 32 bytes
02:07:39.457 [info] UploadPackV2: processing fetch command
02:07:39.457 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:39.457 [info] UploadPackV2: collected 3 objects, generating pack
02:07:39.457 [info] UploadPackV2: pack generated, 183 bytes
02:07:39.457 [info] UploadPackV2: fetch response 205 bytes
.
02:07:39.462 [info] UploadPackV2: processing fetch command
02:07:39.462 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:39.462 [info] UploadPackV2: collected 3 objects, generating pack
.
02:07:39.462 [info] UploadPackV2: pack generated, 183 bytes
02:07:39.462 [info] UploadPackV2: fetch response 205 bytes
02:07:39.516 [info] UploadPackV2: processing ls-refs command
02:07:39.516 [info] UploadPackV2: processing ls-refs command
02:07:39.517 [info] UploadPackV2: processing fetch command
02:07:39.517 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:39.517 [info] UploadPackV2: processing fetch command
02:07:39.517 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:39.517 [info] UploadPackV2: collected 6 objects, generating pack
02:07:39.517 [info] UploadPackV2: collected 6 objects, generating pack
02:07:39.517 [info] UploadPackV2: pack generated, 365 bytes
02:07:39.517 [info] UploadPackV2: fetch response 387 bytes
02:07:39.518 [info] UploadPackV2: pack generated, 365 bytes
02:07:39.518 [info] UploadPackV2: fetch response 387 bytes
.
02:07:39.584 [info] UploadPackV2: processing ls-refs command
02:07:39.585 [info] UploadPackV2: processing fetch command
02:07:39.585 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:39.585 [info] UploadPackV2: collected 6 objects, generating pack
02:07:39.585 [info] UploadPackV2: pack generated, 365 bytes
02:07:39.586 [info] UploadPackV2: fetch response 387 bytes
02:07:40.908 [info] UploadPackV2: processing ls-refs command
.
02:07:40.972 [info] UploadPackV2: processing ls-refs command
02:07:40.972 [info] UploadPackV2: processing fetch command
02:07:40.972 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:07:40.973 [info] UploadPackV2: collected 3 objects, generating pack
02:07:40.973 [info] UploadPackV2: pack generated, 216 bytes
02:07:40.973 [info] UploadPackV2: fetch response 346 bytes
.
02:07:40.978 [info] The function passed as a handler with ID "telemetry-test-90882" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:07:56.042 [info] The function passed as a handler with ID "telemetry-test-90946" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:56.042 [info] UploadPackV2: processing fetch command
02:07:56.042 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
02:07:56.042 [info] UploadPackV2: collected 2 objects, generating pack
02:07:56.042 [info] UploadPackV2: pack generated, 169 bytes
.
02:07:56.042 [info] UploadPackV2: fetch response 191 bytes
02:07:56.042 [info] The function passed as a handler with ID "telemetry-test-80195" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:56.043 [info] UploadPackV2: processing fetch command
02:07:56.043 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:07:56.043 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.043 [info] UploadPackV2: pack generated, 186 bytes
02:07:56.043 [info] UploadPackV2: fetch response 208 bytes
02:07:56.043 [info] The function passed as a handler with ID "telemetry-test-80259" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
02:07:56.043 [info] UploadPackV2: processing fetch command
.
02:07:56.043 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:07:56.043 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.043 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.043 [info] UploadPackV2: fetch response 205 bytes
...................
02:07:56.112 [info] UploadPackV2: processing ls-refs command
.
02:07:56.188 [info] UploadPackV2: processing ls-refs command
02:07:56.189 [info] UploadPackV2: processing fetch command
02:07:56.189 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:07:56.189 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.189 [info] UploadPackV2: pack generated, 231 bytes
02:07:56.189 [info] UploadPackV2: fetch response 327 bytes
.
02:07:56.244 [info] UploadPackV2: processing ls-refs command
.
02:07:56.300 [info] UploadPackV2: processing ls-refs command
02:07:56.301 [info] UploadPackV2: processing fetch command
02:07:56.301 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.303 [info] UploadPackV2: collected 240 objects, generating pack
02:07:56.305 [info] UploadPackV2: pack generated, 16258 bytes
02:07:56.305 [info] UploadPackV2: fetch response 16280 bytes
.
02:07:56.321 [info] UploadPackV2: processing fetch command
02:07:56.321 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.321 [info] UploadPackV2: collected 0 objects, generating pack
02:07:56.321 [info] UploadPackV2: pack generated, 32 bytes
02:07:56.321 [info] UploadPackV2: fetch response 54 bytes
.
02:07:56.522 [info] UploadPackV2: processing fetch command
02:07:56.522 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.522 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.522 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.522 [info] UploadPackV2: fetch response 205 bytes
02:07:56.522 [info] UploadPackV2: processing fetch command
02:07:56.522 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.523 [info] UploadPackV2: fetch response 205 bytes
02:07:56.523 [info] UploadPackV2: processing fetch command
02:07:56.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.523 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.523 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.524 [info] UploadPackV2: fetch response 205 bytes
02:07:56.524 [info] UploadPackV2: processing fetch command
02:07:56.524 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.524 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.524 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.525 [info] UploadPackV2: processing fetch command
02:07:56.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.525 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.525 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.525 [info] UploadPackV2: processing fetch command
02:07:56.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.525 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.525 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.525 [info] UploadPackV2: processing fetch command
02:07:56.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.525 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.525 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.525 [info] UploadPackV2: processing fetch command
02:07:56.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.525 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.525 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.525 [info] UploadPackV2: processing fetch command
02:07:56.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.525 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.525 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.525 [info] UploadPackV2: processing fetch command
02:07:56.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.525 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.525 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.525 [info] UploadPackV2: fetch response 205 bytes
02:07:56.526 [info] UploadPackV2: processing fetch command
02:07:56.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
02:07:56.526 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.526 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.526 [info] UploadPackV2: fetch response 205 bytes
02:07:56.526 [info] UploadPackV2: processing fetch command
02:07:56.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.526 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.526 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.526 [info] UploadPackV2: fetch response 205 bytes
02:07:56.526 [info] UploadPackV2: processing fetch command
02:07:56.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.526 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.526 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.526 [info] UploadPackV2: fetch response 205 bytes
02:07:56.526 [info] UploadPackV2: processing fetch command
02:07:56.526 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.526 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.526 [info] UploadPackV2: pack generated, 183 bytes
02:07:56.526 [info] UploadPackV2: fetch response 205 bytes
02:07:56.592 [info] UploadPackV2: processing ls-refs command
02:07:56.594 [info] UploadPackV2: processing fetch command
02:07:56.594 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.601 [info] UploadPackV2: collected 600 objects, generating pack
02:07:56.608 [info] UploadPackV2: pack generated, 45197 bytes
02:07:56.608 [info] UploadPackV2: fetch response 45219 bytes
.
02:07:56.672 [info] UploadPackV2: processing ls-refs command
02:07:56.673 [info] UploadPackV2: processing fetch command
02:07:56.673 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.673 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.673 [info] UploadPackV2: pack generated, 185 bytes
02:07:56.673 [info] UploadPackV2: fetch response 207 bytes
02:07:56.728 [info] UploadPackV2: processing ls-refs command
.
02:07:56.792 [info] UploadPackV2: processing ls-refs command
02:07:56.792 [info] UploadPackV2: processing fetch command
02:07:56.792 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
02:07:56.793 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.793 [info] UploadPackV2: pack generated, 200 bytes
02:07:56.793 [info] UploadPackV2: fetch response 256 bytes
.
02:07:56.844 [info] UploadPackV2: processing ls-refs command
02:07:56.845 [info] UploadPackV2: processing fetch command
02:07:56.845 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.845 [info] UploadPackV2: collected 3 objects, generating pack
02:07:56.845 [info] UploadPackV2: pack generated, 196 bytes
02:07:56.845 [info] UploadPackV2: fetch response 218 bytes
.
02:07:56.900 [info] UploadPackV2: processing ls-refs command
02:07:56.901 [info] UploadPackV2: processing fetch command
02:07:56.901 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
02:07:56.901 [info] UploadPackV2: collected 15 objects, generating pack
02:07:56.902 [info] UploadPackV2: pack generated, 952 bytes
02:07:56.902 [info] UploadPackV2: fetch response 974 bytes
................
02:07:56.921 [info] The function passed as a handler with ID "graph-query-test-80579" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
...
02:07:56.922 [info] The function passed as a handler with ID "graph-query-test-68678" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
...
02:07:56.924 [info] The function passed as a handler with ID "rev-list-range-test-68934" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:07:56.925 [info] The function passed as a handler with ID "graph-query-test-68998" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.
02:07:56.926 [info] The function passed as a handler with ID "rev-list-range-test-80771" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
..
02:07:56.928 [info] The function passed as a handler with ID "rev-list-range-test-92162" 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 190.6 seconds (4.7s async, 185.9s sync)
Result: 1027 passed (2 properties, 1025 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"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)