fangorn/ex_git_objectstore
public
ref:main
test passed
Command:
set -e
git config --global --add safe.directory /workspace
git config --global init.defaultBranch main
git config --global user.email "ci@anvil.test"
git config --global user.name "CI"
export MIX_HOME=/workspace/.mix
mix test --cover --export-coverage default
mix run --no-start -e '
tools_ebin = Path.wildcard("/usr/local/lib/erlang/lib/tools-*/ebin") |> List.first()
if tools_ebin, do: Code.append_path(tools_ebin)
:cover.start()
:cover.import(~c"cover/default.coverdata")
modules = :cover.imported_modules()
lcov = Enum.map_join(modules, "", fn mod ->
case :cover.analyse(mod, :calls, :line) do
{:ok, lines} ->
source = try do
mod.module_info(:compile)[:source] |> to_string()
|> String.replace(File.cwd!() <> "/", "")
rescue _ -> nil end
if source do
data = Enum.filter(lines, fn {{_, l}, _} -> l > 0 end)
da = Enum.map_join(data, "", fn {{_, l}, c} -> "DA:#{l},#{c}\n" end)
h = Enum.count(data, fn {_, c} -> c > 0 end)
"SF:#{source}\n#{da}LH:#{h}\nLF:#{length(data)}\nend_of_record\n"
else "" end
_ -> ""
end
end)
File.write!("cover/lcov.info", lcov)
IO.puts("LCOV written to cover/lcov.info")
'
Runner:
DESKTOP-12GQBKK
paused
linux/x86_64
Started: Jul 31, 2026 at 06:38 UTC
Completed: Jul 31, 2026 at 06:41 UTC
Duration: 3m 49s
Exit code:
0
Build Output
Using cached prepared image: anvil-prepared:cfa6aaa93a51
Cover compiling modules ...
Running ExUnit with seed: 318897, max_cases: 40
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: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
35 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = pack_data
│ ~
│
└─ test/ex_git_objectstore/pack/writer_test.exs:35:27: ExGitObjectstore.Pack.WriterTest."test generate generates valid packfile with a single blob"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
60 │ test "peel exposes annotated tag targets", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_capabilities_test.exs:60:59: ExGitObjectstore.Integration.UploadPackV2CapabilitiesTest."test ls-refs peel exposes annotated tag targets"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
99 │ <<body::binary-size(body_len), checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:99:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting generated index has valid checksum"/1
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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 "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
115 │ <<body::binary-size(body_len), _checksum::binary-size(20)>> = idx_data
│ ~
│
└─ test/ex_git_objectstore/pack/index_test.exs:115:27: ExGitObjectstore.Pack.IndexTest."test spec compliance - checksum and sorting rejects index with corrupted checksum"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
848 │ <<payload::binary-size(payload_len), after_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/integration/protocol_interop_test.exs:848:28: ExGitObjectstore.Integration.ProtocolInteropTest.extract_pkt_payload/3
Excluding tags: [:s3]
warning: variable "advert" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
693 │ {advert, state} = UploadPackV2.init(repo)
│ ~~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:693:8: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: variable "state" is unused (there is a variable with the same name in the context, use the pin operator (^) to match on it or prefix this variable with underscore if it is not meant to be used)
│
704 │ {ls_refs_response, state} = UploadPackV2.feed(state, ls_refs_data)
│ ~~~~~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:704:26: ExGitObjectstore.Protocol.UploadPackV2Test."test real git client validation response can be cloned by real git"/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1131 │ <<payload::binary-size(payload_len), remaining::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1131:34: ExGitObjectstore.Protocol.UploadPackV2Test.find_packfile_loop/1
warning: the variable "payload_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
1161 │ <<payload::binary-size(payload_len), rest_pkt::binary>> = rest
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_v2_test.exs:1161:34: ExGitObjectstore.Protocol.UploadPackV2Test.extract_sideband_loop/2
warning: the variable "n" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
218 │ <<head::binary-size(n), rest::binary>> = bin
│ ~
│
└─ test/ex_git_objectstore/protocol/receive_pack_streaming_test.exs:218:25: ExGitObjectstore.Protocol.ReceivePackStreamingTest.chunkify/2
warning: the variable "len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
222 │ <<payload::binary-size(len), rest::binary>> = tail
│ ~
│
└─ test/ex_git_objectstore/protocol/upload_pack_reuse_test.exs:222:28: ExGitObjectstore.Protocol.UploadPackReuseTest.pktlines/3
warning: default values for the optional arguments in the private function http_post/4 are never used
│
310 │ defp http_post(url, content_type, body, extra_headers \\ []) do
│ ~
│
└─ test/ex_git_objectstore/integration/smart_http_test.exs:310:8: ExGitObjectstore.Integration.SmartHttpTest (module)
warning: the variable "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
......................................................................................................................................................................................................................................................................................................................
06:38:12.890 [warning] post_receive hook failed: "webhook failed"
.........................
06:38:12.982 [info] UploadPackV2: processing fetch command
06:38:12.982 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:12.982 [info] UploadPackV2: collected 3 objects, generating pack
.
06:38:12.982 [info] UploadPackV2: pack generated, 195 bytes
06:38:12.982 [info] UploadPackV2: fetch response 217 bytes
06:38:12.982 [info] UploadPackV2: processing fetch command
06:38:12.982 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:12.983 [info] UploadPackV2: collected 3 objects, generating pack
..
06:38:12.983 [info] UploadPackV2: pack generated, 191 bytes
.
06:38:12.983 [info] UploadPackV2: fetch response 213 bytes
06:38:12.984 [info] UploadPackV2: processing ls-refs command
warning: the variable "body_len" is accessed inside size(...) of a bitstring but it was defined outside of the match. You must precede it with the pin operator
│
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: 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)
....................................................................................................
06:38:13.039 [info] UploadPackV2: processing fetch command
06:38:13.039 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
..
06:38:13.048 [info] UploadPackV2: collected 32 objects, generating pack
........................
06:38:13.054 [info] The function passed as a handler with ID "test-#Reference<0.1152960540.4200071176.82148>" 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
.
06:38:13.100 [info] The function passed as a handler with ID "test-fail-#Reference<0.1152960540.4200071176.82734>" 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
........
06:38:13.102 [info] UploadPackV2: pack generated, 2459812 bytes
.
06:38:13.109 [info] UploadPackV2: fetch response 2460019 bytes
06:38:13.109 [info] UploadPackV2: processing fetch command
06:38:13.110 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
...
06:38:13.116 [info] UploadPackV2: collected 32 objects, streaming pack
.................
06:38:13.139 [info] UploadPackV2: processing fetch command
06:38:13.139 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.140 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.140 [info] UploadPackV2: pack generated, 1647 bytes
06:38:13.140 [info] UploadPackV2: fetch response 1669 bytes
.....................................................................................
06:38:13.181 [info] UploadPackV2: streamed pack 2459812 bytes, 32 objects
06:38:13.181 [info] UploadPackV2: fetch streamed 2459812 pack bytes, 32 objects
.
06:38:13.184 [info] UploadPackV2: processing fetch command
06:38:13.184 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.184 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.184 [info] UploadPackV2: pack generated, 194 bytes
06:38:13.184 [info] UploadPackV2: fetch response 216 bytes
..
06:38:13.186 [info] UploadPackV2: processing fetch command
06:38:13.187 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.187 [info] UploadPackV2: collected 3 objects, streaming pack
06:38:13.190 [info] UploadPackV2: streamed pack 71878 bytes, 3 objects
06:38:13.190 [info] UploadPackV2: fetch streamed 71878 pack bytes, 3 objects
.
06:38:13.192 [info] UploadPackV2: processing fetch command
06:38:13.192 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.192 [info] UploadPackV2: collected 3 objects, streaming pack
06:38:13.192 [info] UploadPackV2: streamed pack 199 bytes, 3 objects
06:38:13.192 [info] UploadPackV2: fetch streamed 199 pack bytes, 3 objects
.
06:38:13.193 [info] UploadPackV2: processing ls-refs command
.
06:38:13.193 [info] UploadPackV2: processing ls-refs command
06:38:13.193 [info] UploadPackV2: processing fetch command
.
06:38:13.193 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.194 [info] UploadPackV2: collected 3 objects, generating pack
.
06:38:13.194 [info] UploadPackV2: pack generated, 195 bytes
.
06:38:13.194 [info] UploadPackV2: fetch response 217 bytes
.
06:38:13.194 [error] UploadPackV2: parse_command failed: {:unknown_command, "invalid"}
06:38:13.195 [info] UploadPackV2: processing fetch command
06:38:13.195 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.195 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.195 [info] UploadPackV2: pack generated, 223 bytes
06:38:13.195 [info] UploadPackV2: fetch response 245 bytes
06:38:13.196 [info] UploadPackV2: processing fetch command
06:38:13.196 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
06:38:13.196 [info] UploadPackV2: fetch response 73 bytes
06:38:13.196 [info] UploadPackV2: processing fetch command
06:38:13.196 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
warning: variable "parent" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
497 │ {_tip, parent} =
│ ~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_negotiation_test.exs:497:12: ExGitObjectstore.Integration.UploadPackV2NegotiationTest.fresh_repo/2
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
113 │ test "repo with 250 refs returns them all via ls-refs", %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:113:72: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale repo with 250 refs returns them all via ls-refs"/1
warning: variable "tmp_dir" is unused (if the variable is not meant to be used, prefix it with an underscore)
│
152 │ %{tmp_dir: tmp_dir} do
│ ~~~~~~~
│
└─ test/ex_git_objectstore/integration/upload_pack_v2_dataplane_test.exs:152:21: ExGitObjectstore.Integration.UploadPackV2DataplaneTest."test scale ref-prefix filter applies server-side (doesn't return all refs)"/1
warning: the variable "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 "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
06:38:13.196 [info] UploadPackV2: fetch streamed 0 pack bytes, 0 objects
06:38:13.197 [info] UploadPackV2: processing fetch command
06:38:13.198 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.199 [info] UploadPackV2: collected 15 objects, generating pack
06:38:13.199 [info] UploadPackV2: pack generated, 984 bytes
06:38:13.199 [info] UploadPackV2: fetch response 1006 bytes
.
06:38:13.200 [error] UploadPackV2: parse_command failed: {:invalid_pkt_hex, "garb"}
.
06:38:13.200 [info] UploadPackV2: processing fetch command
06:38:13.200 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.200 [info] UploadPackV2: collected 0 objects, generating pack
.
06:38:13.200 [info] UploadPackV2: pack generated, 32 bytes
06:38:13.200 [info] UploadPackV2: fetch response 54 bytes
06:38:13.201 [info] UploadPackV2: processing fetch command
06:38:13.201 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.201 [info] UploadPackV2: collected 9 objects, streaming pack
06:38:13.202 [info] UploadPackV2: streamed pack 627 bytes, 9 objects
.
06:38:13.202 [info] UploadPackV2: fetch streamed 627 pack bytes, 9 objects
............................................
06:38:13.224 [info] UploadPackV2: processing fetch command
06:38:13.224 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.224 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.224 [info] UploadPackV2: pack generated, 639 bytes
06:38:13.224 [info] UploadPackV2: fetch response 661 bytes
.
06:38:13.227 [info] UploadPackV2: processing fetch command
.
06:38:13.227 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.228 [info] UploadPackV2: collected 18 objects, generating pack
06:38:13.228 [info] UploadPackV2: pack generated, 1250 bytes
06:38:13.228 [info] UploadPackV2: fetch response 1272 bytes
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
06:38:13.232 [info] UploadPackV2: processing fetch command
06:38:13.232 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:38:13.233 [info] UploadPackV2: collected 18 objects, generating pack
.
06:38:13.233 [info] UploadPackV2: pack generated, 1249 bytes
06:38:13.233 [info] UploadPackV2: fetch response 1271 bytes
....
06:38:13.240 [info] UploadPackV2: processing fetch command
.
06:38:13.240 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
......
06:38:13.242 [info] UploadPackV2: collected 33 objects, generating pack
.
06:38:13.242 [info] UploadPackV2: pack generated, 2317 bytes
.
06:38:13.242 [info] UploadPackV2: fetch response 2339 bytes
...
06:38:13.248 [info] UploadPackV2: processing fetch command
06:38:13.248 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.249 [info] UploadPackV2: collected 18 objects, generating pack
.
06:38:13.249 [info] UploadPackV2: pack generated, 1281 bytes
06:38:13.249 [info] UploadPackV2: fetch response 1303 bytes
..
06:38:13.255 [info] UploadPackV2: processing fetch command
06:38:13.255 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.255 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.255 [info] UploadPackV2: pack generated, 214 bytes
06:38:13.255 [info] UploadPackV2: fetch response 236 bytes
06:38:13.256 [info] UploadPackV2: processing fetch command
06:38:13.256 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.258 [info] UploadPackV2: processing fetch command
06:38:13.258 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.258 [info] UploadPackV2: collected 20 objects, generating pack
06:38:13.259 [info] UploadPackV2: pack generated, 1490 bytes
06:38:13.259 [info] UploadPackV2: fetch response 1512 bytes
.
06:38:13.263 [info] UploadPackV2: processing fetch command
06:38:13.264 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.264 [info] UploadPackV2: collected 32 objects, streaming pack
06:38:13.265 [info] UploadPackV2: collected 22 objects, generating pack
06:38:13.265 [info] UploadPackV2: pack generated, 1659 bytes
06:38:13.265 [info] UploadPackV2: fetch response 1681 bytes
...
06:38:13.275 [info] UploadPackV2: processing fetch command
06:38:13.275 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.276 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.276 [info] UploadPackV2: pack generated, 1671 bytes
06:38:13.277 [info] UploadPackV2: fetch response 1693 bytes
06:38:13.282 [info] UploadPackV2: processing fetch command
06:38:13.282 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.283 [info] UploadPackV2: collected 12 objects, generating pack
06:38:13.283 [info] UploadPackV2: pack generated, 854 bytes
06:38:13.283 [info] UploadPackV2: fetch response 876 bytes
06:38:13.286 [info] UploadPackV2: processing fetch command
.
06:38:13.287 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.287 [info] UploadPackV2: collected 5 objects, generating pack
06:38:13.287 [info] UploadPackV2: pack generated, 424 bytes
06:38:13.287 [info] UploadPackV2: fetch response 446 bytes
.
06:38:13.290 [info] UploadPackV2: processing fetch command
06:38:13.290 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.291 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.291 [info] UploadPackV2: pack generated, 853 bytes
06:38:13.291 [info] UploadPackV2: fetch response 875 bytes
.
06:38:13.293 [info] UploadPackV2: processing fetch command
06:38:13.293 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.294 [info] UploadPackV2: collected 9 objects, generating pack
06:38:13.294 [info] UploadPackV2: pack generated, 642 bytes
06:38:13.294 [info] UploadPackV2: fetch response 664 bytes
06:38:13.296 [info] UploadPackV2: processing fetch command
06:38:13.296 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.296 [info] UploadPackV2: collected 5 objects, generating pack
06:38:13.296 [info] UploadPackV2: pack generated, 424 bytes
06:38:13.297 [info] UploadPackV2: fetch response 446 bytes
06:38:13.300 [info] UploadPackV2: processing fetch command
.
06:38:13.300 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.300 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.300 [info] UploadPackV2: pack generated, 636 bytes
06:38:13.301 [info] UploadPackV2: fetch response 658 bytes
06:38:13.302 [info] UploadPackV2: processing fetch command
06:38:13.302 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.303 [info] UploadPackV2: collected 15 objects, generating pack
06:38:13.303 [info] UploadPackV2: pack generated, 1068 bytes
06:38:13.303 [info] UploadPackV2: fetch response 1090 bytes
..
06:38:13.307 [info] UploadPackV2: processing fetch command
06:38:13.307 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.310 [info] UploadPackV2: collected 29 objects, generating pack
06:38:13.310 [info] UploadPackV2: pack generated, 2100 bytes
06:38:13.310 [info] UploadPackV2: fetch response 2122 bytes
06:38:13.315 [info] UploadPackV2: processing fetch command
06:38:13.315 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.316 [info] UploadPackV2: collected 25 objects, generating pack
06:38:13.317 [info] UploadPackV2: pack generated, 1870 bytes
06:38:13.317 [info] UploadPackV2: fetch response 1892 bytes
06:38:13.320 [info] UploadPackV2: processing fetch command
06:38:13.320 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.321 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.321 [info] UploadPackV2: pack generated, 639 bytes
06:38:13.321 [info] UploadPackV2: fetch response 661 bytes
06:38:13.321 [info] UploadPackV2: streamed pack 2459750 bytes, 32 objects
06:38:13.321 [info] UploadPackV2: fetch streamed 2459750 pack bytes, 32 objects
.
06:38:13.322 [info] UploadPackV2: processing fetch command
06:38:13.323 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.323 [info] UploadPackV2: collected 6 objects, generating pack
06:38:13.323 [info] UploadPackV2: pack generated, 428 bytes
06:38:13.323 [info] UploadPackV2: fetch response 450 bytes
06:38:13.325 [info] UploadPackV2: processing fetch command
06:38:13.325 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.325 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.326 [info] UploadPackV2: pack generated, 639 bytes
06:38:13.326 [info] UploadPackV2: fetch response 661 bytes
.
06:38:13.329 [info] UploadPackV2: processing fetch command
06:38:13.329 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.330 [info] UploadPackV2: collected 20 objects, generating pack
06:38:13.330 [info] UploadPackV2: pack generated, 1492 bytes
06:38:13.330 [info] UploadPackV2: fetch response 1514 bytes
06:38:13.334 [info] UploadPackV2: processing fetch command
06:38:13.334 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.334 [info] UploadPackV2: collected 6 objects, generating pack
06:38:13.334 [info] UploadPackV2: pack generated, 428 bytes
06:38:13.334 [info] UploadPackV2: fetch response 450 bytes
06:38:13.337 [info] UploadPackV2: processing fetch command
06:38:13.338 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.339 [info] UploadPackV2: collected 35 objects, generating pack
06:38:13.340 [info] UploadPackV2: pack generated, 2510 bytes
06:38:13.340 [info] UploadPackV2: fetch response 2532 bytes
....
06:38:13.347 [info] UploadPackV2: processing fetch command
06:38:13.348 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
...
06:38:13.349 [info] UploadPackV2: collected 35 objects, generating pack
.
06:38:13.349 [info] UploadPackV2: pack generated, 2517 bytes
06:38:13.349 [info] UploadPackV2: fetch response 2539 bytes
...........
06:38:13.354 [info] UploadPackV2: processing fetch command
.
06:38:13.354 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:38:13.355 [info] UploadPackV2: collected 9 objects, generating pack
06:38:13.355 [info] UploadPackV2: pack generated, 642 bytes
06:38:13.355 [info] UploadPackV2: fetch response 664 bytes
........
06:38:13.357 [info] UploadPackV2: processing fetch command
.
06:38:13.357 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.358 [info] UploadPackV2: collected 6 objects, generating pack
.
06:38:13.358 [info] UploadPackV2: pack generated, 428 bytes
06:38:13.358 [info] UploadPackV2: fetch response 450 bytes
.....
06:38:13.360 [info] UploadPackV2: processing fetch command
.
06:38:13.360 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:38:13.361 [info] UploadPackV2: collected 18 objects, generating pack
.
06:38:13.361 [info] UploadPackV2: pack generated, 1281 bytes
06:38:13.361 [info] UploadPackV2: fetch response 1303 bytes
......
06:38:13.362 [info] UploadPackV2: processing ls-refs command
....
06:38:13.363 [info] UploadPackV2: processing ls-refs command
..
06:38:13.363 [info] UploadPackV2: processing fetch command
06:38:13.363 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.363 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.363 [info] UploadPackV2: pack generated, 206 bytes
06:38:13.363 [info] UploadPackV2: fetch response 228 bytes
.
06:38:13.364 [info] UploadPackV2: processing fetch command
06:38:13.364 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.364 [info] UploadPackV2: collected 15 objects, generating pack
06:38:13.365 [info] UploadPackV2: pack generated, 984 bytes
06:38:13.365 [info] UploadPackV2: fetch response 1006 bytes
06:38:13.365 [info] UploadPackV2: processing fetch command
06:38:13.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.365 [info] UploadPackV2: processing fetch command
06:38:13.365 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.366 [info] UploadPackV2: collected 15 objects, streaming pack
06:38:13.366 [info] UploadPackV2: collected 17 objects, generating pack
06:38:13.366 [info] UploadPackV2: pack generated, 1276 bytes
.
06:38:13.366 [info] UploadPackV2: fetch response 1298 bytes
06:38:13.366 [info] UploadPackV2: streamed pack 984 bytes, 15 objects
.
06:38:13.367 [info] UploadPackV2: fetch streamed 984 pack bytes, 15 objects
.
06:38:13.367 [info] UploadPackV2: processing fetch command
06:38:13.367 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.368 [info] UploadPackV2: collected 6 objects, generating pack
.
06:38:13.368 [info] UploadPackV2: pack generated, 414 bytes
06:38:13.368 [info] UploadPackV2: fetch response 436 bytes
..
06:38:13.369 [info] UploadPackV2: processing fetch command
06:38:13.369 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.369 [info] UploadPackV2: collected 8 objects, generating pack
.
06:38:13.369 [info] UploadPackV2: pack generated, 639 bytes
06:38:13.369 [info] UploadPackV2: fetch response 661 bytes
.
06:38:13.371 [info] UploadPackV2: processing fetch command
06:38:13.371 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.371 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.371 [info] UploadPackV2: pack generated, 214 bytes
06:38:13.371 [info] UploadPackV2: fetch response 236 bytes
..
06:38:13.373 [info] UploadPackV2: processing fetch command
06:38:13.373 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
.
06:38:13.373 [info] UploadPackV2: collected 5 objects, generating pack
06:38:13.374 [info] UploadPackV2: pack generated, 424 bytes
06:38:13.374 [info] UploadPackV2: fetch response 446 bytes
..
06:38:13.375 [info] UploadPackV2: processing fetch command
06:38:13.375 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.376 [info] UploadPackV2: collected 11 objects, generating pack
..
06:38:13.376 [info] UploadPackV2: pack generated, 853 bytes
06:38:13.376 [info] UploadPackV2: fetch response 875 bytes
...
06:38:13.379 [info] UploadPackV2: processing fetch command
06:38:13.379 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.379 [info] UploadPackV2: collected 9 objects, generating pack
06:38:13.379 [info] UploadPackV2: pack generated, 642 bytes
06:38:13.379 [info] UploadPackV2: fetch response 664 bytes
06:38:13.382 [info] UploadPackV2: processing fetch command
06:38:13.382 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.383 [info] UploadPackV2: collected 28 objects, generating pack
06:38:13.383 [info] UploadPackV2: pack generated, 2085 bytes
06:38:13.383 [info] UploadPackV2: fetch response 2107 bytes
06:38:13.387 [info] UploadPackV2: processing fetch command
06:38:13.387 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.387 [info] UploadPackV2: collected 6 objects, generating pack
06:38:13.387 [info] UploadPackV2: pack generated, 428 bytes
06:38:13.387 [info] UploadPackV2: fetch response 450 bytes
06:38:13.390 [info] UploadPackV2: processing fetch command
06:38:13.390 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.391 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.391 [info] UploadPackV2: pack generated, 214 bytes
06:38:13.391 [info] UploadPackV2: fetch response 236 bytes
06:38:13.393 [info] UploadPackV2: processing fetch command
06:38:13.393 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:13.394 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.395 [info] UploadPackV2: pack generated, 1674 bytes
06:38:13.395 [info] UploadPackV2: fetch response 1696 bytes
06:38:13.400 [info] UploadPackV2: processing fetch command
06:38:13.400 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
...
06:38:13.401 [info] UploadPackV2: collected 13 objects, generating pack
.
06:38:13.401 [info] UploadPackV2: pack generated, 1021 bytes
06:38:13.401 [info] UploadPackV2: fetch response 1043 bytes
...........
06:38:13.405 [info] UploadPackV2: processing fetch command
06:38:13.405 [info] UploadPackV2: processing fetch command
06:38:13.405 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.405 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.406 [info] UploadPackV2: collected 32 objects, generating pack
06:38:13.409 [info] UploadPackV2: pack generated, 1863 bytes
06:38:13.409 [info] UploadPackV2: fetch response 1885 bytes
06:38:13.412 [info] UploadPackV2: processing fetch command
06:38:13.413 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.413 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.413 [info] UploadPackV2: pack generated, 717 bytes
06:38:13.414 [info] UploadPackV2: fetch response 739 bytes
06:38:13.417 [info] UploadPackV2: processing fetch command
06:38:13.417 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.418 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.418 [info] UploadPackV2: pack generated, 1412 bytes
06:38:13.418 [info] UploadPackV2: fetch response 1434 bytes
06:38:13.420 [info] UploadPackV2: processing fetch command
06:38:13.420 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.420 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.421 [info] UploadPackV2: pack generated, 1411 bytes
06:38:13.421 [info] UploadPackV2: fetch response 1433 bytes
06:38:13.422 [info] UploadPackV2: collected 700 objects, generating pack
06:38:13.424 [info] UploadPackV2: processing fetch command
06:38:13.424 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.425 [info] UploadPackV2: collected 44 objects, generating pack
06:38:13.425 [info] UploadPackV2: pack generated, 2614 bytes
06:38:13.425 [info] UploadPackV2: fetch response 2636 bytes
06:38:13.428 [info] UploadPackV2: pack generated, 48139 bytes
06:38:13.428 [info] UploadPackV2: fetch response 48161 bytes
.
06:38:13.430 [info] UploadPackV2: processing fetch command
06:38:13.430 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.431 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.431 [info] UploadPackV2: pack generated, 1443 bytes
06:38:13.431 [info] UploadPackV2: fetch response 1465 bytes
.
06:38:13.433 [info] UploadPackV2: processing fetch command
06:38:13.433 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.434 [info] UploadPackV2: collected 4 objects, generating pack
06:38:13.434 [info] UploadPackV2: pack generated, 241 bytes
06:38:13.434 [info] UploadPackV2: fetch response 263 bytes
06:38:13.435 [info] UploadPackV2: processing fetch command
06:38:13.435 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.436 [info] UploadPackV2: collected 27 objects, generating pack
06:38:13.437 [info] UploadPackV2: pack generated, 1676 bytes
06:38:13.437 [info] UploadPackV2: fetch response 1698 bytes
06:38:13.440 [info] UploadPackV2: processing fetch command
06:38:13.440 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.441 [info] UploadPackV2: collected 30 objects, generating pack
06:38:13.441 [info] UploadPackV2: pack generated, 1860 bytes
06:38:13.441 [info] UploadPackV2: fetch response 1882 bytes
06:38:13.444 [info] UploadPackV2: processing fetch command
06:38:13.444 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.445 [info] UploadPackV2: collected 31 objects, generating pack
06:38:13.445 [info] UploadPackV2: pack generated, 1884 bytes
06:38:13.445 [info] UploadPackV2: fetch response 1906 bytes
06:38:13.448 [info] UploadPackV2: processing fetch command
06:38:13.448 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.448 [info] UploadPackV2: collected 16 objects, generating pack
06:38:13.448 [info] UploadPackV2: pack generated, 962 bytes
06:38:13.448 [info] UploadPackV2: fetch response 984 bytes
.
06:38:13.450 [info] UploadPackV2: processing fetch command
06:38:13.450 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.450 [info] UploadPackV2: collected 7 objects, generating pack
06:38:13.450 [info] UploadPackV2: pack generated, 475 bytes
06:38:13.450 [info] UploadPackV2: fetch response 497 bytes
06:38:13.451 [info] UploadPackV2: processing fetch command
06:38:13.451 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.452 [info] UploadPackV2: processing fetch command
06:38:13.452 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.452 [info] UploadPackV2: collected 15 objects, generating pack
06:38:13.452 [info] UploadPackV2: pack generated, 958 bytes
06:38:13.453 [info] UploadPackV2: fetch response 980 bytes
06:38:13.453 [info] UploadPackV2: collected 90 objects, generating pack
06:38:13.454 [info] UploadPackV2: processing fetch command
06:38:13.454 [info] UploadPackV2: pack generated, 5946 bytes
06:38:13.454 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.454 [info] UploadPackV2: fetch response 5968 bytes
06:38:13.454 [info] UploadPackV2: collected 12 objects, generating pack
06:38:13.454 [info] UploadPackV2: pack generated, 723 bytes
06:38:13.454 [info] UploadPackV2: fetch response 745 bytes
06:38:13.456 [info] UploadPackV2: processing fetch command
06:38:13.456 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.456 [info] UploadPackV2: collected 7 objects, generating pack
.
06:38:13.456 [info] UploadPackV2: pack generated, 475 bytes
06:38:13.456 [info] UploadPackV2: fetch response 497 bytes
06:38:13.458 [info] UploadPackV2: processing fetch command
06:38:13.458 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.459 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.459 [info] UploadPackV2: pack generated, 714 bytes
06:38:13.459 [info] UploadPackV2: fetch response 736 bytes
06:38:13.460 [info] UploadPackV2: processing fetch command
06:38:13.461 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.461 [info] UploadPackV2: collected 20 objects, generating pack
06:38:13.461 [info] UploadPackV2: pack generated, 1203 bytes
06:38:13.461 [info] UploadPackV2: fetch response 1225 bytes
06:38:13.464 [info] UploadPackV2: processing fetch command
06:38:13.464 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.465 [info] UploadPackV2: collected 39 objects, generating pack
06:38:13.465 [info] UploadPackV2: pack generated, 2367 bytes
06:38:13.465 [info] UploadPackV2: fetch response 2389 bytes
06:38:13.468 [info] UploadPackV2: processing fetch command
06:38:13.468 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.469 [info] UploadPackV2: collected 34 objects, generating pack
06:38:13.469 [info] UploadPackV2: pack generated, 2098 bytes
06:38:13.469 [info] UploadPackV2: fetch response 2120 bytes
06:38:13.471 [info] UploadPackV2: processing fetch command
06:38:13.471 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.472 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.472 [info] UploadPackV2: pack generated, 717 bytes
06:38:13.472 [info] UploadPackV2: fetch response 739 bytes
06:38:13.473 [info] UploadPackV2: processing fetch command
06:38:13.473 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.473 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.473 [info] UploadPackV2: pack generated, 482 bytes
06:38:13.473 [info] UploadPackV2: fetch response 504 bytes
06:38:13.474 [info] UploadPackV2: processing fetch command
06:38:13.474 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.475 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.475 [info] UploadPackV2: pack generated, 717 bytes
06:38:13.475 [info] UploadPackV2: fetch response 739 bytes
06:38:13.477 [info] UploadPackV2: processing fetch command
06:38:13.477 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.478 [info] UploadPackV2: collected 27 objects, generating pack
06:38:13.478 [info] UploadPackV2: pack generated, 1678 bytes
06:38:13.478 [info] UploadPackV2: fetch response 1700 bytes
06:38:13.480 [info] UploadPackV2: processing fetch command
06:38:13.480 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.480 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.480 [info] UploadPackV2: pack generated, 482 bytes
06:38:13.480 [info] UploadPackV2: fetch response 504 bytes
06:38:13.482 [info] UploadPackV2: processing fetch command
06:38:13.482 [info] UploadPackV2: processing fetch command
06:38:13.482 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.482 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.483 [info] UploadPackV2: collected 47 objects, generating pack
06:38:13.484 [info] UploadPackV2: pack generated, 2822 bytes
06:38:13.484 [info] UploadPackV2: fetch response 2844 bytes
.
06:38:13.488 [info] UploadPackV2: processing fetch command
06:38:13.488 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.490 [info] UploadPackV2: collected 47 objects, generating pack
06:38:13.490 [info] UploadPackV2: pack generated, 2829 bytes
06:38:13.490 [info] UploadPackV2: fetch response 2851 bytes
06:38:13.493 [info] UploadPackV2: processing fetch command
06:38:13.493 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.493 [info] UploadPackV2: collected 12 objects, generating pack
06:38:13.493 [info] UploadPackV2: pack generated, 723 bytes
06:38:13.493 [info] UploadPackV2: fetch response 745 bytes
06:38:13.495 [info] UploadPackV2: processing fetch command
06:38:13.495 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.495 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.495 [info] UploadPackV2: pack generated, 482 bytes
06:38:13.495 [info] UploadPackV2: fetch response 504 bytes
06:38:13.496 [info] UploadPackV2: collected 600 objects, generating pack
06:38:13.497 [info] UploadPackV2: processing fetch command
06:38:13.497 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.497 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.498 [info] UploadPackV2: pack generated, 1443 bytes
06:38:13.498 [info] UploadPackV2: fetch response 1465 bytes
.
06:38:13.501 [info] UploadPackV2: pack generated, 39862 bytes
06:38:13.501 [info] UploadPackV2: fetch response 39884 bytes
06:38:13.501 [info] UploadPackV2: processing fetch command
06:38:13.501 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.501 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.501 [info] UploadPackV2: pack generated, 1435 bytes
06:38:13.502 [info] UploadPackV2: fetch response 1457 bytes
06:38:13.503 [info] UploadPackV2: processing fetch command
06:38:13.503 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.504 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.504 [info] UploadPackV2: pack generated, 717 bytes
06:38:13.504 [info] UploadPackV2: fetch response 739 bytes
06:38:13.505 [info] UploadPackV2: processing fetch command
06:38:13.505 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.505 [info] UploadPackV2: collected 4 objects, generating pack
06:38:13.505 [info] UploadPackV2: pack generated, 241 bytes
06:38:13.505 [info] UploadPackV2: fetch response 263 bytes
06:38:13.507 [info] UploadPackV2: processing fetch command
06:38:13.507 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.507 [info] UploadPackV2: collected 7 objects, generating pack
06:38:13.507 [info] UploadPackV2: pack generated, 475 bytes
06:38:13.507 [info] UploadPackV2: fetch response 497 bytes
06:38:13.508 [info] UploadPackV2: processing fetch command
06:38:13.508 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.509 [info] UploadPackV2: collected 15 objects, generating pack
06:38:13.509 [info] UploadPackV2: pack generated, 958 bytes
06:38:13.509 [info] UploadPackV2: fetch response 980 bytes
06:38:13.511 [info] UploadPackV2: processing fetch command
06:38:13.511 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.511 [info] UploadPackV2: collected 12 objects, generating pack
06:38:13.511 [info] UploadPackV2: pack generated, 723 bytes
06:38:13.511 [info] UploadPackV2: fetch response 745 bytes
06:38:13.513 [info] UploadPackV2: processing fetch command
06:38:13.513 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.514 [info] UploadPackV2: collected 38 objects, generating pack
06:38:13.515 [info] UploadPackV2: pack generated, 2340 bytes
06:38:13.515 [info] UploadPackV2: fetch response 2362 bytes
06:38:13.517 [info] UploadPackV2: processing fetch command
06:38:13.517 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.517 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.517 [info] UploadPackV2: pack generated, 482 bytes
06:38:13.517 [info] UploadPackV2: fetch response 504 bytes
06:38:13.519 [info] UploadPackV2: processing fetch command
06:38:13.519 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.519 [info] UploadPackV2: collected 4 objects, generating pack
06:38:13.519 [info] UploadPackV2: pack generated, 241 bytes
06:38:13.519 [info] UploadPackV2: fetch response 263 bytes
.
06:38:13.520 [info] UploadPackV2: processing fetch command
06:38:13.520 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.520 [info] UploadPackV2: processing fetch command
06:38:13.520 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.521 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.521 [info] UploadPackV2: pack generated, 191 bytes
.
06:38:13.521 [info] UploadPackV2: fetch response 213 bytes
06:38:13.521 [info] UploadPackV2: processing fetch command
06:38:13.521 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.521 [info] UploadPackV2: collected 3 objects, generating pack
.
06:38:13.521 [info] UploadPackV2: pack generated, 191 bytes
06:38:13.521 [info] UploadPackV2: fetch response 213 bytes
.
06:38:13.521 [info] UploadPackV2: collected 31 objects, generating pack
06:38:13.522 [info] UploadPackV2: pack generated, 1887 bytes
06:38:13.522 [info] UploadPackV2: fetch response 1909 bytes
06:38:13.523 [info] UploadPackV2: processing ls-refs command
06:38:13.523 [info] UploadPackV2: processing fetch command
06:38:13.523 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.523 [info] UploadPackV2: collected 3 objects, generating pack
06:38:13.523 [info] UploadPackV2: pack generated, 210 bytes
06:38:13.523 [info] UploadPackV2: fetch response 232 bytes
06:38:13.524 [info] UploadPackV2: processing fetch command
06:38:13.524 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.524 [info] UploadPackV2: collected 18 objects, generating pack
06:38:13.525 [info] UploadPackV2: pack generated, 1141 bytes
06:38:13.525 [info] UploadPackV2: fetch response 1163 bytes
06:38:13.527 [info] UploadPackV2: processing fetch command
06:38:13.527 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.528 [info] UploadPackV2: collected 16 objects, generating pack
06:38:13.528 [info] UploadPackV2: pack generated, 962 bytes
06:38:13.528 [info] UploadPackV2: fetch response 984 bytes
06:38:13.529 [info] UploadPackV2: processing fetch command
06:38:13.529 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.529 [info] UploadPackV2: collected 19 objects, generating pack
06:38:13.530 [info] UploadPackV2: pack generated, 1194 bytes
06:38:13.530 [info] UploadPackV2: fetch response 1216 bytes
06:38:13.532 [info] UploadPackV2: processing fetch command
06:38:13.532 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.533 [info] UploadPackV2: collected 16 objects, generating pack
06:38:13.533 [info] UploadPackV2: pack generated, 962 bytes
06:38:13.533 [info] UploadPackV2: fetch response 984 bytes
06:38:13.534 [info] UploadPackV2: processing fetch command
06:38:13.534 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.535 [info] UploadPackV2: processing fetch command
06:38:13.535 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.536 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.536 [info] UploadPackV2: pack generated, 1385 bytes
06:38:13.536 [info] UploadPackV2: fetch response 1407 bytes
06:38:13.537 [info] UploadPackV2: processing fetch command
06:38:13.537 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.538 [info] UploadPackV2: collected 16 objects, generating pack
06:38:13.538 [info] UploadPackV2: reused pack 12125 bytes, 160 objects
06:38:13.538 [info] UploadPackV2: fetch response 12147 bytes
06:38:13.538 [info] UploadPackV2: pack generated, 962 bytes
06:38:13.538 [info] UploadPackV2: fetch response 984 bytes
06:38:13.541 [info] UploadPackV2: processing fetch command
06:38:13.541 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
.
06:38:13.542 [info] UploadPackV2: collected 54 objects, generating pack
06:38:13.543 [info] UploadPackV2: pack generated, 3297 bytes
06:38:13.543 [info] UploadPackV2: fetch response 3319 bytes
06:38:13.547 [info] UploadPackV2: processing fetch command
06:38:13.547 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.548 [info] UploadPackV2: collected 40 objects, generating pack
06:38:13.549 [info] UploadPackV2: pack generated, 2372 bytes
06:38:13.549 [info] UploadPackV2: fetch response 2394 bytes
06:38:13.552 [info] UploadPackV2: processing fetch command
06:38:13.552 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.553 [info] UploadPackV2: collected 48 objects, generating pack
06:38:13.553 [info] UploadPackV2: pack generated, 2821 bytes
06:38:13.553 [info] UploadPackV2: fetch response 2843 bytes
.
06:38:13.557 [info] UploadPackV2: processing fetch command
06:38:13.557 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.558 [info] UploadPackV2: collected 35 objects, generating pack
06:38:13.558 [info] UploadPackV2: pack generated, 2124 bytes
06:38:13.558 [info] UploadPackV2: fetch response 2146 bytes
06:38:13.561 [info] UploadPackV2: processing fetch command
06:38:13.561 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.562 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.562 [info] UploadPackV2: pack generated, 1437 bytes
06:38:13.562 [info] UploadPackV2: fetch response 1459 bytes
06:38:13.563 [info] UploadPackV2: processing fetch command
06:38:13.563 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.564 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.564 [info] UploadPackV2: pack generated, 714 bytes
06:38:13.564 [info] UploadPackV2: fetch response 736 bytes
.
06:38:13.566 [info] UploadPackV2: processing fetch command
06:38:13.566 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.567 [info] UploadPackV2: collected 27 objects, generating pack
06:38:13.567 [info] UploadPackV2: pack generated, 1676 bytes
06:38:13.567 [info] UploadPackV2: fetch response 1698 bytes
06:38:13.570 [info] UploadPackV2: processing fetch command
06:38:13.570 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.571 [info] UploadPackV2: collected 27 objects, generating pack
06:38:13.571 [info] UploadPackV2: pack generated, 1676 bytes
06:38:13.571 [info] UploadPackV2: fetch response 1698 bytes
06:38:13.572 [info] UploadPackV2: processing fetch command
06:38:13.572 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.573 [info] UploadPackV2: collected 16 objects, generating pack
06:38:13.573 [info] UploadPackV2: pack generated, 962 bytes
06:38:13.573 [info] UploadPackV2: fetch response 984 bytes
06:38:13.575 [info] UploadPackV2: processing fetch command
06:38:13.575 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.575 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.575 [info] UploadPackV2: pack generated, 1443 bytes
06:38:13.575 [info] UploadPackV2: fetch response 1465 bytes
06:38:13.577 [info] UploadPackV2: processing fetch command
06:38:13.577 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.577 [info] UploadPackV2: collected 19 objects, generating pack
06:38:13.577 [info] UploadPackV2: pack generated, 1167 bytes
06:38:13.577 [info] UploadPackV2: fetch response 1189 bytes
06:38:13.579 [info] UploadPackV2: processing fetch command
06:38:13.579 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.579 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.580 [info] UploadPackV2: pack generated, 1382 bytes
06:38:13.580 [info] UploadPackV2: fetch response 1404 bytes
06:38:13.582 [info] UploadPackV2: processing fetch command
06:38:13.582 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.582 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.583 [info] UploadPackV2: pack generated, 1435 bytes
06:38:13.583 [info] UploadPackV2: fetch response 1457 bytes
06:38:13.585 [info] UploadPackV2: processing fetch command
06:38:13.585 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.586 [info] UploadPackV2: collected 19 objects, generating pack
06:38:13.586 [info] UploadPackV2: pack generated, 1194 bytes
06:38:13.586 [info] UploadPackV2: fetch response 1216 bytes
06:38:13.588 [info] UploadPackV2: processing fetch command
06:38:13.588 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.588 [info] UploadPackV2: collected 11 objects, generating pack
06:38:13.589 [info] UploadPackV2: pack generated, 684 bytes
06:38:13.589 [info] UploadPackV2: fetch response 706 bytes
.
06:38:13.591 [info] UploadPackV2: processing fetch command
06:38:13.591 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.591 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.591 [info] UploadPackV2: pack generated, 482 bytes
06:38:13.591 [info] UploadPackV2: fetch response 504 bytes
06:38:13.593 [info] UploadPackV2: processing fetch command
06:38:13.593 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.594 [info] UploadPackV2: collected 54 objects, generating pack
06:38:13.594 [info] UploadPackV2: pack generated, 3297 bytes
06:38:13.594 [info] UploadPackV2: fetch response 3319 bytes
.
06:38:13.599 [info] UploadPackV2: processing fetch command
06:38:13.599 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.600 [info] UploadPackV2: collected 31 objects, generating pack
06:38:13.601 [info] UploadPackV2: pack generated, 1865 bytes
06:38:13.601 [info] UploadPackV2: fetch response 1887 bytes
06:38:13.604 [info] UploadPackV2: processing fetch command
06:38:13.604 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.605 [info] UploadPackV2: collected 51 objects, generating pack
06:38:13.605 [info] UploadPackV2: pack generated, 3070 bytes
06:38:13.605 [info] UploadPackV2: fetch response 3092 bytes
06:38:13.610 [info] UploadPackV2: processing fetch command
06:38:13.610 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.611 [info] UploadPackV2: collected 27 objects, generating pack
06:38:13.611 [info] UploadPackV2: pack generated, 1678 bytes
06:38:13.611 [info] UploadPackV2: fetch response 1700 bytes
06:38:13.614 [info] UploadPackV2: processing fetch command
06:38:13.614 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.616 [info] UploadPackV2: collected 47 objects, generating pack
06:38:13.617 [info] UploadPackV2: pack generated, 2813 bytes
06:38:13.617 [info] UploadPackV2: fetch response 2835 bytes
06:38:13.620 [info] UploadPackV2: processing fetch command
06:38:13.620 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.621 [info] UploadPackV2: collected 39 objects, generating pack
06:38:13.622 [info] UploadPackV2: pack generated, 2343 bytes
06:38:13.622 [info] UploadPackV2: fetch response 2365 bytes
06:38:13.624 [info] UploadPackV2: processing fetch command
06:38:13.624 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.624 [info] UploadPackV2: collected 8 objects, generating pack
06:38:13.624 [info] UploadPackV2: pack generated, 482 bytes
06:38:13.624 [info] UploadPackV2: fetch response 504 bytes
06:38:13.626 [info] UploadPackV2: processing fetch command
06:38:13.626 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.626 [info] UploadPackV2: collected 24 objects, generating pack
06:38:13.627 [info] UploadPackV2: pack generated, 1443 bytes
06:38:13.627 [info] UploadPackV2: fetch response 1465 bytes
06:38:13.628 [info] UploadPackV2: processing fetch command
06:38:13.628 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.628 [info] UploadPackV2: collected 4 objects, generating pack
06:38:13.628 [info] UploadPackV2: pack generated, 241 bytes
06:38:13.629 [info] UploadPackV2: fetch response 263 bytes
06:38:13.629 [info] UploadPackV2: processing fetch command
06:38:13.629 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.630 [info] UploadPackV2: collected 4 objects, generating pack
06:38:13.630 [info] UploadPackV2: pack generated, 241 bytes
06:38:13.630 [info] UploadPackV2: fetch response 263 bytes
06:38:13.630 [info] UploadPackV2: processing fetch command
06:38:13.630 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.631 [info] UploadPackV2: collected 27 objects, generating pack
06:38:13.631 [info] UploadPackV2: pack generated, 1645 bytes
06:38:13.631 [info] UploadPackV2: fetch response 1667 bytes
06:38:13.634 [info] UploadPackV2: processing fetch command
06:38:13.634 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.635 [info] UploadPackV2: collected 35 objects, generating pack
06:38:13.635 [info] UploadPackV2: pack generated, 2124 bytes
06:38:13.635 [info] UploadPackV2: fetch response 2146 bytes
06:38:13.638 [info] UploadPackV2: processing fetch command
06:38:13.638 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.639 [info] UploadPackV2: collected 32 objects, generating pack
06:38:13.639 [info] UploadPackV2: pack generated, 1893 bytes
06:38:13.639 [info] UploadPackV2: fetch response 1915 bytes
06:38:13.642 [info] UploadPackV2: processing fetch command
06:38:13.642 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.642 [info] UploadPackV2: collected 4 objects, generating pack
06:38:13.642 [info] UploadPackV2: pack generated, 241 bytes
06:38:13.642 [info] UploadPackV2: fetch response 263 bytes
06:38:13.643 [info] UploadPackV2: processing fetch command
06:38:13.643 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.644 [info] UploadPackV2: collected 15 objects, generating pack
06:38:13.644 [info] UploadPackV2: pack generated, 958 bytes
06:38:13.644 [info] UploadPackV2: fetch response 980 bytes
06:38:13.646 [info] UploadPackV2: processing fetch command
06:38:13.646 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.646 [info] UploadPackV2: collected 23 objects, generating pack
06:38:13.646 [info] UploadPackV2: pack generated, 1404 bytes
06:38:13.646 [info] UploadPackV2: fetch response 1426 bytes
.
06:38:13.648 [info] UploadPackV2: processing fetch command
06:38:13.648 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.649 [info] UploadPackV2: collected 12 objects, generating pack
06:38:13.649 [info] UploadPackV2: pack generated, 723 bytes
06:38:13.649 [info] UploadPackV2: fetch response 745 bytes
06:38:13.651 [info] UploadPackV2: processing fetch command
06:38:13.651 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.651 [info] UploadPackV2: collected 7 objects, generating pack
06:38:13.651 [info] UploadPackV2: pack generated, 475 bytes
06:38:13.651 [info] UploadPackV2: fetch response 497 bytes
06:38:13.654 [info] UploadPackV2: processing fetch command
06:38:13.654 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.655 [info] UploadPackV2: collected 50 objects, generating pack
06:38:13.656 [info] UploadPackV2: pack generated, 3057 bytes
06:38:13.656 [info] UploadPackV2: fetch response 3079 bytes
............
06:38:13.857 [info] UploadPackV2: processing fetch command
.
06:38:13.857 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:13.862 [info] UploadPackV2: collected 163 objects, generating pack
06:38:13.864 [info] UploadPackV2: pack generated, 15086 bytes
06:38:13.864 [info] UploadPackV2: fetch response 15108 bytes
........
06:38:14.120 [info] UploadPackV2: processing fetch command
06:38:14.120 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:14.122 [info] UploadPackV2: reused pack 12222 bytes, 160 objects
06:38:14.122 [info] UploadPackV2: fetch response 12244 bytes
.....
06:38:14.592 [info] The function passed as a handler with ID #Reference<0.1152960540.4200071169.130266> 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
............
06:38:14.600 [info] The function passed as a handler with ID #Reference<0.1152960540.4200071173.111991> 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: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:invalid, "content")
given types:
-:invalid-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
431 │ Object.encode_raw_from_type(:invalid, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:431:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :invalid atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:foo, "content")
given types:
-:foo-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
437 │ Object.encode_raw_from_type(:foo, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:437:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :foo atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:bar, "content")
given types:
-:bar-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
443 │ Object.encode_raw_from_type(:bar, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:443:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :bar atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:object, "content")
given types:
-:object-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
449 │ Object.encode_raw_from_type(:object, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:449:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :object atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:delta, "content")
given types:
-:delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
455 │ Object.encode_raw_from_type(:delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:455:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ofs_delta, "content")
given types:
-:ofs_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
462 │ Object.encode_raw_from_type(:ofs_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:462:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ofs_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:ref_delta, "content")
given types:
-:ref_delta-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
468 │ Object.encode_raw_from_type(:ref_delta, "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:468:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types :ref_delta atom raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type("blob", "content")
given types:
-binary()-, binary()
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
474 │ Object.encode_raw_from_type("blob", "content")
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:474:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-atom type raises FunctionClauseError"/1
warning: incompatible types given to ExGitObjectstore.Object.encode_raw_from_type/2:
ExGitObjectstore.Object.encode_raw_from_type(:blob, 12345)
given types:
:blob, -integer()-
but expected one of:
:blob or :commit or :tag or :tree, binary()
type warning found at:
│
480 │ Object.encode_raw_from_type(:blob, 12_345)
│ ~
│
└─ test/ex_git_objectstore/cycle2_fixes_test.exs:480:16: ExGitObjectstore.Cycle2FixesTest."test Fix 3: encode_raw_from_type type validation - invalid types non-binary content raises FunctionClauseError"/1
.............................................................................................................................
06:38:17.312 [info] UploadPackV2: processing ls-refs command
06:38:17.313 [info] UploadPackV2: processing fetch command
06:38:17.313 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:17.314 [info] UploadPackV2: collected 15 objects, generating pack
06:38:17.314 [info] UploadPackV2: pack generated, 952 bytes
06:38:17.314 [info] UploadPackV2: fetch response 974 bytes
.
06:38:17.372 [info] UploadPackV2: processing ls-refs command
06:38:17.373 [info] UploadPackV2: processing fetch command
06:38:17.373 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:17.374 [info] UploadPackV2: collected 3 objects, generating pack
06:38:17.374 [info] UploadPackV2: pack generated, 185 bytes
06:38:17.374 [info] UploadPackV2: fetch response 207 bytes
06:38:17.428 [info] UploadPackV2: processing ls-refs command
.
06:38:17.492 [info] UploadPackV2: processing ls-refs command
06:38:17.493 [info] UploadPackV2: processing fetch command
06:38:17.493 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:38:17.493 [info] UploadPackV2: collected 3 objects, generating pack
06:38:17.493 [info] UploadPackV2: pack generated, 200 bytes
06:38:17.493 [info] UploadPackV2: fetch response 256 bytes
.
06:38:17.552 [info] UploadPackV2: processing ls-refs command
06:38:17.554 [info] UploadPackV2: processing fetch command
06:38:17.554 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:17.554 [info] UploadPackV2: collected 3 objects, generating pack
06:38:17.554 [info] UploadPackV2: pack generated, 196 bytes
06:38:17.554 [info] UploadPackV2: fetch response 218 bytes
..
06:38:32.676 [info] UploadPackV2: processing ls-refs command
06:38:32.677 [info] UploadPackV2: processing fetch command
06:38:32.678 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:32.678 [info] UploadPackV2: collected 3 objects, generating pack
06:38:32.678 [info] UploadPackV2: pack generated, 185 bytes
06:38:32.678 [info] UploadPackV2: fetch response 207 bytes
.
06:38:32.740 [info] UploadPackV2: processing ls-refs command
06:38:32.741 [info] UploadPackV2: processing fetch command
06:38:32.741 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:32.742 [info] UploadPackV2: collected 3 objects, generating pack
06:38:32.742 [info] UploadPackV2: pack generated, 196 bytes
06:38:32.742 [info] UploadPackV2: fetch response 218 bytes
.
06:38:32.804 [info] UploadPackV2: processing ls-refs command
06:38:32.805 [info] UploadPackV2: processing fetch command
06:38:32.805 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:38:32.805 [info] UploadPackV2: collected 3 objects, generating pack
06:38:32.806 [info] UploadPackV2: pack generated, 218 bytes
06:38:32.806 [info] UploadPackV2: fetch response 314 bytes
.
06:38:32.868 [info] UploadPackV2: processing ls-refs command
06:38:32.870 [info] UploadPackV2: processing fetch command
06:38:32.870 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:object_type, :commit}, send_packfile=true
06:38:32.870 [info] UploadPackV2: collected 3 objects, generating pack
06:38:32.870 [info] UploadPackV2: pack generated, 381 bytes
06:38:32.870 [info] UploadPackV2: fetch response 403 bytes
.
06:38:32.928 [info] UploadPackV2: processing ls-refs command
.
06:38:32.976 [info] UploadPackV2: processing ls-refs command
..
06:38:33.036 [info] UploadPackV2: processing ls-refs command
06:38:33.037 [info] UploadPackV2: processing fetch command
06:38:33.037 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:38:33.038 [info] UploadPackV2: collected 9 objects, generating pack
06:38:33.038 [info] UploadPackV2: pack generated, 585 bytes
06:38:33.038 [info] UploadPackV2: fetch response 681 bytes
.
06:38:33.104 [info] UploadPackV2: processing ls-refs command
06:38:33.105 [info] UploadPackV2: processing fetch command
06:38:33.105 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:38:33.105 [info] UploadPackV2: collected 3 objects, generating pack
06:38:33.106 [info] UploadPackV2: pack generated, 216 bytes
06:38:33.106 [info] UploadPackV2: fetch response 312 bytes
.
06:38:33.168 [info] UploadPackV2: processing ls-refs command
06:38:33.169 [info] UploadPackV2: processing fetch command
06:38:33.169 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:33.170 [info] UploadPackV2: collected 9 objects, generating pack
06:38:33.170 [info] UploadPackV2: pack generated, 549 bytes
06:38:33.170 [info] UploadPackV2: fetch response 571 bytes
06:38:33.182 [info] UploadPackV2: processing fetch command
06:38:33.182 [info] UploadPackV2.handle_fetch: 0 wants, 3 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
06:38:33.182 [info] UploadPackV2: fetch response 171 bytes
..
06:38:33.232 [info] UploadPackV2: processing ls-refs command
.
06:38:33.284 [info] UploadPackV2: processing ls-refs command
06:38:33.286 [info] UploadPackV2: processing fetch command
06:38:33.286 [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
06:38:33.286 [info] UploadPackV2: collected 6 objects, generating pack
06:38:33.286 [info] UploadPackV2: pack generated, 513 bytes
06:38:33.286 [info] UploadPackV2: fetch response 535 bytes
.
06:38:33.348 [info] UploadPackV2: processing ls-refs command
06:38:33.350 [info] UploadPackV2: processing fetch command
06:38:33.350 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:sparse_oid, "4f00cd9a7367fae9a753bdda17205e0f324aa8ae"}, send_packfile=true
06:38:33.350 [info] UploadPackV2: collected 5 objects, generating pack
06:38:33.350 [info] UploadPackV2: pack generated, 319 bytes
06:38:33.350 [info] UploadPackV2: fetch response 341 bytes
.
06:38:33.416 [info] UploadPackV2: processing ls-refs command
06:38:33.417 [info] UploadPackV2: processing fetch command
06:38:33.418 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:38:33.418 [info] UploadPackV2: collected 3 objects, generating pack
06:38:33.418 [info] UploadPackV2: pack generated, 216 bytes
06:38:33.418 [info] UploadPackV2: fetch response 312 bytes
06:38:33.472 [info] UploadPackV2: processing ls-refs command
06:38:33.473 [info] UploadPackV2: processing fetch command
06:38:33.473 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:38:33.473 [info] UploadPackV2: collected 12 objects, generating pack
06:38:33.473 [info] UploadPackV2: pack generated, 768 bytes
06:38:33.473 [info] UploadPackV2: fetch response 1002 bytes
.
06:38:33.532 [info] UploadPackV2: processing ls-refs command
06:38:33.534 [info] UploadPackV2: processing fetch command
06:38:33.534 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter={:tree_depth, 0}, send_packfile=true
06:38:33.534 [info] UploadPackV2: collected 3 objects, generating pack
06:38:33.534 [info] UploadPackV2: pack generated, 381 bytes
06:38:33.534 [info] UploadPackV2: fetch response 403 bytes
.
06:38:33.600 [info] UploadPackV2: processing ls-refs command
06:38:33.602 [info] UploadPackV2: processing fetch command
06:38:33.602 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:38:33.602 [info] UploadPackV2: collected 6 objects, generating pack
06:38:33.602 [info] UploadPackV2: pack generated, 513 bytes
06:38:33.602 [info] UploadPackV2: fetch response 535 bytes
.
06:38:33.664 [info] UploadPackV2: processing ls-refs command
.
06:38:33.665 [info] The function passed as a handler with ID "graph-query-test-19970" 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
....
06:38:33.669 [info] The function passed as a handler with ID "rev-list-range-test-20226" 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
.
06:38:33.670 [info] The function passed as a handler with ID "graph-query-test-20354" 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
.
06:38:33.672 [info] The function passed as a handler with ID "rev-list-range-test-20548" 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
.....
06:38:33.674 [info] The function passed as a handler with ID "rev-list-range-test-20740" 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
...
06:38:33.676 [info] The function passed as a handler with ID "graph-query-test-4419" 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
.......
06:38:34.222 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :start]--576460752303392061" 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
06:38:34.222 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :read, :stop]--576460752303391997" 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
.
06:38:34.222 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :start]--576460752303391933" 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
06:38:34.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :protocol, :receive_pack, :stop]--576460752303391869" 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
.
06:38:34.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :start]--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
06:38:34.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :ref, :update, :stop]--576460752303391805" 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
.
06:38:34.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :start]--576460752303402943" 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
06:38:34.223 [info] The function passed as a handler with ID "test-[:ex_git_objectstore, :object, :write, :stop]--576460752303402879" 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
...........
06:38:34.244 [info] UploadPackV2: processing ls-refs command
06:38:34.245 [info] UploadPackV2: processing fetch command
06:38:34.245 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.246 [info] UploadPackV2: collected 180 objects, generating pack
06:38:34.248 [info] UploadPackV2: pack generated, 11106 bytes
06:38:34.248 [info] UploadPackV2: fetch response 11128 bytes
.
06:38:34.272 [info] UploadPackV2: processing ls-refs command
06:38:34.273 [info] UploadPackV2: processing fetch command
06:38:34.273 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.273 [info] UploadPackV2: collected 15 objects, generating pack
06:38:34.273 [info] UploadPackV2: pack generated, 919 bytes
06:38:34.273 [info] UploadPackV2: fetch response 941 bytes
.
06:38:34.297 [info] UploadPackV2: processing ls-refs command
06:38:34.298 [info] UploadPackV2: processing fetch command
06:38:34.298 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.299 [info] UploadPackV2: collected 9 objects, generating pack
06:38:34.299 [info] UploadPackV2: pack generated, 549 bytes
06:38:34.299 [info] UploadPackV2: fetch response 571 bytes
06:38:34.315 [info] UploadPackV2: processing ls-refs command
..
06:38:34.363 [info] UploadPackV2: processing ls-refs command
06:38:34.365 [info] UploadPackV2: processing fetch command
06:38:34.365 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.365 [info] UploadPackV2: collected 6 objects, generating pack
06:38:34.365 [info] UploadPackV2: pack generated, 366 bytes
06:38:34.365 [info] UploadPackV2: fetch response 388 bytes
06:38:34.383 [info] UploadPackV2: processing ls-refs command
.
06:38:34.440 [info] UploadPackV2: processing fetch command
06:38:34.440 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.440 [info] UploadPackV2: collected 3 objects, generating pack
06:38:34.440 [info] UploadPackV2: pack generated, 183 bytes
06:38:34.440 [info] UploadPackV2: fetch response 205 bytes
.
06:38:34.454 [info] UploadPackV2: processing ls-refs command
06:38:34.455 [info] UploadPackV2: processing fetch command
06:38:34.455 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.456 [info] UploadPackV2: collected 3 objects, generating pack
06:38:34.456 [info] UploadPackV2: pack generated, 183 bytes
06:38:34.456 [info] UploadPackV2: fetch response 205 bytes
.
06:38:34.524 [info] UploadPackV2: processing ls-refs command
06:38:34.525 [info] UploadPackV2: processing fetch command
06:38:34.526 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.526 [info] UploadPackV2: collected 6 objects, generating pack
06:38:34.526 [info] UploadPackV2: pack generated, 365 bytes
06:38:34.526 [info] UploadPackV2: fetch response 387 bytes
.
06:38:34.604 [info] UploadPackV2: processing ls-refs command
06:38:34.605 [info] UploadPackV2: processing fetch command
06:38:34.605 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:34.606 [info] UploadPackV2: collected 3 objects, generating pack
06:38:34.606 [info] UploadPackV2: pack generated, 201 bytes
06:38:34.606 [info] UploadPackV2: fetch response 223 bytes
.
06:38:52.660 [info] UploadPackV2: processing ls-refs command
06:38:52.662 [info] UploadPackV2: processing fetch command
06:38:52.662 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:38:52.662 [info] UploadPackV2: collected 3 objects, generating pack
06:38:52.662 [info] UploadPackV2: pack generated, 183 bytes
06:38:52.662 [info] UploadPackV2: fetch response 205 bytes
.
06:39:07.784 [info] UploadPackV2: processing ls-refs command
06:39:07.786 [info] UploadPackV2: processing fetch command
06:39:07.786 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:39:07.786 [info] UploadPackV2: collected 6 objects, generating pack
06:39:07.786 [info] UploadPackV2: pack generated, 365 bytes
06:39:07.786 [info] UploadPackV2: fetch response 387 bytes
..
06:39:40.923 [info] UploadPackV2: processing ls-refs command
06:39:40.925 [info] UploadPackV2: processing fetch command
06:39:40.925 [info] UploadPackV2.handle_fetch: 3 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:39:40.925 [info] UploadPackV2: collected 3 objects, generating pack
06:39:40.925 [info] UploadPackV2: pack generated, 183 bytes
06:39:40.925 [info] UploadPackV2: fetch response 205 bytes
.
06:39:41.031 [info] UploadPackV2: processing ls-refs command
06:39:41.033 [info] UploadPackV2: processing fetch command
06:39:41.033 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:39:41.033 [info] UploadPackV2: reused pack 240 bytes, 3 objects
06:39:41.033 [info] UploadPackV2: fetch response 262 bytes
......
06:41:20.234 [info] The function passed as a handler with ID "telemetry-test-31812" 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
.
06:41:20.234 [info] UploadPackV2: processing fetch command
06:41:20.234 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:41:20.234 [info] UploadPackV2: collected 3 objects, generating pack
06:41:20.234 [info] UploadPackV2: pack generated, 183 bytes
06:41:20.234 [info] UploadPackV2: fetch response 205 bytes
06:41:20.236 [info] The function passed as a handler with ID "telemetry-test-20866" 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
.
06:41:35.301 [info] The function passed as a handler with ID "telemetry-test-20930" 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
06:41:35.301 [info] UploadPackV2: processing fetch command
06:41:35.301 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=:blob_none, send_packfile=true
06:41:35.301 [info] UploadPackV2: collected 2 objects, generating pack
06:41:35.301 [info] UploadPackV2: pack generated, 169 bytes
06:41:35.301 [info] UploadPackV2: fetch response 191 bytes
.
06:41:35.302 [info] The function passed as a handler with ID "telemetry-test-5635" 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
06:41:35.302 [info] UploadPackV2: processing fetch command
06:41:35.302 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:35.302 [info] UploadPackV2: collected 3 objects, generating pack
06:41:35.302 [info] UploadPackV2: pack generated, 186 bytes
06:41:35.302 [info] UploadPackV2: fetch response 208 bytes
..........................****************
06:41:35.514 [info] UploadPackV2: processing ls-refs command
06:41:35.516 [info] UploadPackV2: processing fetch command
06:41:35.516 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:35.516 [info] UploadPackV2: collected 6 objects, generating pack
06:41:35.516 [info] UploadPackV2: pack generated, 365 bytes
06:41:35.516 [info] UploadPackV2: fetch response 387 bytes
06:41:36.894 [info] UploadPackV2: processing ls-refs command
.
06:41:36.958 [info] UploadPackV2: processing ls-refs command
06:41:36.959 [info] UploadPackV2: processing fetch command
06:41:36.959 [info] UploadPackV2.handle_fetch: 1 wants, 1 haves, done=false, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:41:36.959 [info] UploadPackV2: collected 3 objects, generating pack
06:41:36.959 [info] UploadPackV2: pack generated, 216 bytes
06:41:36.959 [info] UploadPackV2: fetch response 346 bytes
.
06:41:37.026 [info] UploadPackV2: processing ls-refs command
06:41:37.027 [info] UploadPackV2: processing fetch command
06:41:37.027 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:37.028 [info] UploadPackV2: collected 90 objects, generating pack
06:41:37.029 [info] UploadPackV2: pack generated, 5649 bytes
06:41:37.029 [info] UploadPackV2: fetch response 5671 bytes
06:41:37.214 [info] UploadPackV2: processing ls-refs command
.
06:41:37.270 [info] UploadPackV2: processing ls-refs command
06:41:37.272 [info] UploadPackV2: processing fetch command
06:41:37.272 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:37.272 [info] UploadPackV2: collected 6 objects, generating pack
06:41:37.272 [info] UploadPackV2: pack generated, 365 bytes
06:41:37.272 [info] UploadPackV2: fetch response 387 bytes
06:41:37.274 [info] UploadPackV2: processing ls-refs command
06:41:37.276 [info] UploadPackV2: processing fetch command
06:41:37.276 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:37.276 [info] UploadPackV2: collected 6 objects, generating pack
06:41:37.276 [info] UploadPackV2: pack generated, 365 bytes
06:41:37.276 [info] UploadPackV2: fetch response 387 bytes
.
06:41:40.279 [info] UploadPackV2: processing ls-refs command
06:41:40.282 [info] UploadPackV2: processing fetch command
06:41:40.282 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:40.282 [info] UploadPackV2: collected 6 objects, generating pack
06:41:40.282 [info] UploadPackV2: pack generated, 365 bytes
06:41:40.282 [info] UploadPackV2: fetch response 387 bytes
06:41:40.295 [info] UploadPackV2: processing fetch command
06:41:40.295 [info] UploadPackV2.handle_fetch: 0 wants, 2 haves, done=false, wait-for-done=true, shallow=false, filter=nil, send_packfile=false
06:41:40.295 [info] UploadPackV2: fetch response 122 bytes
.
06:41:40.347 [info] UploadPackV2: processing ls-refs command
06:41:40.348 [info] UploadPackV2: processing fetch command
06:41:40.348 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:40.349 [info] UploadPackV2: collected 9 objects, generating pack
06:41:40.349 [info] UploadPackV2: pack generated, 547 bytes
06:41:40.349 [info] UploadPackV2: fetch response 569 bytes
06:41:40.407 [info] UploadPackV2: processing ls-refs command
.
06:41:40.410 [info] UploadPackV2: processing fetch command
06:41:40.410 [info] UploadPackV2.handle_fetch: 1 wants, 3 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:40.410 [info] UploadPackV2: collected 3 objects, generating pack
06:41:40.410 [info] UploadPackV2: pack generated, 183 bytes
.
06:41:40.410 [info] UploadPackV2: fetch response 205 bytes
06:41:40.475 [info] UploadPackV2: processing ls-refs command
06:41:40.476 [info] UploadPackV2: processing fetch command
06:41:40.476 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:40.477 [info] UploadPackV2: collected 6 objects, generating pack
06:41:40.477 [info] UploadPackV2: pack generated, 365 bytes
06:41:40.477 [info] UploadPackV2: fetch response 387 bytes
.
06:41:55.531 [info] UploadPackV2: processing ls-refs command
06:41:55.532 [info] UploadPackV2: processing fetch command
06:41:55.532 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.533 [info] UploadPackV2: collected 6 objects, generating pack
06:41:55.533 [info] UploadPackV2: pack generated, 366 bytes
06:41:55.533 [info] UploadPackV2: fetch response 388 bytes
06:41:55.591 [info] UploadPackV2: processing ls-refs command
06:41:55.592 [info] UploadPackV2: processing fetch command
06:41:55.592 [info] UploadPackV2.handle_fetch: 1 wants, 2 haves, done=false, wait-for-done=false, shallow=false, filter=nil, send_packfile=false
06:41:55.592 [info] UploadPackV2: fetch response 32 bytes
06:41:55.592 [info] UploadPackV2: processing fetch command
06:41:55.592 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.592 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.592 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.592 [info] UploadPackV2: fetch response 205 bytes
.
06:41:55.597 [info] UploadPackV2: processing fetch command
06:41:55.597 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.597 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.597 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.597 [info] UploadPackV2: fetch response 205 bytes
06:41:55.597 [info] UploadPackV2: processing fetch command
06:41:55.597 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.598 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.598 [info] UploadPackV2: fetch response 205 bytes
06:41:55.598 [info] UploadPackV2: processing fetch command
06:41:55.598 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.598 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.599 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.599 [info] UploadPackV2: fetch response 205 bytes
06:41:55.599 [info] UploadPackV2: processing fetch command
06:41:55.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.599 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.599 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.599 [info] UploadPackV2: fetch response 205 bytes
06:41:55.599 [info] UploadPackV2: processing fetch command
06:41:55.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.599 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.599 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.599 [info] UploadPackV2: fetch response 205 bytes
06:41:55.599 [info] UploadPackV2: processing fetch command
06:41:55.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.599 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.599 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.599 [info] UploadPackV2: fetch response 205 bytes
06:41:55.599 [info] UploadPackV2: processing fetch command
06:41:55.599 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.599 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.600 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.600 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.600 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.600 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.600 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
.
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.600 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.600 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.600 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.600 [info] UploadPackV2: fetch response 205 bytes
06:41:55.600 [info] UploadPackV2: processing fetch command
06:41:55.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.601 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.601 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.601 [info] UploadPackV2: fetch response 205 bytes
06:41:55.601 [info] UploadPackV2: processing fetch command
06:41:55.601 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.601 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.601 [info] UploadPackV2: pack generated, 183 bytes
06:41:55.601 [info] UploadPackV2: fetch response 205 bytes
06:41:55.667 [info] UploadPackV2: processing ls-refs command
06:41:55.669 [info] UploadPackV2: processing fetch command
06:41:55.669 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.676 [info] UploadPackV2: collected 600 objects, generating pack
06:41:55.682 [info] UploadPackV2: pack generated, 45197 bytes
06:41:55.682 [info] UploadPackV2: fetch response 45219 bytes
.
06:41:55.747 [info] UploadPackV2: processing ls-refs command
.
06:41:55.795 [info] UploadPackV2: processing ls-refs command
.
06:41:55.867 [info] UploadPackV2: processing ls-refs command
06:41:55.869 [info] UploadPackV2: processing fetch command
06:41:55.869 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=true, filter=nil, send_packfile=true
06:41:55.869 [info] UploadPackV2: collected 3 objects, generating pack
06:41:55.869 [info] UploadPackV2: pack generated, 231 bytes
06:41:55.869 [info] UploadPackV2: fetch response 327 bytes
.
06:41:55.885 [info] UploadPackV2: processing fetch command
06:41:55.885 [info] UploadPackV2.handle_fetch: 1 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:55.885 [info] UploadPackV2: collected 0 objects, generating pack
06:41:55.885 [info] UploadPackV2: pack generated, 32 bytes
06:41:55.885 [info] UploadPackV2: fetch response 54 bytes
.
06:41:56.139 [info] UploadPackV2: processing ls-refs command
06:41:56.141 [info] UploadPackV2: processing fetch command
06:41:56.141 [info] UploadPackV2.handle_fetch: 2 wants, 0 haves, done=true, wait-for-done=false, shallow=false, filter=nil, send_packfile=true
06:41:56.143 [info] UploadPackV2: collected 240 objects, generating pack
06:41:56.144 [info] UploadPackV2: pack generated, 16258 bytes
06:41:56.144 [info] UploadPackV2: fetch response 16280 bytes
.
Finished in 206.1 seconds (4.8s async, 201.2s sync)
Result: 1066 passed (2 properties, 1064 tests), 16 skipped, 52 excluded
Exporting cover results ...
Run "mix test.coverage" once all exports complete
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
Analysis includes data from imported files
["/workspace/cover/default.coverdata"]
LCOV written to cover/lcov.info
Uploading 1 artifact(s)...
Uploaded 1 artifact(s)