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") '
Started: Jul 10, 2026 at 14:38 UTC Completed: Jul 10, 2026 at 14:41 UTC Duration: 3m 28s
Exit code: 0

Build Output

Using cached prepared image: anvil-prepared:cfa6aaa93a51
Compiling 1 file (.ex)
Cover compiling modules ...
Running ExUnit with seed: 740852, max_cases: 8
Excluding tags: [:s3]
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
328 │ <<pack_part1::binary-size(split_point), pack_part2::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:328:33: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles pack data split across multiple feed calls"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
382 │ <<part1::binary-size(split_point), part2::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:382:28: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles command split mid-pkt-line"/1
warning: the variable "split_point" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
437 │ <<first_chunk::binary-size(split_point), second_chunk::binary>> = full_data
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_test.exs:437:34: ExGitObjectstore.Protocol.ReceivePackTest."test split data handling handles split command data across multiple feed calls"/1
warning: variable "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
..................................................
14:38:15.427 [info] The function passed as a handler with ID #Reference<0.1623930841.3882876932.15138> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: 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)
..........................................................................................
14:38:15.906 [info] The function passed as a handler with ID "test-#Reference<0.1623930841.3882876930.15896>" 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
...........
14:38:15.931 [info] The function passed as a handler with ID "test-fail-#Reference<0.1623930841.3882876932.17142>" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
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
...................................................................................
14:38:16.421 [info] The function passed as a handler with ID #Reference<0.1623930841.3882876931.17167> is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
224 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/fsck_test.exs:224:25: ExGitObjectstore.FsckTest."test detects corrupted pack checksum"/1
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 "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
................................................................................................................
14:38:17.232 [warning] post_receive hook failed: "webhook failed"
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
warning: the variable "mid" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
207 │ <<before::binary-size(mid), byte, after_bytes::binary>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:207:29: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification verify_pack_checksum detects corruption"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
225 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = pack_data
│ ~
└─ test/ex_git_objectstore/pack/reader_test.exs:225:27: ExGitObjectstore.Pack.ReaderTest."test spec compliance - pack checksum verification parse rejects pack with corrupted checksum"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
388 │ <<payload::binary-size(payload_len), tail::binary>> = rest
│ ~
└─ test/ex_git_objectstore/protocol/upload_pack_v2_walker_property_test.exs:388:28: ExGitObjectstore.Protocol.UploadPackV2WalkerPropertyTest.raw_pkt_payloads/1
warning: variable "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
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
.................................................................................................................................................................................................................................................................................................................
14:38:20.892 [info] UploadPackV2: processing fetch command
14:38:20.892 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.....
14:38:20.908 [info] UploadPackV2: processing ls-refs command
....
14:38:20.915 [info] UploadPackV2: processing fetch command
.
14:38:20.916 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:20.917 [info] UploadPackV2: collected 3 objects, generating pack
.
14:38:20.917 [info] UploadPackV2: pack generated, 194 bytes
.
14:38:20.917 [info] UploadPackV2: fetch response 216 bytes
.
14:38:20.919 [info] UploadPackV2: processing fetch command
.
14:38:20.919 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:20.919 [info] UploadPackV2: processing ls-refs command
.
14:38:20.920 [info] UploadPackV2: collected 24 objects, generating pack
.
14:38:20.920 [info] UploadPackV2: pack generated, 1443 bytes
.
14:38:20.920 [info] UploadPackV2: fetch response 1465 bytes
.
14:38:20.920 [info] UploadPackV2: processing fetch command
.
14:38:20.920 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:20.921 [info] UploadPackV2: collected 3 objects, generating pack
.
14:38:20.921 [info] UploadPackV2: pack generated, 206 bytes
.
14:38:20.921 [info] UploadPackV2: fetch response 228 bytes
.
14:38:20.925 [info] UploadPackV2: processing fetch command
.
14:38:20.925 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:20.928 [info] UploadPackV2: collected 6 objects, generating pack
.
14:38:20.929 [info] UploadPackV2: pack generated, 414 bytes
.
14:38:20.929 [info] UploadPackV2: fetch response 436 bytes
.
14:38:20.933 [info] UploadPackV2: processing fetch command
.
14:38:20.934 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
.
14:38:20.935 [info] UploadPackV2: fetch response 73 bytes
14:38:20.935 [info] UploadPackV2: processing fetch command
14:38:20.935 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:38:20.935 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
14:38:20.943 [info] UploadPackV2: processing fetch command
14:38:20.944 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.945 [info] UploadPackV2: collected 163 objects, generating pack
14:38:20.946 [info] UploadPackV2: collected 15 objects, generating pack
14:38:20.947 [info] UploadPackV2: pack generated, 984 bytes
14:38:20.947 [info] UploadPackV2: fetch response 1006 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)
14:38:20.947 [info] UploadPackV2: processing fetch command
14:38:20.948 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.952 [info] UploadPackV2: collected 15 objects, streaming pack
14:38:20.956 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
14:38:20.956 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
14:38:20.957 [info] UploadPackV2: pack generated, 15096 bytes
14:38:20.957 [info] UploadPackV2: fetch response 15118 bytes
14:38:20.961 [info] UploadPackV2: processing fetch command
14:38:20.961 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.961 [info] UploadPackV2: processing fetch command
14:38:20.962 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.963 [info] UploadPackV2: collected 3 objects, generating pack
14:38:20.963 [info] UploadPackV2: pack generated, 195 bytes
14:38:20.963 [info] UploadPackV2: fetch response 217 bytes
14:38:20.965 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
14:38:20.967 [info] UploadPackV2: processing fetch command
14:38:20.967 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.968 [info] UploadPackV2: collected 3 objects, generating pack
14:38:20.969 [info] UploadPackV2: pack generated, 191 bytes
14:38:20.969 [info] UploadPackV2: fetch response 213 bytes
14:38:20.970 [info] UploadPackV2: collected 30 objects, generating pack
14:38:20.971 [info] UploadPackV2: pack generated, 1861 bytes
14:38:20.971 [info] UploadPackV2: fetch response 1883 bytes
14:38:20.975 [info] UploadPackV2: processing fetch command
14:38:20.975 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.977 [info] UploadPackV2: collected 9 objects, streaming pack
14:38:20.980 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
14:38:20.980 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
14:38:20.984 [info] UploadPackV2: processing fetch command
14:38:20.984 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.984 [info] UploadPackV2: processing fetch command
14:38:20.985 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:20.987 [info] UploadPackV2: collected 11 objects, generating pack
14:38:20.988 [info] UploadPackV2: pack generated, 684 bytes
14:38:20.988 [info] UploadPackV2: fetch response 706 bytes
14:38:20.989 [info] UploadPackV2: collected 3 objects, generating pack
14:38:20.989 [info] UploadPackV2: pack generated, 191 bytes
14:38:20.989 [info] UploadPackV2: fetch response 213 bytes
14:38:20.997 [info] UploadPackV2: processing fetch command
14:38:20.997 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.000 [info] UploadPackV2: collected 3 objects, generating pack
14:38:21.000 [info] UploadPackV2: pack generated, 223 bytes
14:38:21.000 [info] UploadPackV2: fetch response 245 bytes
14:38:21.009 [info] UploadPackV2: processing fetch command
14:38:21.093 [info] UploadPackV2: processing fetch command
14:38:21.291 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.291 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.293 [info] UploadPackV2: collected 7 objects, generating pack
14:38:21.293 [info] UploadPackV2: pack generated, 475 bytes
14:38:21.293 [info] UploadPackV2: fetch response 497 bytes
14:38:21.300 [info] UploadPackV2: processing fetch command
14:38:21.300 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.303 [info] UploadPackV2: collected 11 objects, generating pack
14:38:21.304 [info] UploadPackV2: pack generated, 717 bytes
14:38:21.304 [info] UploadPackV2: fetch response 739 bytes
14:38:21.313 [info] UploadPackV2: processing fetch command
14:38:21.314 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.317 [info] UploadPackV2: collected 12 objects, generating pack
14:38:21.318 [info] UploadPackV2: pack generated, 691 bytes
14:38:21.318 [info] UploadPackV2: fetch response 713 bytes
14:38:21.335 [info] UploadPackV2: processing fetch command
14:38:21.335 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.345 [info] UploadPackV2: collected 39 objects, generating pack
14:38:21.346 [info] UploadPackV2: pack generated, 2366 bytes
14:38:21.347 [info] UploadPackV2: fetch response 2388 bytes
14:38:21.369 [info] UploadPackV2: processing fetch command
14:38:21.369 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.374 [info] UploadPackV2: collected 18 objects, generating pack
14:38:21.375 [info] UploadPackV2: pack generated, 1141 bytes
14:38:21.375 [info] UploadPackV2: fetch response 1163 bytes
14:38:21.396 [info] UploadPackV2: processing fetch command
14:38:21.396 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.399 [info] UploadPackV2: collected 12 objects, generating pack
14:38:21.400 [info] UploadPackV2: pack generated, 723 bytes
14:38:21.400 [info] UploadPackV2: fetch response 745 bytes
14:38:21.412 [info] UploadPackV2: processing fetch command
14:38:21.412 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.417 [info] UploadPackV2: collected 20 objects, generating pack
14:38:21.419 [info] UploadPackV2: pack generated, 1171 bytes
14:38:21.419 [info] UploadPackV2: fetch response 1193 bytes
14:38:21.435 [info] UploadPackV2: processing fetch command
14:38:21.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.439 [info] UploadPackV2: collected 19 objects, generating pack
14:38:21.440 [info] UploadPackV2: pack generated, 1194 bytes
14:38:21.440 [info] UploadPackV2: fetch response 1216 bytes
14:38:21.459 [info] UploadPackV2: processing fetch command
14:38:21.460 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.465 [info] UploadPackV2: collected 23 objects, generating pack
14:38:21.467 [info] UploadPackV2: pack generated, 1437 bytes
14:38:21.467 [info] UploadPackV2: fetch response 1459 bytes
14:38:21.490 [info] UploadPackV2: processing fetch command
.
14:38:21.491 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
....
14:38:21.512 [info] UploadPackV2: collected 35 objects, generating pack
.
14:38:21.513 [info] UploadPackV2: pack generated, 2126 bytes
14:38:21.513 [info] UploadPackV2: fetch response 2148 bytes
14:38:21.519 [info] UploadPackV2: collected 600 objects, generating pack
.
14:38:21.529 [info] UploadPackV2: pack generated, 39862 bytes
14:38:21.529 [info] UploadPackV2: fetch response 39884 bytes
14:38:21.589 [info] UploadPackV2: processing fetch command
14:38:21.589 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.595 [info] UploadPackV2: collected 12 objects, generating pack
14:38:21.595 [info] UploadPackV2: pack generated, 723 bytes
14:38:21.595 [info] UploadPackV2: fetch response 745 bytes
14:38:21.611 [info] UploadPackV2: processing fetch command
14:38:21.611 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.617 [info] UploadPackV2: collected 11 objects, generating pack
14:38:21.617 [info] UploadPackV2: pack generated, 664 bytes
14:38:21.618 [info] UploadPackV2: fetch response 686 bytes
14:38:21.635 [info] UploadPackV2: processing fetch command
14:38:21.635 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.645 [info] UploadPackV2: collected 23 objects, generating pack
14:38:21.646 [info] UploadPackV2: pack generated, 1437 bytes
14:38:21.646 [info] UploadPackV2: fetch response 1459 bytes
14:38:21.685 [info] UploadPackV2: processing fetch command
14:38:21.686 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.696 [info] UploadPackV2: processing fetch command
14:38:21.696 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.697 [info] UploadPackV2: collected 43 objects, generating pack
14:38:21.698 [info] UploadPackV2: pack generated, 2607 bytes
14:38:21.698 [info] UploadPackV2: fetch response 2629 bytes
14:38:21.704 [info] UploadPackV2: processing fetch command
14:38:21.704 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.705 [info] UploadPackV2: collected 27 objects, generating pack
14:38:21.705 [info] UploadPackV2: pack generated, 1676 bytes
14:38:21.705 [info] UploadPackV2: fetch response 1698 bytes
14:38:21.709 [info] UploadPackV2: processing fetch command
14:38:21.709 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...........
14:38:21.709 [info] UploadPackV2: collected 24 objects, generating pack
14:38:22.521 [notice] Handler :default switched from :sync to :drop mode
.
14:38:21.710 [info] UploadPackV2: pack generated, 1443 bytes
.
14:38:21.710 [info] UploadPackV2: fetch response 1465 bytes
.
14:38:21.714 [info] UploadPackV2: processing fetch command
.
14:38:21.714 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.715 [info] UploadPackV2: collected 19 objects, generating pack
.
14:38:21.715 [info] UploadPackV2: pack generated, 1196 bytes
.
14:38:21.715 [info] UploadPackV2: fetch response 1218 bytes
.
14:38:21.719 [info] UploadPackV2: processing fetch command
.
14:38:21.719 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.720 [info] UploadPackV2: collected 16 objects, generating pack
.
14:38:21.720 [info] UploadPackV2: pack generated, 962 bytes
.
14:38:21.720 [info] UploadPackV2: fetch response 984 bytes
.
14:38:21.721 [info] UploadPackV2: collected 32 objects, streaming pack
14:38:21.725 [info] UploadPackV2: processing fetch command
14:38:21.725 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.734 [info] UploadPackV2: collected 42 objects, generating pack
14:38:21.735 [info] UploadPackV2: pack generated, 2581 bytes
.
14:38:21.735 [info] UploadPackV2: fetch response 2603 bytes
.
14:38:21.751 [info] UploadPackV2: processing fetch command
.
14:38:21.751 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.755 [info] UploadPackV2: collected 15 objects, generating pack
14:38:21.755 [info] UploadPackV2: pack generated, 956 bytes
14:38:21.756 [info] UploadPackV2: fetch response 978 bytes
14:38:21.770 [info] UploadPackV2: processing fetch command
14:38:21.770 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.774 [info] UploadPackV2: collected 16 objects, generating pack
14:38:21.775 [info] UploadPackV2: pack generated, 962 bytes
14:38:21.775 [info] UploadPackV2: fetch response 984 bytes
14:38:21.782 [info] UploadPackV2: processing fetch command
14:38:21.782 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.784 [info] UploadPackV2: collected 4 objects, generating pack
14:38:21.785 [info] UploadPackV2: pack generated, 241 bytes
.
14:38:21.785 [info] UploadPackV2: fetch response 263 bytes
.
14:38:21.796 [info] UploadPackV2: processing fetch command
.
14:38:21.797 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.806 [info] UploadPackV2: collected 46 objects, generating pack
.
14:38:21.808 [info] UploadPackV2: pack generated, 2816 bytes
.
14:38:21.808 [info] UploadPackV2: fetch response 2838 bytes
.
14:38:21.814 [info] UploadPackV2: streamed pack 2459746 bytes, 32 objects
14:38:21.814 [info] UploadPackV2: fetch streamed 2459746 pack bytes, 32 objects
14:38:21.819 [info] UploadPackV2: processing fetch command
14:38:21.819 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.820 [info] UploadPackV2: collected 35 objects, generating pack
14:38:21.820 [info] UploadPackV2: pack generated, 2128 bytes
.
14:38:21.820 [info] UploadPackV2: fetch response 2150 bytes
14:38:21.824 [info] UploadPackV2: processing fetch command
14:38:21.824 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.825 [info] UploadPackV2: collected 4 objects, generating pack
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
14:38:21.825 [info] UploadPackV2: pack generated, 241 bytes
.
14:38:21.825 [info] UploadPackV2: fetch response 263 bytes
14:38:21.826 [info] UploadPackV2: processing fetch command
14:38:21.826 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.827 [info] UploadPackV2: collected 24 objects, generating pack
14:38:21.827 [info] UploadPackV2: pack generated, 1443 bytes
14:38:21.827 [info] UploadPackV2: fetch response 1465 bytes
14:38:21.831 [info] UploadPackV2: processing fetch command
14:38:21.831 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.832 [info] UploadPackV2: collected 24 objects, generating pack
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
14:38:21.832 [info] UploadPackV2: pack generated, 1443 bytes
14:38:21.832 [info] UploadPackV2: fetch response 1465 bytes
14:38:21.836 [info] UploadPackV2: processing fetch command
14:38:21.836 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.837 [info] UploadPackV2: collected 30 objects, generating pack
14:38:21.837 [info] UploadPackV2: pack generated, 1858 bytes
14:38:21.837 [info] UploadPackV2: fetch response 1880 bytes
14:38:21.840 [info] UploadPackV2: processing fetch command
14:38:21.841 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.841 [info] UploadPackV2: collected 24 objects, generating pack
14:38:21.842 [info] UploadPackV2: pack generated, 1411 bytes
14:38:21.842 [info] UploadPackV2: fetch response 1433 bytes
14:38:21.845 [info] UploadPackV2: processing fetch command
14:38:21.845 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.845 [info] UploadPackV2: collected 23 objects, generating pack
14:38:21.846 [info] UploadPackV2: pack generated, 1435 bytes
14:38:21.846 [info] UploadPackV2: fetch response 1457 bytes
14:38:21.848 [info] UploadPackV2: processing fetch command
14:38:21.848 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.849 [info] UploadPackV2: collected 15 objects, generating pack
14:38:21.849 [info] UploadPackV2: pack generated, 956 bytes
14:38:21.849 [info] UploadPackV2: fetch response 978 bytes
14:38:21.852 [info] UploadPackV2: processing fetch command
14:38:21.852 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.852 [info] UploadPackV2: collected 11 objects, generating pack
14:38:21.852 [info] UploadPackV2: pack generated, 717 bytes
14:38:21.852 [info] UploadPackV2: fetch response 739 bytes
14:38:21.854 [info] UploadPackV2: processing fetch command
14:38:21.855 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.855 [info] UploadPackV2: collected 24 objects, generating pack
14:38:21.856 [info] UploadPackV2: pack generated, 1443 bytes
14:38:21.856 [info] UploadPackV2: fetch response 1465 bytes
14:38:21.860 [info] UploadPackV2: processing fetch command
14:38:21.861 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.862 [info] UploadPackV2: collected 51 objects, generating pack
14:38:21.863 [info] UploadPackV2: pack generated, 3070 bytes
14:38:21.863 [info] UploadPackV2: fetch response 3092 bytes
14:38:21.867 [info] UploadPackV2: processing fetch command
.
14:38:21.867 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.868 [info] UploadPackV2: collected 12 objects, generating pack
.
14:38:21.868 [info] UploadPackV2: pack generated, 723 bytes
.
14:38:21.868 [info] UploadPackV2: fetch response 745 bytes
.
14:38:21.871 [info] UploadPackV2: processing fetch command
14:38:21.871 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.871 [info] UploadPackV2: collected 31 objects, generating pack
14:38:21.872 [info] UploadPackV2: pack generated, 1866 bytes
14:38:21.872 [info] UploadPackV2: fetch response 1888 bytes
14:38:21.877 [info] UploadPackV2: processing fetch command
14:38:21.877 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.877 [info] UploadPackV2: collected 24 objects, generating pack
.
14:38:21.878 [info] UploadPackV2: pack generated, 1443 bytes
14:38:21.878 [info] UploadPackV2: fetch response 1465 bytes
14:38:21.882 [info] UploadPackV2: processing fetch command
14:38:21.882 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.883 [info] UploadPackV2: collected 20 objects, generating pack
14:38:21.883 [info] UploadPackV2: pack generated, 1203 bytes
14:38:21.883 [info] UploadPackV2: fetch response 1225 bytes
14:38:21.887 [info] UploadPackV2: processing fetch command
14:38:21.887 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.888 [info] UploadPackV2: collected 42 objects, generating pack
14:38:21.889 [info] UploadPackV2: pack generated, 2574 bytes
14:38:21.889 [info] UploadPackV2: fetch response 2596 bytes
14:38:21.894 [info] UploadPackV2: processing fetch command
14:38:21.894 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.896 [info] UploadPackV2: collected 56 objects, generating pack
14:38:21.897 [info] UploadPackV2: pack generated, 3302 bytes
14:38:21.897 [info] UploadPackV2: fetch response 3324 bytes
14:38:21.904 [info] UploadPackV2: processing fetch command
14:38:21.904 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.905 [info] UploadPackV2: collected 47 objects, generating pack
14:38:21.906 [info] UploadPackV2: pack generated, 2848 bytes
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
14:38:21.906 [info] UploadPackV2: fetch response 2870 bytes
14:38:21.912 [info] UploadPackV2: processing fetch command
14:38:21.912 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.914 [info] UploadPackV2: collected 50 objects, generating pack
14:38:21.915 [info] UploadPackV2: pack generated, 3061 bytes
14:38:21.915 [info] UploadPackV2: fetch response 3083 bytes
14:38:21.920 [info] UploadPackV2: processing fetch command
14:38:21.920 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.921 [info] UploadPackV2: collected 20 objects, generating pack
14:38:21.921 [info] UploadPackV2: pack generated, 1203 bytes
14:38:21.921 [info] UploadPackV2: fetch response 1225 bytes
14:38:21.924 [info] UploadPackV2: processing fetch command
14:38:21.924 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.925 [info] UploadPackV2: collected 20 objects, generating pack
14:38:21.925 [info] UploadPackV2: pack generated, 1203 bytes
14:38:21.925 [info] UploadPackV2: fetch response 1225 bytes
14:38:21.928 [info] UploadPackV2: processing fetch command
14:38:21.928 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.928 [info] UploadPackV2: collected 16 objects, generating pack
14:38:21.929 [info] UploadPackV2: pack generated, 902 bytes
14:38:21.929 [info] UploadPackV2: fetch response 924 bytes
14:38:21.932 [info] UploadPackV2: processing fetch command
14:38:21.932 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.933 [info] UploadPackV2: collected 38 objects, generating pack
14:38:21.933 [info] UploadPackV2: pack generated, 2342 bytes
14:38:21.933 [info] UploadPackV2: fetch response 2364 bytes
14:38:21.939 [info] UploadPackV2: processing fetch command
14:38:21.939 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.940 [info] UploadPackV2: collected 27 objects, generating pack
14:38:21.940 [info] UploadPackV2: pack generated, 1676 bytes
14:38:21.940 [info] UploadPackV2: fetch response 1698 bytes
14:38:21.944 [info] UploadPackV2: processing fetch command
14:38:21.944 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.945 [info] UploadPackV2: collected 23 objects, generating pack
14:38:21.945 [info] UploadPackV2: pack generated, 1435 bytes
14:38:21.945 [info] UploadPackV2: fetch response 1457 bytes
14:38:21.949 [info] UploadPackV2: processing fetch command
14:38:21.949 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.949 [info] UploadPackV2: collected 12 objects, generating pack
14:38:21.950 [info] UploadPackV2: pack generated, 723 bytes
14:38:21.950 [info] UploadPackV2: fetch response 745 bytes
14:38:21.952 [info] UploadPackV2: processing fetch command
14:38:21.952 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.952 [info] UploadPackV2: collected 15 objects, generating pack
14:38:21.952 [info] UploadPackV2: pack generated, 956 bytes
14:38:21.952 [info] UploadPackV2: fetch response 978 bytes
14:38:21.955 [info] UploadPackV2: processing fetch command
14:38:21.955 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.956 [info] UploadPackV2: collected 27 objects, generating pack
14:38:21.956 [info] UploadPackV2: pack generated, 1678 bytes
14:38:21.956 [info] UploadPackV2: fetch response 1700 bytes
14:38:21.959 [info] UploadPackV2: processing fetch command
14:38:21.959 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.960 [info] UploadPackV2: collected 12 objects, generating pack
14:38:21.960 [info] UploadPackV2: pack generated, 723 bytes
14:38:21.960 [info] UploadPackV2: fetch response 745 bytes
14:38:21.962 [info] UploadPackV2: processing fetch command
14:38:21.963 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.963 [info] UploadPackV2: collected 8 objects, generating pack
14:38:21.963 [info] UploadPackV2: pack generated, 482 bytes
14:38:21.963 [info] UploadPackV2: fetch response 504 bytes
14:38:21.965 [info] UploadPackV2: processing fetch command
14:38:21.966 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.967 [info] UploadPackV2: collected 35 objects, generating pack
14:38:21.967 [info] UploadPackV2: pack generated, 2124 bytes
14:38:21.967 [info] UploadPackV2: fetch response 2146 bytes
14:38:21.972 [info] UploadPackV2: processing fetch command
14:38:21.972 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.972 [info] UploadPackV2: collected 7 objects, generating pack
.
14:38:21.972 [info] UploadPackV2: pack generated, 475 bytes
.
14:38:21.972 [info] UploadPackV2: fetch response 497 bytes
14:38:21.975 [info] UploadPackV2: processing fetch command
14:38:21.975 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.977 [info] UploadPackV2: collected 59 objects, generating pack
14:38:21.978 [info] UploadPackV2: pack generated, 3546 bytes
14:38:21.978 [info] UploadPackV2: fetch response 3568 bytes
14:38:21.984 [info] UploadPackV2: processing fetch command
14:38:21.985 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.985 [info] UploadPackV2: collected 23 objects, generating pack
.
14:38:21.986 [info] UploadPackV2: pack generated, 1405 bytes
.
14:38:21.986 [info] UploadPackV2: fetch response 1427 bytes
.
14:38:21.989 [info] UploadPackV2: processing fetch command
.
14:38:21.989 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:21.990 [info] UploadPackV2: collected 40 objects, generating pack
.
14:38:21.991 [info] UploadPackV2: pack generated, 2373 bytes
.
14:38:21.991 [info] UploadPackV2: fetch response 2395 bytes
.
14:38:21.995 [info] UploadPackV2: processing fetch command
14:38:21.995 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.995 [info] UploadPackV2: collected 7 objects, generating pack
14:38:21.995 [info] UploadPackV2: pack generated, 475 bytes
14:38:21.995 [info] UploadPackV2: fetch response 497 bytes
14:38:21.997 [info] UploadPackV2: processing fetch command
14:38:21.997 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:21.997 [info] UploadPackV2: collected 19 objects, generating pack
14:38:21.998 [info] UploadPackV2: pack generated, 1196 bytes
14:38:21.998 [info] UploadPackV2: fetch response 1218 bytes
14:38:22.001 [info] UploadPackV2: processing fetch command
14:38:22.001 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:22.002 [info] UploadPackV2: collected 34 objects, generating pack
.
14:38:22.003 [info] UploadPackV2: pack generated, 2099 bytes
.
14:38:22.003 [info] UploadPackV2: fetch response 2121 bytes
..
14:38:22.006 [info] UploadPackV2: processing fetch command
.
14:38:22.006 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:22.006 [info] UploadPackV2: collected 4 objects, generating pack
.
14:38:22.006 [info] UploadPackV2: pack generated, 241 bytes
14:38:22.006 [info] UploadPackV2: fetch response 263 bytes
14:38:22.008 [info] UploadPackV2: processing fetch command
14:38:22.008 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.008 [info] UploadPackV2: collected 15 objects, generating pack
14:38:22.008 [info] UploadPackV2: pack generated, 958 bytes
14:38:22.008 [info] UploadPackV2: fetch response 980 bytes
14:38:22.011 [info] UploadPackV2: processing fetch command
14:38:22.012 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.012 [info] UploadPackV2: collected 12 objects, generating pack
.
14:38:22.012 [info] UploadPackV2: pack generated, 723 bytes
14:38:22.012 [info] UploadPackV2: fetch response 745 bytes
14:38:22.014 [info] UploadPackV2: processing fetch command
14:38:22.014 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.015 [info] UploadPackV2: collected 19 objects, generating pack
14:38:22.015 [info] UploadPackV2: pack generated, 1196 bytes
14:38:22.016 [info] UploadPackV2: fetch response 1218 bytes
14:38:22.018 [info] UploadPackV2: processing fetch command
14:38:22.018 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.019 [info] UploadPackV2: collected 16 objects, generating pack
14:38:22.019 [info] UploadPackV2: pack generated, 962 bytes
14:38:22.019 [info] UploadPackV2: fetch response 984 bytes
14:38:22.022 [info] UploadPackV2: processing fetch command
14:38:22.022 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.022 [info] UploadPackV2: collected 24 objects, generating pack
14:38:22.023 [info] UploadPackV2: pack generated, 1411 bytes
14:38:22.023 [info] UploadPackV2: fetch response 1433 bytes
14:38:22.026 [info] UploadPackV2: processing fetch command
14:38:22.027 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.028 [info] UploadPackV2: collected 42 objects, generating pack
14:38:22.028 [info] UploadPackV2: pack generated, 2581 bytes
14:38:22.028 [info] UploadPackV2: fetch response 2603 bytes
14:38:22.034 [info] UploadPackV2: processing fetch command
14:38:22.034 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.035 [info] UploadPackV2: collected 50 objects, generating pack
14:38:22.036 [info] UploadPackV2: pack generated, 3054 bytes
14:38:22.036 [info] UploadPackV2: fetch response 3076 bytes
14:38:22.041 [info] UploadPackV2: processing fetch command
14:38:22.041 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.041 [info] UploadPackV2: collected 15 objects, generating pack
14:38:22.041 [info] UploadPackV2: pack generated, 956 bytes
14:38:22.041 [info] UploadPackV2: fetch response 978 bytes
14:38:22.044 [info] UploadPackV2: processing fetch command
14:38:22.044 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.045 [info] UploadPackV2: collected 19 objects, generating pack
14:38:22.045 [info] UploadPackV2: pack generated, 1144 bytes
14:38:23.564 [notice] Handler :default switched from :drop to :sync mode
14:38:22.045 [info] UploadPackV2: fetch response 1166 bytes
14:38:22.047 [info] UploadPackV2: processing fetch command
14:38:22.047 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.048 [info] UploadPackV2: collected 16 objects, generating pack
14:38:22.048 [info] UploadPackV2: pack generated, 962 bytes
14:38:22.048 [info] UploadPackV2: fetch response 984 bytes
14:38:22.051 [info] UploadPackV2: processing fetch command
14:38:22.051 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.051 [info] UploadPackV2: collected 4 objects, generating pack
14:38:22.052 [info] UploadPackV2: pack generated, 241 bytes
14:38:22.052 [info] UploadPackV2: fetch response 263 bytes
14:38:22.054 [info] UploadPackV2: processing fetch command
14:38:22.054 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.055 [info] UploadPackV2: collected 39 objects, generating pack
14:38:22.055 [info] UploadPackV2: pack generated, 2335 bytes
14:38:22.055 [info] UploadPackV2: fetch response 2357 bytes
.
14:38:22.059 [info] UploadPackV2: processing fetch command
.
14:38:22.059 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:22.060 [info] UploadPackV2: collected 15 objects, generating pack
.
14:38:22.060 [info] UploadPackV2: pack generated, 907 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
.
14:38:22.060 [info] UploadPackV2: fetch response 929 bytes
.
14:38:22.063 [info] UploadPackV2: processing fetch command
.
14:38:22.063 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:22.064 [info] UploadPackV2: collected 19 objects, generating pack
.
14:38:22.064 [info] UploadPackV2: pack generated, 1167 bytes
.
14:38:22.064 [info] UploadPackV2: fetch response 1189 bytes
.
14:38:22.067 [info] UploadPackV2: processing fetch command
.
14:38:22.067 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:22.067 [info] UploadPackV2: collected 15 objects, generating pack
14:38:22.067 [info] UploadPackV2: pack generated, 958 bytes
14:38:22.068 [info] UploadPackV2: fetch response 980 bytes
14:38:22.072 [info] UploadPackV2: processing fetch command
14:38:22.072 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.073 [info] UploadPackV2: collected 18 objects, generating pack
14:38:22.073 [info] UploadPackV2: pack generated, 1281 bytes
14:38:22.073 [info] UploadPackV2: fetch response 1303 bytes
14:38:22.077 [info] UploadPackV2: processing fetch command
14:38:22.077 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.078 [info] UploadPackV2: collected 22 objects, generating pack
14:38:22.079 [info] UploadPackV2: pack generated, 1660 bytes
14:38:22.079 [info] UploadPackV2: fetch response 1682 bytes
14:38:22.083 [info] UploadPackV2: processing fetch command
14:38:22.083 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.083 [info] UploadPackV2: collected 8 objects, generating pack
14:38:22.083 [info] UploadPackV2: pack generated, 606 bytes
14:38:22.083 [info] UploadPackV2: fetch response 628 bytes
14:38:22.086 [info] UploadPackV2: processing fetch command
14:38:22.086 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.086 [info] UploadPackV2: collected 5 objects, generating pack
14:38:22.086 [info] UploadPackV2: pack generated, 424 bytes
14:38:22.086 [info] UploadPackV2: fetch response 446 bytes
14:38:22.088 [info] UploadPackV2: processing fetch command
14:38:22.088 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.088 [info] UploadPackV2: collected 8 objects, generating pack
14:38:22.088 [info] UploadPackV2: pack generated, 639 bytes
14:38:22.088 [info] UploadPackV2: fetch response 661 bytes
14:38:22.091 [info] UploadPackV2: processing fetch command
14:38:22.091 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.091 [info] UploadPackV2: collected 9 objects, generating pack
14:38:22.091 [info] UploadPackV2: pack generated, 610 bytes
14:38:22.091 [info] UploadPackV2: fetch response 632 bytes
14:38:22.094 [info] UploadPackV2: processing fetch command
14:38:22.094 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.095 [info] UploadPackV2: collected 29 objects, generating pack
14:38:22.096 [info] UploadPackV2: pack generated, 2099 bytes
14:38:22.096 [info] UploadPackV2: fetch response 2121 bytes
14:38:22.101 [info] UploadPackV2: processing fetch command
14:38:22.101 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.102 [info] UploadPackV2: collected 13 objects, generating pack
14:38:22.102 [info] UploadPackV2: pack generated, 1021 bytes
14:38:22.102 [info] UploadPackV2: fetch response 1043 bytes
14:38:22.106 [info] UploadPackV2: processing fetch command
14:38:22.106 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.106 [info] UploadPackV2: collected 9 objects, generating pack
14:38:22.107 [info] UploadPackV2: pack generated, 642 bytes
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
14:38:22.107 [info] UploadPackV2: fetch response 664 bytes
14:38:22.109 [info] UploadPackV2: processing fetch command
14:38:22.109 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.110 [info] UploadPackV2: collected 15 objects, generating pack
14:38:22.110 [info] UploadPackV2: pack generated, 1036 bytes
14:38:22.110 [info] UploadPackV2: fetch response 1058 bytes
.
14:38:22.113 [info] UploadPackV2: processing fetch command
14:38:22.113 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.114 [info] UploadPackV2: collected 14 objects, generating pack
14:38:22.114 [info] UploadPackV2: pack generated, 1062 bytes
14:38:22.114 [info] UploadPackV2: fetch response 1084 bytes
14:38:22.118 [info] UploadPackV2: processing fetch command
14:38:22.118 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.119 [info] UploadPackV2: collected 17 objects, generating pack
14:38:22.119 [info] UploadPackV2: pack generated, 1278 bytes
14:38:22.119 [info] UploadPackV2: fetch response 1300 bytes
14:38:22.123 [info] UploadPackV2: processing fetch command
14:38:22.123 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.124 [info] UploadPackV2: collected 26 objects, generating pack
14:38:22.125 [info] UploadPackV2: pack generated, 1886 bytes
14:38:22.125 [info] UploadPackV2: fetch response 1908 bytes
14:38:22.127 [info] UploadPackV2: processing fetch command
14:38:22.127 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.127 [info] UploadPackV2: collected 3 objects, generating pack
14:38:22.128 [info] UploadPackV2: pack generated, 195 bytes
14:38:22.128 [info] UploadPackV2: fetch response 217 bytes
14:38:22.135 [info] UploadPackV2: processing fetch command
14:38:22.136 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.137 [info] UploadPackV2: collected 9 objects, generating pack
14:38:22.137 [info] UploadPackV2: pack generated, 642 bytes
14:38:22.137 [info] UploadPackV2: fetch response 664 bytes
14:38:22.138 [info] UploadPackV2: processing fetch command
14:38:22.139 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.141 [info] UploadPackV2: processing fetch command
14:38:22.141 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.142 [info] UploadPackV2: collected 8 objects, generating pack
14:38:22.142 [info] UploadPackV2: pack generated, 595 bytes
14:38:22.142 [info] UploadPackV2: fetch response 617 bytes
14:38:22.144 [info] UploadPackV2: collected 90 objects, generating pack
14:38:22.146 [info] UploadPackV2: pack generated, 5946 bytes
14:38:22.146 [info] UploadPackV2: fetch response 5968 bytes
14:38:22.153 [info] UploadPackV2: processing fetch command
14:38:22.153 [info] UploadPackV2: processing fetch command
14:38:22.153 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.153 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:38:22.153 [info] UploadPackV2: collected 3 objects, streaming pack
.
14:38:22.154 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
.
14:38:22.154 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
14:38:22.154 [info] UploadPackV2: collected 17 objects, generating pack
14:38:22.155 [info] UploadPackV2: pack generated, 1278 bytes
14:38:22.155 [info] UploadPackV2: fetch response 1300 bytes
14:38:22.156 [info] UploadPackV2: processing fetch command
14:38:22.156 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.156 [info] UploadPackV2: collected 0 objects, generating pack
14:38:22.156 [info] UploadPackV2: pack generated, 32 bytes
14:38:22.156 [info] UploadPackV2: fetch response 54 bytes
14:38:22.160 [info] UploadPackV2: processing fetch command
14:38:22.160 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.161 [info] UploadPackV2: collected 3 objects, streaming pack
14:38:22.164 [info] UploadPackV2: streamed pack 71879 bytes, 3 objects
14:38:22.164 [info] UploadPackV2: fetch streamed 71879 pack bytes, 3 objects
14:38:22.169 [info] UploadPackV2: processing fetch command
14:38:22.169 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.172 [info] UploadPackV2: processing fetch command
14:38:22.172 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.172 [info] UploadPackV2: collected 32 objects, generating pack
14:38:22.173 [info] UploadPackV2: pack generated, 2313 bytes
14:38:22.173 [info] UploadPackV2: fetch response 2335 bytes
14:38:22.175 [info] UploadPackV2: collected 15 objects, generating pack
14:38:22.175 [info] UploadPackV2: pack generated, 984 bytes
14:38:22.176 [info] UploadPackV2: fetch response 1006 bytes
14:38:22.177 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
14:38:22.231 [info] UploadPackV2: processing fetch command
14:38:22.231 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.241 [info] UploadPackV2: collected 20 objects, generating pack
14:38:22.242 [info] UploadPackV2: pack generated, 1490 bytes
14:38:22.242 [info] UploadPackV2: fetch response 1512 bytes
14:38:22.280 [info] UploadPackV2: processing fetch command
14:38:22.280 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.281 [info] UploadPackV2: processing fetch command
14:38:22.281 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.283 [info] UploadPackV2: collected 18 objects, generating pack
14:38:22.283 [info] UploadPackV2: pack generated, 1281 bytes
14:38:22.283 [info] UploadPackV2: fetch response 1303 bytes
14:38:22.292 [info] UploadPackV2: processing fetch command
14:38:22.292 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.293 [info] UploadPackV2: collected 14 objects, generating pack
14:38:22.293 [info] UploadPackV2: pack generated, 1064 bytes
14:38:22.294 [info] UploadPackV2: fetch response 1086 bytes
14:38:22.299 [info] UploadPackV2: collected 32 objects, generating pack
14:38:22.331 [info] UploadPackV2: processing fetch command
14:38:22.333 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.342 [info] UploadPackV2: collected 12 objects, generating pack
14:38:22.343 [info] UploadPackV2: pack generated, 854 bytes
14:38:22.344 [info] UploadPackV2: fetch response 876 bytes
14:38:22.394 [info] UploadPackV2: processing fetch command
14:38:22.395 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.397 [info] UploadPackV2: pack generated, 2459811 bytes
14:38:22.401 [info] UploadPackV2: fetch response 2460018 bytes
14:38:22.402 [info] UploadPackV2: processing fetch command
14:38:22.402 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:22.402 [info] UploadPackV2: collected 31 objects, generating pack
14:38:22.403 [info] UploadPackV2: pack generated, 2299 bytes
14:38:22.403 [info] UploadPackV2: fetch response 2321 bytes
14:38:22.415 [info] UploadPackV2: processing fetch command
14:38:22.415 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.416 [info] UploadPackV2: collected 11 objects, generating pack
14:38:22.416 [info] UploadPackV2: pack generated, 851 bytes
14:38:22.416 [info] UploadPackV2: fetch response 873 bytes
14:38:22.421 [info] UploadPackV2: collected 32 objects, streaming pack
14:38:22.426 [info] UploadPackV2: processing fetch command
14:38:22.427 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.430 [info] UploadPackV2: collected 12 objects, generating pack
14:38:22.431 [info] UploadPackV2: pack generated, 854 bytes
14:38:22.432 [info] UploadPackV2: fetch response 876 bytes
14:38:22.446 [info] UploadPackV2: processing fetch command
14:38:22.447 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.449 [info] UploadPackV2: collected 3 objects, generating pack
14:38:22.449 [info] UploadPackV2: pack generated, 214 bytes
.
14:38:22.449 [info] UploadPackV2: fetch response 236 bytes
14:38:22.466 [info] UploadPackV2: processing fetch command
14:38:22.466 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:22.476 [info] UploadPackV2: collected 34 objects, generating pack
14:38:22.478 [info] UploadPackV2: pack generated, 2507 bytes
14:38:22.478 [info] UploadPackV2: fetch response 2529 bytes
.........................................................................
14:38:24.663 [info] UploadPackV2: processing fetch command
14:38:24.663 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:24.668 [info] UploadPackV2: reused pack 12236 bytes, 160 objects
14:38:24.668 [info] UploadPackV2: fetch response 12258 bytes
...................
14:38:25.202 [info] UploadPackV2: processing fetch command
14:38:25.202 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:25.207 [info] UploadPackV2: reused pack 12217 bytes, 160 objects
14:38:25.207 [info] UploadPackV2: fetch response 12239 bytes
...............****************
14:38:26.926 [info] UploadPackV2: processing ls-refs command
14:38:26.927 [info] UploadPackV2: processing fetch command
14:38:26.927 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:26.928 [info] UploadPackV2: collected 9 objects, generating pack
14:38:26.928 [info] UploadPackV2: pack generated, 547 bytes
14:38:26.928 [info] UploadPackV2: fetch response 569 bytes
14:38:26.994 [info] UploadPackV2: processing ls-refs command
.
14:38:27.058 [info] UploadPackV2: processing ls-refs command
14:38:27.059 [info] UploadPackV2: processing fetch command
14:38:27.059 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:27.062 [info] UploadPackV2: collected 90 objects, generating pack
14:38:27.063 [info] UploadPackV2: pack generated, 5649 bytes
14:38:27.063 [info] UploadPackV2: fetch response 5671 bytes
14:38:27.306 [info] UploadPackV2: processing ls-refs command
.
14:38:27.410 [info] UploadPackV2: processing ls-refs command
14:38:27.411 [info] UploadPackV2: processing fetch command
14:38:27.411 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:27.412 [info] UploadPackV2: collected 6 objects, generating pack
14:38:27.412 [info] UploadPackV2: pack generated, 365 bytes
14:38:27.412 [info] UploadPackV2: fetch response 387 bytes
14:38:29.342 [info] UploadPackV2: processing ls-refs command
.
14:38:29.398 [info] UploadPackV2: processing ls-refs command
14:38:29.399 [info] UploadPackV2: processing fetch command
14:38:29.399 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.400 [info] UploadPackV2: collected 6 objects, generating pack
14:38:29.400 [info] UploadPackV2: pack generated, 365 bytes
14:38:29.400 [info] UploadPackV2: fetch response 387 bytes
14:38:29.402 [info] UploadPackV2: processing ls-refs command
14:38:29.424 [info] UploadPackV2: processing fetch command
14:38:29.425 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.425 [info] UploadPackV2: collected 6 objects, generating pack
14:38:29.425 [info] UploadPackV2: pack generated, 365 bytes
14:38:29.425 [info] UploadPackV2: fetch response 387 bytes
.
14:38:29.494 [info] UploadPackV2: processing ls-refs command
14:38:29.495 [info] UploadPackV2: processing fetch command
14:38:29.495 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.496 [info] UploadPackV2: collected 6 objects, generating pack
14:38:29.496 [info] UploadPackV2: pack generated, 366 bytes
14:38:29.496 [info] UploadPackV2: fetch response 388 bytes
14:38:29.554 [info] UploadPackV2: processing ls-refs command
14:38:29.555 [info] UploadPackV2: processing fetch command
14:38:29.555 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
14:38:29.555 [info] UploadPackV2: fetch response 32 bytes
14:38:29.555 [info] UploadPackV2: processing fetch command
14:38:29.555 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.555 [info] UploadPackV2: collected 3 objects, generating pack
14:38:29.555 [info] UploadPackV2: pack generated, 183 bytes
14:38:29.555 [info] UploadPackV2: fetch response 205 bytes
.
14:38:29.561 [info] UploadPackV2: processing fetch command
14:38:29.562 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.562 [info] UploadPackV2: collected 3 objects, generating pack
14:38:29.562 [info] UploadPackV2: pack generated, 183 bytes
.
14:38:29.562 [info] UploadPackV2: fetch response 205 bytes
14:38:29.614 [info] UploadPackV2: processing ls-refs command
14:38:29.615 [info] UploadPackV2: processing fetch command
14:38:29.615 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.616 [info] UploadPackV2: collected 6 objects, generating pack
14:38:29.616 [info] UploadPackV2: pack generated, 365 bytes
14:38:29.616 [info] UploadPackV2: fetch response 387 bytes
14:38:29.631 [info] UploadPackV2: processing fetch command
14:38:29.631 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:38:29.632 [info] UploadPackV2: fetch response 122 bytes
.
14:38:29.694 [info] UploadPackV2: processing ls-refs command
14:38:29.695 [info] UploadPackV2: processing fetch command
14:38:29.695 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:29.695 [info] UploadPackV2: collected 3 objects, generating pack
14:38:29.695 [info] UploadPackV2: pack generated, 216 bytes
14:38:29.695 [info] UploadPackV2: fetch response 346 bytes
.
14:38:29.770 [info] UploadPackV2: processing ls-refs command
14:38:29.771 [info] UploadPackV2: processing fetch command
14:38:29.771 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:29.772 [info] UploadPackV2: collected 6 objects, generating pack
14:38:29.772 [info] UploadPackV2: pack generated, 365 bytes
14:38:29.772 [info] UploadPackV2: fetch response 387 bytes
..
14:38:44.838 [info] UploadPackV2: processing ls-refs command
.
14:38:44.890 [info] UploadPackV2: processing ls-refs command
.
14:38:44.946 [info] UploadPackV2: processing ls-refs command
14:38:44.949 [info] UploadPackV2: processing fetch command
14:38:44.949 [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
14:38:44.950 [info] UploadPackV2: collected 6 objects, generating pack
14:38:44.950 [info] UploadPackV2: pack generated, 513 bytes
14:38:44.950 [info] UploadPackV2: fetch response 535 bytes
.
14:38:45.022 [info] UploadPackV2: processing ls-refs command
14:38:45.025 [info] UploadPackV2: processing fetch command
14:38:45.025 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
14:38:45.026 [info] UploadPackV2: collected 5 objects, generating pack
14:38:45.027 [info] UploadPackV2: pack generated, 319 bytes
14:38:45.027 [info] UploadPackV2: fetch response 341 bytes
.
14:38:45.094 [info] UploadPackV2: processing ls-refs command
14:38:45.095 [info] UploadPackV2: processing fetch command
14:38:45.096 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:45.096 [info] UploadPackV2: collected 3 objects, generating pack
14:38:45.096 [info] UploadPackV2: pack generated, 218 bytes
14:38:45.096 [info] UploadPackV2: fetch response 314 bytes
.
14:38:45.166 [info] UploadPackV2: processing ls-refs command
14:38:45.167 [info] UploadPackV2: processing fetch command
14:38:45.168 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:45.168 [info] UploadPackV2: collected 9 objects, generating pack
14:38:45.169 [info] UploadPackV2: pack generated, 549 bytes
14:38:45.169 [info] UploadPackV2: fetch response 571 bytes
14:38:45.185 [info] UploadPackV2: processing fetch command
14:38:45.185 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
14:38:45.186 [info] UploadPackV2: fetch response 171 bytes
.
14:38:45.238 [info] UploadPackV2: processing ls-refs command
14:38:45.241 [info] UploadPackV2: processing fetch command
14:38:45.241 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
14:38:45.242 [info] UploadPackV2: collected 3 objects, generating pack
14:38:45.243 [info] UploadPackV2: pack generated, 381 bytes
14:38:45.243 [info] UploadPackV2: fetch response 403 bytes
.
14:38:45.310 [info] UploadPackV2: processing ls-refs command
14:38:45.313 [info] UploadPackV2: processing fetch command
14:38:45.313 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
14:38:45.314 [info] UploadPackV2: collected 3 objects, generating pack
14:38:45.315 [info] UploadPackV2: pack generated, 381 bytes
14:38:45.315 [info] UploadPackV2: fetch response 403 bytes
.
14:38:45.390 [info] UploadPackV2: processing ls-refs command
14:38:45.392 [info] UploadPackV2: processing fetch command
14:38:45.392 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:45.393 [info] UploadPackV2: collected 9 objects, generating pack
14:38:45.393 [info] UploadPackV2: pack generated, 585 bytes
14:38:45.393 [info] UploadPackV2: fetch response 681 bytes
.
14:38:45.458 [info] UploadPackV2: processing ls-refs command
.
14:38:45.514 [info] UploadPackV2: processing ls-refs command
14:38:45.516 [info] UploadPackV2: processing fetch command
14:38:45.516 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:45.516 [info] UploadPackV2: collected 3 objects, generating pack
14:38:45.517 [info] UploadPackV2: pack generated, 216 bytes
14:38:45.517 [info] UploadPackV2: fetch response 312 bytes
14:38:45.578 [info] UploadPackV2: processing ls-refs command
14:38:45.579 [info] UploadPackV2: processing fetch command
14:38:45.579 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:45.580 [info] UploadPackV2: collected 12 objects, generating pack
14:38:45.580 [info] UploadPackV2: pack generated, 768 bytes
14:38:45.580 [info] UploadPackV2: fetch response 1002 bytes
..
14:38:45.642 [info] UploadPackV2: processing ls-refs command
14:38:45.643 [info] UploadPackV2: processing fetch command
14:38:45.644 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:45.644 [info] UploadPackV2: collected 3 objects, generating pack
14:38:45.645 [info] UploadPackV2: pack generated, 216 bytes
14:38:45.645 [info] UploadPackV2: fetch response 312 bytes
..
14:38:45.714 [info] UploadPackV2: processing ls-refs command
.
14:38:45.766 [info] UploadPackV2: processing ls-refs command
14:38:45.769 [info] UploadPackV2: processing fetch command
14:38:45.769 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:38:45.770 [info] UploadPackV2: collected 6 objects, generating pack
14:38:45.771 [info] UploadPackV2: pack generated, 513 bytes
14:38:45.771 [info] UploadPackV2: fetch response 535 bytes
.....
14:38:45.795 [info] The function passed as a handler with ID "graph-query-test-17506" 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
..
14:38:45.803 [info] The function passed as a handler with ID "graph-query-test-17602" 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
......
14:38:45.812 [info] The function passed as a handler with ID "graph-query-test-10180" is a local function.
This means that it is either an anonymous function or a capture of a function without a module specified. That may cause a performance penalty when calling that handler. For more details see the note in `telemetry:attach/4` documentation.
https://hexdocs.pm/telemetry/telemetry.html#attach/4
.....
14:38:47.150 [info] UploadPackV2: processing ls-refs command
14:38:47.151 [info] UploadPackV2: processing fetch command
14:38:47.151 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:38:47.151 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.152 [info] UploadPackV2: pack generated, 231 bytes
14:38:47.152 [info] UploadPackV2: fetch response 327 bytes
.
14:38:47.218 [info] UploadPackV2: processing ls-refs command
.
14:38:47.226 [info] UploadPackV2: processing fetch command
14:38:47.226 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.226 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.226 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.226 [info] UploadPackV2: fetch response 205 bytes
14:38:47.226 [info] UploadPackV2: processing fetch command
14:38:47.226 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.227 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.227 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.227 [info] UploadPackV2: fetch response 205 bytes
14:38:47.227 [info] UploadPackV2: processing fetch command
14:38:47.227 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.227 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.228 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.228 [info] UploadPackV2: fetch response 205 bytes
14:38:47.228 [info] UploadPackV2: processing fetch command
14:38:47.228 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.228 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.228 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.228 [info] UploadPackV2: fetch response 205 bytes
14:38:47.228 [info] UploadPackV2: processing fetch command
14:38:47.228 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.229 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.229 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.229 [info] UploadPackV2: fetch response 205 bytes
14:38:47.229 [info] UploadPackV2: processing fetch command
14:38:47.229 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.229 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.229 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.229 [info] UploadPackV2: fetch response 205 bytes
14:38:47.229 [info] UploadPackV2: processing fetch command
14:38:47.229 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.229 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.230 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.230 [info] UploadPackV2: fetch response 205 bytes
14:38:47.230 [info] UploadPackV2: processing fetch command
14:38:47.230 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.230 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.230 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.230 [info] UploadPackV2: fetch response 205 bytes
14:38:47.230 [info] UploadPackV2: processing fetch command
14:38:47.230 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.231 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.231 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.231 [info] UploadPackV2: fetch response 205 bytes
14:38:47.231 [info] UploadPackV2: processing fetch command
14:38:47.231 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.231 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.231 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.231 [info] UploadPackV2: fetch response 205 bytes
14:38:47.232 [info] UploadPackV2: processing fetch command
14:38:47.232 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.232 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.232 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.232 [info] UploadPackV2: fetch response 205 bytes
14:38:47.232 [info] UploadPackV2: processing fetch command
14:38:47.232 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.232 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.233 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.233 [info] UploadPackV2: fetch response 205 bytes
14:38:47.233 [info] UploadPackV2: processing fetch command
14:38:47.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.233 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.233 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.233 [info] UploadPackV2: fetch response 205 bytes
14:38:47.233 [info] UploadPackV2: processing fetch command
14:38:47.233 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.234 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.234 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.234 [info] UploadPackV2: fetch response 205 bytes
14:38:47.234 [info] UploadPackV2: processing fetch command
14:38:47.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.234 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.234 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.234 [info] UploadPackV2: fetch response 205 bytes
14:38:47.234 [info] UploadPackV2: processing fetch command
14:38:47.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.235 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.235 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.235 [info] UploadPackV2: fetch response 205 bytes
14:38:47.235 [info] UploadPackV2: processing fetch command
14:38:47.235 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.235 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.235 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.235 [info] UploadPackV2: fetch response 205 bytes
14:38:47.235 [info] UploadPackV2: processing fetch command
14:38:47.235 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.235 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.236 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.236 [info] UploadPackV2: fetch response 205 bytes
14:38:47.236 [info] UploadPackV2: processing fetch command
14:38:47.236 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.236 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.236 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.236 [info] UploadPackV2: fetch response 205 bytes
14:38:47.236 [info] UploadPackV2: processing fetch command
14:38:47.236 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.237 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.237 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.237 [info] UploadPackV2: fetch response 205 bytes
14:38:47.237 [info] UploadPackV2: processing fetch command
14:38:47.237 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.237 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.237 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.237 [info] UploadPackV2: fetch response 205 bytes
.
14:38:47.298 [info] UploadPackV2: processing ls-refs command
14:38:47.299 [info] UploadPackV2: processing fetch command
14:38:47.299 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.305 [info] UploadPackV2: collected 240 objects, generating pack
14:38:47.309 [info] UploadPackV2: pack generated, 16258 bytes
14:38:47.309 [info] UploadPackV2: fetch response 16280 bytes
.
14:38:47.330 [info] UploadPackV2: processing fetch command
14:38:47.330 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.331 [info] UploadPackV2: collected 0 objects, generating pack
14:38:47.331 [info] UploadPackV2: pack generated, 32 bytes
14:38:47.331 [info] UploadPackV2: fetch response 54 bytes
.
14:38:47.578 [info] UploadPackV2: processing ls-refs command
.
14:38:47.666 [info] UploadPackV2: processing ls-refs command
14:38:47.667 [info] UploadPackV2: processing fetch command
14:38:47.667 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.689 [info] UploadPackV2: collected 600 objects, generating pack
14:38:47.706 [info] UploadPackV2: pack generated, 45197 bytes
14:38:47.707 [info] UploadPackV2: fetch response 45219 bytes
.
14:38:47.736 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--576460752303403071" 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
14:38:47.736 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303403039" 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
.
14:38:47.737 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303411934" 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
14:38:47.737 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303403007" 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
.
14:38:47.738 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303411902" 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
14:38:47.738 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303411870" 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
.
14:38:47.739 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303411838" 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
14:38:47.739 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303411806" 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
.............................
14:38:47.784 [info] UploadPackV2: processing ls-refs command
14:38:47.787 [info] UploadPackV2: processing fetch command
14:38:47.787 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.788 [info] UploadPackV2: collected 6 objects, generating pack
14:38:47.788 [info] UploadPackV2: pack generated, 366 bytes
14:38:47.788 [info] UploadPackV2: fetch response 388 bytes
14:38:47.814 [info] UploadPackV2: processing ls-refs command
.
14:38:47.836 [info] UploadPackV2: processing ls-refs command
14:38:47.839 [info] UploadPackV2: processing fetch command
14:38:47.839 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.839 [info] UploadPackV2: collected 9 objects, generating pack
14:38:47.840 [info] UploadPackV2: pack generated, 549 bytes
14:38:47.840 [info] UploadPackV2: fetch response 571 bytes
14:38:47.865 [info] UploadPackV2: processing ls-refs command
.
14:38:47.894 [info] UploadPackV2: processing ls-refs command
14:38:47.897 [info] UploadPackV2: processing fetch command
14:38:47.897 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.901 [info] UploadPackV2: collected 180 objects, generating pack
14:38:47.903 [info] UploadPackV2: pack generated, 11106 bytes
14:38:47.903 [info] UploadPackV2: fetch response 11128 bytes
.
14:38:47.938 [info] UploadPackV2: processing ls-refs command
14:38:47.940 [info] UploadPackV2: processing fetch command
14:38:47.940 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:47.941 [info] UploadPackV2: collected 3 objects, generating pack
14:38:47.941 [info] UploadPackV2: pack generated, 183 bytes
14:38:47.941 [info] UploadPackV2: fetch response 205 bytes
.
14:38:48.028 [info] UploadPackV2: processing fetch command
14:38:48.028 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:48.028 [info] UploadPackV2: collected 3 objects, generating pack
14:38:48.029 [info] UploadPackV2: pack generated, 183 bytes
14:38:48.029 [info] UploadPackV2: fetch response 205 bytes
..
14:38:48.086 [info] UploadPackV2: processing ls-refs command
14:38:48.088 [info] UploadPackV2: processing fetch command
14:38:48.089 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:48.089 [info] UploadPackV2: collected 15 objects, generating pack
14:38:48.089 [info] UploadPackV2: pack generated, 919 bytes
14:38:48.089 [info] UploadPackV2: fetch response 941 bytes
.
14:38:48.158 [info] UploadPackV2: processing ls-refs command
14:38:48.159 [info] UploadPackV2: processing fetch command
14:38:48.159 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:38:48.160 [info] UploadPackV2: collected 6 objects, generating pack
14:38:48.160 [info] UploadPackV2: pack generated, 365 bytes
14:38:48.160 [info] UploadPackV2: fetch response 387 bytes
.
14:39:03.290 [info] UploadPackV2: processing ls-refs command
14:39:03.292 [info] UploadPackV2: processing fetch command
14:39:03.292 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:39:03.293 [info] UploadPackV2: collected 3 objects, generating pack
14:39:03.293 [info] UploadPackV2: pack generated, 183 bytes
14:39:03.293 [info] UploadPackV2: fetch response 205 bytes
..
14:39:18.486 [info] UploadPackV2: processing ls-refs command
14:39:18.487 [info] UploadPackV2: processing fetch command
14:39:18.488 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:39:18.488 [info] UploadPackV2: collected 3 objects, generating pack
14:39:18.488 [info] UploadPackV2: pack generated, 201 bytes
14:39:18.489 [info] UploadPackV2: fetch response 223 bytes
....
14:40:18.866 [info] UploadPackV2: processing ls-refs command
14:40:18.867 [info] UploadPackV2: processing fetch command
14:40:18.867 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:40:18.868 [info] UploadPackV2: collected 6 objects, generating pack
14:40:18.868 [info] UploadPackV2: pack generated, 365 bytes
14:40:18.868 [info] UploadPackV2: fetch response 387 bytes
..
14:40:34.026 [info] UploadPackV2: processing ls-refs command
14:40:34.028 [info] UploadPackV2: processing fetch command
14:40:34.028 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:40:34.028 [info] UploadPackV2: collected 3 objects, generating pack
14:40:34.028 [info] UploadPackV2: pack generated, 183 bytes
14:40:34.028 [info] UploadPackV2: fetch response 205 bytes
..
14:41:04.246 [info] UploadPackV2: processing ls-refs command
14:41:04.247 [info] UploadPackV2: processing fetch command
14:41:04.247 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
14:41:04.247 [info] UploadPackV2: collected 3 objects, generating pack
14:41:04.248 [info] UploadPackV2: pack generated, 200 bytes
14:41:04.248 [info] UploadPackV2: fetch response 256 bytes
.
14:41:04.310 [info] UploadPackV2: processing ls-refs command
14:41:04.312 [info] UploadPackV2: processing fetch command
14:41:04.312 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:41:04.312 [info] UploadPackV2: collected 3 objects, generating pack
14:41:04.313 [info] UploadPackV2: pack generated, 185 bytes
14:41:04.313 [info] UploadPackV2: fetch response 207 bytes
14:41:04.374 [info] UploadPackV2: processing ls-refs command
.
14:41:04.430 [info] UploadPackV2: processing ls-refs command
14:41:04.432 [info] UploadPackV2: processing fetch command
14:41:04.432 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:41:04.432 [info] UploadPackV2: collected 3 objects, generating pack
14:41:04.433 [info] UploadPackV2: pack generated, 196 bytes
14:41:04.433 [info] UploadPackV2: fetch response 218 bytes
.
14:41:04.502 [info] UploadPackV2: processing ls-refs command
14:41:04.504 [info] UploadPackV2: processing fetch command
14:41:04.504 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:41:04.505 [info] UploadPackV2: collected 15 objects, generating pack
14:41:04.506 [info] UploadPackV2: pack generated, 952 bytes
14:41:04.506 [info] UploadPackV2: fetch response 974 bytes
.
14:41:04.524 [info] The function passed as a handler with ID "telemetry-test-20514" 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
14:41:04.525 [info] UploadPackV2: processing fetch command
14:41:04.525 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
14:41:04.530 [info] UploadPackV2: collected 2 objects, generating pack
.
14:41:04.530 [info] UploadPackV2: pack generated, 169 bytes
14:41:04.530 [info] UploadPackV2: fetch response 191 bytes
14:41:04.534 [info] The function passed as a handler with ID "telemetry-test-20546" 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
.
14:41:19.601 [info] The function passed as a handler with ID "telemetry-test-20578" 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
14:41:19.601 [info] UploadPackV2: processing fetch command
14:41:19.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
14:41:19.602 [info] UploadPackV2: collected 3 objects, generating pack
14:41:19.602 [info] UploadPackV2: pack generated, 186 bytes
14:41:19.602 [info] UploadPackV2: fetch response 208 bytes
14:41:19.602 [info] The function passed as a handler with ID "telemetry-test-20610" 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
14:41:19.603 [info] UploadPackV2: processing fetch command
14:41:19.603 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
.
14:41:19.604 [info] UploadPackV2: collected 3 objects, generating pack
14:41:19.604 [info] UploadPackV2: pack generated, 183 bytes
14:41:19.604 [info] UploadPackV2: fetch response 205 bytes
14:41:19.658 [info] UploadPackV2: processing ls-refs command
14:41:19.660 [info] UploadPackV2: processing fetch command
14:41:19.660 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:41:19.660 [info] UploadPackV2: collected 3 objects, generating pack
14:41:19.660 [info] UploadPackV2: pack generated, 185 bytes
14:41:19.660 [info] UploadPackV2: fetch response 207 bytes
.
14:41:19.726 [info] UploadPackV2: processing ls-refs command
14:41:19.728 [info] UploadPackV2: processing fetch command
14:41:19.728 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
14:41:19.728 [info] UploadPackV2: collected 3 objects, generating pack
14:41:19.728 [info] UploadPackV2: pack generated, 196 bytes
14:41:19.728 [info] UploadPackV2: fetch response 218 bytes
..
Finished in 199.9 seconds (12.0s async, 187.9s sync)
Result: 989 passed (2 properties, 987 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...