hgitaly 17.8.3__tar.gz → 17.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hgitaly-17.8.3 → hgitaly-17.9.0}/.gitlab-ci.yml +8 -4
- {hgitaly-17.8.3 → hgitaly-17.9.0}/.hgtags +2 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/PKG-INFO +4 -4
- hgitaly-17.9.0/hgitaly/VERSION +1 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/diff.py +1 -1
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/repository.py +24 -1
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_mercurial_repository.py +12 -1
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/analysis_pb2.py +8 -8
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/analysis_pb2_grpc.py +39 -4
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/blob_pb2.py +32 -32
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/blob_pb2_grpc.py +123 -28
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/commit_pb2.py +100 -100
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/commit_pb2_grpc.py +347 -92
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/diff_pb2.py +48 -48
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/diff_pb2_grpc.py +165 -40
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/errors_pb2.py +4 -4
- hgitaly-17.9.0/hgitaly/stub/errors_pb2_grpc.py +29 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/lint_pb2.py +4 -11
- hgitaly-17.9.0/hgitaly/stub/lint_pb2_grpc.py +29 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_aux_git_pb2.py +9 -9
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_aux_git_pb2_grpc.py +67 -12
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_changeset_pb2.py +7 -7
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_changeset_pb2_grpc.py +39 -4
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_operations_pb2.py +19 -19
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_operations_pb2_grpc.py +81 -16
- hgitaly-17.9.0/hgitaly/stub/mercurial_repository_pb2.py +128 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/mercurial_repository_pb2_grpc.py +179 -44
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/operations_pb2.py +74 -74
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/operations_pb2_grpc.py +249 -64
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/ref_pb2.py +68 -68
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/ref_pb2_grpc.py +249 -64
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/remote_pb2.py +16 -16
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/remote_pb2_grpc.py +67 -12
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/repository_pb2.py +172 -172
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/repository_pb2_grpc.py +613 -168
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/server_pb2.py +6 -6
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/server_pb2_grpc.py +81 -16
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/shared_pb2.py +6 -6
- hgitaly-17.9.0/hgitaly/stub/shared_pb2_grpc.py +29 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly.egg-info/PKG-INFO +4 -4
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly.egg-info/requires.txt +3 -3
- {hgitaly-17.8.3 → hgitaly-17.9.0}/install-requirements.txt +3 -3
- hgitaly-17.9.0/lint +7 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/mercurial-repository.proto +6 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-repository_pb.rb +7 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/version.rb +1 -1
- {hgitaly-17.8.3 → hgitaly-17.9.0}/run-all-tests +6 -1
- {hgitaly-17.8.3 → hgitaly-17.9.0}/test-requirements.txt +1 -1
- hgitaly-17.8.3/hgitaly/VERSION +0 -1
- hgitaly-17.8.3/hgitaly/stub/errors_pb2_grpc.py +0 -4
- hgitaly-17.8.3/hgitaly/stub/lint_pb2_grpc.py +0 -4
- hgitaly-17.8.3/hgitaly/stub/mercurial_repository_pb2.py +0 -126
- hgitaly-17.8.3/hgitaly/stub/shared_pb2_grpc.py +0 -4
- hgitaly-17.8.3/lint +0 -3
- {hgitaly-17.8.3 → hgitaly-17.9.0}/.coveragerc +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/.hgignore +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/LICENSE +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/MANIFEST.in +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/README.md +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ci/heptapod-sftp-push +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ci/heptapod-sign-package +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ci/heptapod_known_hosts.ssh +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ci/upload-rhgitaly +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/conftest.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/dev-requirements.txt +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/examples/client.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/examples/client_list_lcft.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/generate-stubs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgext3rd/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgext3rd/hgitaly/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgext3rd/hgitaly/revset.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgext3rd/hgitaly/tests/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgext3rd/hgitaly/tests/test_revset.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgext3rd/hgitaly/tests/test_serve.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/branch.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/changelog.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/errors.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/feature.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/file_content.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/file_context.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/git.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/gitlab_ref.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/license_detector/GPL-2.sample +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/license_detector/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/license_detector/spdx-licenses.json +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/linguist/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/linguist/languages.json +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/logging.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/manifest.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/message.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/oid.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/pagination.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/path.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/peer.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/procutil.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/revision.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/revset.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/scripts.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/address.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/mono.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/prefork.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/tests/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/tests/test_address.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/tests/test_mono.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/tests/test_prefork.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/tests/test_worker.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/server/worker.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/analysis.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/blob.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/commit.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/diff.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/interceptors.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/mercurial_changeset.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/mercurial_operations.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/mercurial_repository.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/operations.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/ref.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/repository.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/server.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/fixture.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_analysis.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_blob.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_commit.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_default_branch.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_diff.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_mercurial_changeset.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_mercurial_operations.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_operations.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_ref.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_repository_service.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/service/tests/test_server.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/servicer.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/ssh.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stream.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/stub/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tag.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/bundle.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/context.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/authorized_keys +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/backup_additional_no_git.tar +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/id_ecdsa_user +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/known_hosts +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/ssh_host_ecdsa_key +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/ssh_host_ecdsa_key.pub +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/ssh_host_ed25519 +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/ssh_host_ed25519.pub +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/data/sshd_config +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/grpc.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/ssh.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/sshd.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/storage.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/tests/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/testing/tests/test_sshd.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/common.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_branch.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_diff.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_errors.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_feature.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_file_context.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_gitlab_ref.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_license_detector.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_linguist.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_manifest.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_messages.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_oid.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_peer.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_repository.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_revision.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_revset.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_servicer.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_stream.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_tag.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/tests/test_workdir.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/util.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly/workdir.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly.egg-info/SOURCES.txt +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly.egg-info/dependency_links.txt +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly.egg-info/entry_points.txt +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/hgitaly.egg-info/top_level.txt +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/analysis.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/blob.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/cleanup.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/cluster.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/commit.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/conflicts.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/diff.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/errors.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/hook.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/internal.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/lint.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/log.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/mercurial-aux-git.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/mercurial-changeset.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/mercurial-operations.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/namespace.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/objectpool.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/operations.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/packfile.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/partition.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/praefect.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/ref.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/remote.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/repository.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/server.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/service_config.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/shared.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/smarthttp.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/ssh.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/transaction.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/protos/wiki.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/.ruby-version +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/Gemfile +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/README.md +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/generate-grpc-lib +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/hgitaly.gemspec +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-aux-git_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-aux-git_services_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-changeset_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-changeset_services_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-operations_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-operations_services_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly/mercurial-repository_services_pb.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/lib/hgitaly.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/ruby/run.rb +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/Cargo.lock +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/Cargo.toml +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/Makefile +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/build-from-tarball.sh +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/check-line-width +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/README.md +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/mercurial.patch +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/any.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/api.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/compiler/plugin.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/descriptor.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/duration.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/empty.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/field_mask.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/source_context.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/struct.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/timestamp.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/type.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/dependencies/proto/google/protobuf/wrappers.proto +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/go-enry.rev +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/lint +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/mercurial.rev +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/Cargo.toml +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/build.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/clippy.toml +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/bundle.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/config.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/errors.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/generated/README.md +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/git.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/gitlab/mod.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/gitlab/reference.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/gitlab/revision.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/gitlab/state.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/glob.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/lib.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/main.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/mercurial.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/message.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/metadata.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/oid.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/process.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/repository/spawner.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/repository.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/analysis.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/blob.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/commit/find_commits.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/commit/get_tree_entries.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/commit/last_commits.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/commit/tree_entry.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/commit.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/diff.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/mercurial_aux_git.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/mercurial_repository.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/mod.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/ref.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/remote.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/repository.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/service/server.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/sidecar.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/ssh.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/streaming.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rhgitaly/src/util.rs +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/rs-enry.rev +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/rust/src-tarball.sh +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/setup.cfg +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/setup.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/__init__.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/comparison.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/conftest.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/gitaly.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/hgitaly_rhgitaly_comparison.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/rhgitaly.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_blob_tree.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_commit.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_comparison.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_diff.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_gitaly_server.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_mercurial_aux_git.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_mercurial_repository.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_operations.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_ref.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_remote.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_repository_service.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_rhgitaly_server.py +0 -0
- {hgitaly-17.8.3 → hgitaly-17.9.0}/tests_with_gitaly/test_server.py +0 -0
|
@@ -12,6 +12,8 @@ variables:
|
|
|
12
12
|
MERCURIAL_SHARE_FROM: /opt/mercurial/hg
|
|
13
13
|
CARGO_HOME: ${CI_PROJECT_DIR}/cargo_home
|
|
14
14
|
RHGITALY_EXECUTABLE: rust/target/debug/rhgitaly
|
|
15
|
+
PYTHON: /opt/heptapod/bin/python
|
|
16
|
+
PYTEST: /opt/heptapod/bin/pytest
|
|
15
17
|
|
|
16
18
|
workflow:
|
|
17
19
|
rules:
|
|
@@ -31,7 +33,7 @@ check-sdist:
|
|
|
31
33
|
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
32
34
|
- if: '$CI_COMMIT_BRANCH =~ /^branch\/(default,stable)$/'
|
|
33
35
|
- when: never
|
|
34
|
-
image: $BASE_IMAGES_MERCURIAL/hg-current
|
|
36
|
+
image: $BASE_IMAGES_MERCURIAL/hg-current:${CI_COMMIT_HG_BRANCH}
|
|
35
37
|
needs: []
|
|
36
38
|
script:
|
|
37
39
|
- rm -rf dist
|
|
@@ -39,7 +41,7 @@ check-sdist:
|
|
|
39
41
|
# most requirements will be preinstalled in the base image (taken from the
|
|
40
42
|
# default branch of HGitaly at time of image build), but they will be
|
|
41
43
|
# reexamined and any change will be tested.
|
|
42
|
-
-
|
|
44
|
+
- $PYTHON -m pip install dist/*.tar.gz
|
|
43
45
|
|
|
44
46
|
# used to mark job that should run for the 'default' branch of HGitaly only
|
|
45
47
|
.only_hgitaly_default:
|
|
@@ -52,8 +54,8 @@ check-sdist:
|
|
|
52
54
|
# usually the base image should have all that's needed
|
|
53
55
|
# but in case of changes in test dependencies, we may still
|
|
54
56
|
# need to install/update something.
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
+
- $PYTHON -m pip install -r test-requirements.txt
|
|
58
|
+
- $PYTHON -m pip freeze
|
|
57
59
|
- ./lint
|
|
58
60
|
- mkdir -p /run/sshd
|
|
59
61
|
script:
|
|
@@ -127,6 +129,8 @@ gitaly-comparison:
|
|
|
127
129
|
image: ${BASE_IMAGES_COLLECTION}/heptapod-gitaly:${CI_COMMIT_HG_BRANCH}
|
|
128
130
|
variables:
|
|
129
131
|
GITALY_INSTALL_DIR: /opt/gitlab/gitaly
|
|
132
|
+
PYTHON: python3.9
|
|
133
|
+
PYTEST: pytest
|
|
130
134
|
script:
|
|
131
135
|
- echo "Full test run with Gitaly and RHGitaly Comparison tests"
|
|
132
136
|
- ./run-all-tests
|
|
@@ -134,3 +134,5 @@ c9f24d13c3f7bbfc5453a4b92f33f0e96c212b51 2.7.2
|
|
|
134
134
|
d6cce24d89a8a37cd85398f063203d3075c1afd1 17.8.0
|
|
135
135
|
646eb4769d16649b8daff17647e1e92ec81e68c8 17.8.1
|
|
136
136
|
cb5acb3e763e63d908e6eec319b17a7faaabbe7c 17.8.2
|
|
137
|
+
e9f5b758dbc13eb7dc1f44b8246bbef0dcc74f1a 17.8.3
|
|
138
|
+
c2dc21a71ccd0cbe8c33ae9b8ff28128e0d977bd 17.8.4
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hgitaly
|
|
3
|
-
Version: 17.
|
|
3
|
+
Version: 17.9.0
|
|
4
4
|
Summary: Server-side implementation of Gitaly protocol for Mercurial
|
|
5
5
|
Home-page: https://foss.heptapod.net/heptapod/hgitaly
|
|
6
6
|
Author: Georges Racinet
|
|
@@ -11,9 +11,9 @@ Requires-Python: >=3.8
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
13
|
Requires-Dist: heptapod>=5.0.0dev0
|
|
14
|
-
Requires-Dist: protobuf~=
|
|
15
|
-
Requires-Dist: grpcio~=1.
|
|
16
|
-
Requires-Dist: grpcio-status~=1.
|
|
14
|
+
Requires-Dist: protobuf~=5.26.0
|
|
15
|
+
Requires-Dist: grpcio~=1.63.0
|
|
16
|
+
Requires-Dist: grpcio-status~=1.63.0
|
|
17
17
|
Requires-Dist: grpc-interceptor
|
|
18
18
|
Requires-Dist: hg-loggingmod>=0.4.1
|
|
19
19
|
Requires-Dist: psutil
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
17.9.0
|
|
@@ -366,7 +366,7 @@ def run_git_patch_id(git_path, writer):
|
|
|
366
366
|
|
|
367
367
|
:param writer: a callable writing the diff content to a file-like object
|
|
368
368
|
"""
|
|
369
|
-
git = subprocess.Popen((git_path, b'patch-id'),
|
|
369
|
+
git = subprocess.Popen((git_path, b'patch-id', b'--verbatim'),
|
|
370
370
|
stdin=subprocess.PIPE,
|
|
371
371
|
stdout=subprocess.PIPE,
|
|
372
372
|
stderr=subprocess.PIPE)
|
|
@@ -20,6 +20,7 @@ from .stub.mercurial_repository_pb2 import (
|
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
AutoPublish = HeptapodConfigSection.AutoPublish
|
|
23
|
+
CloneBundles = HeptapodConfigSection.CloneBundles
|
|
23
24
|
|
|
24
25
|
GITLAB_PROJECT_FULL_PATH_FILENAME = b'gitlab.project_full_path'
|
|
25
26
|
MAIN_HGRC_FILE = b'hgrc'
|
|
@@ -29,6 +30,7 @@ HGRC_INCL_INHERIT_RX = re.compile(br'^%include (.*)/hgrc$', re.MULTILINE)
|
|
|
29
30
|
HEPTAPOD_CONFIG_SECTION = b'heptapod'
|
|
30
31
|
# TODO would be nice to import these from hgext3rd.heptapod
|
|
31
32
|
HEPTAPOD_CONFIG_AUTO_PUBLISH = b'auto-publish'
|
|
33
|
+
HEPTAPOD_CONFIG_CLONE_BUNDLES = b'clone-bundles'
|
|
32
34
|
HEPTAPOD_CONFIG_ALLOW_BOOKMARKS = b'allow-bookmarks'
|
|
33
35
|
HEPTAPOD_CONFIG_ALLOW_MULTIPLE_HEADS = b'allow-multiple-heads'
|
|
34
36
|
AUTO_PUBLISH_MAPPING = {
|
|
@@ -37,6 +39,14 @@ AUTO_PUBLISH_MAPPING = {
|
|
|
37
39
|
b'all': AutoPublish.ALL,
|
|
38
40
|
}
|
|
39
41
|
AUTO_PUBLISH_REVERSE_MAPPING = {v: k for k, v in AUTO_PUBLISH_MAPPING.items()}
|
|
42
|
+
CLONE_BUNDLES_MAPPING = {
|
|
43
|
+
b'disabled': CloneBundles.DISABLED,
|
|
44
|
+
b'explicit': CloneBundles.EXPLICIT,
|
|
45
|
+
b'on-change': CloneBundles.ON_CHANGE,
|
|
46
|
+
}
|
|
47
|
+
CLONE_BUNDLES_REVERSE_MAPPING = {
|
|
48
|
+
v: k for k, v in CLONE_BUNDLES_MAPPING.items()
|
|
49
|
+
}
|
|
40
50
|
|
|
41
51
|
|
|
42
52
|
def unbundle(repo, bundle_path: str, rails_sync=False):
|
|
@@ -94,6 +104,12 @@ def heptapod_ui_config(ui, as_recorded=False) -> HeptapodConfigSection:
|
|
|
94
104
|
if auto_pub is not None or not as_recorded:
|
|
95
105
|
fields['auto_publish'] = AUTO_PUBLISH_MAPPING.get(auto_pub)
|
|
96
106
|
|
|
107
|
+
clone_bundles = ui.config(HEPTAPOD_CONFIG_SECTION,
|
|
108
|
+
HEPTAPOD_CONFIG_CLONE_BUNDLES)
|
|
109
|
+
|
|
110
|
+
if clone_bundles is not None or not as_recorded:
|
|
111
|
+
fields['clone_bundles'] = CLONE_BUNDLES_MAPPING.get(clone_bundles)
|
|
112
|
+
|
|
97
113
|
for field, key in (
|
|
98
114
|
('allow_multiple_heads', HEPTAPOD_CONFIG_ALLOW_MULTIPLE_HEADS),
|
|
99
115
|
('allow_bookmarks', HEPTAPOD_CONFIG_ALLOW_BOOKMARKS),
|
|
@@ -150,6 +166,12 @@ def replace_heptapod_managed_config(repo, items, by_line):
|
|
|
150
166
|
fobj.write(AUTO_PUBLISH_REVERSE_MAPPING[auto_pub])
|
|
151
167
|
fobj.write(b"\n")
|
|
152
168
|
|
|
169
|
+
clone_bundles = items.get('clone_bundles')
|
|
170
|
+
if clone_bundles is not None:
|
|
171
|
+
fobj.write(b"clone-bundles = ")
|
|
172
|
+
fobj.write(CLONE_BUNDLES_REVERSE_MAPPING[clone_bundles])
|
|
173
|
+
fobj.write(b"\n")
|
|
174
|
+
|
|
153
175
|
for field in ('allow_bookmarks', 'allow_multiple_heads'):
|
|
154
176
|
val = items.get(field)
|
|
155
177
|
if val is None:
|
|
@@ -177,7 +199,8 @@ def set_managed_config(repo, heptapod: HeptapodConfigSection,
|
|
|
177
199
|
remove_items, by_line):
|
|
178
200
|
existing = heptapod_local_config(repo)
|
|
179
201
|
items = {}
|
|
180
|
-
for field in ('allow_bookmarks', 'allow_multiple_heads',
|
|
202
|
+
for field in ('allow_bookmarks', 'allow_multiple_heads',
|
|
203
|
+
'auto_publish', 'clone_bundles'):
|
|
181
204
|
if field in remove_items:
|
|
182
205
|
continue
|
|
183
206
|
|
|
@@ -39,6 +39,7 @@ from hgitaly.stub.mercurial_repository_pb2_grpc import (
|
|
|
39
39
|
from .fixture import ServiceFixture
|
|
40
40
|
|
|
41
41
|
AutoPublish = HeptapodConfigSection.AutoPublish
|
|
42
|
+
CloneBundles = HeptapodConfigSection.CloneBundles
|
|
42
43
|
|
|
43
44
|
parametrize = pytest.mark.parametrize
|
|
44
45
|
|
|
@@ -183,6 +184,15 @@ def test_set_managed_config(config_fixture):
|
|
|
183
184
|
assert section.auto_publish == AutoPublish.NOTHING
|
|
184
185
|
assert get_config().heptapod.allow_multiple_heads is True # control
|
|
185
186
|
|
|
187
|
+
set_config(
|
|
188
|
+
heptapod=HeptapodConfigSection(clone_bundles=CloneBundles.EXPLICIT),
|
|
189
|
+
by_line="by user interested in bundles"
|
|
190
|
+
)
|
|
191
|
+
section = get_config(local=True).heptapod
|
|
192
|
+
assert not section.HasField('allow_multiple_heads')
|
|
193
|
+
assert section.HasField('clone_bundles')
|
|
194
|
+
assert section.clone_bundles == CloneBundles.EXPLICIT
|
|
195
|
+
|
|
186
196
|
# to check whether the managed file actually overrides a setting
|
|
187
197
|
# and even if inclusion is missing
|
|
188
198
|
config_fixture.write_main_hgrc('[heptapod]', 'allow-bookmarks = yes', '',
|
|
@@ -210,7 +220,8 @@ def test_set_managed_config(config_fixture):
|
|
|
210
220
|
assert get_config().heptapod.allow_bookmarks
|
|
211
221
|
|
|
212
222
|
# removing everything and testing by_line
|
|
213
|
-
set_config(remove_items=('allow_bookmarks', 'auto_publish'
|
|
223
|
+
set_config(remove_items=('allow_bookmarks', 'auto_publish',
|
|
224
|
+
'clone_bundles'),
|
|
214
225
|
by_line='by erasor')
|
|
215
226
|
managed_lines = config_fixture.hgrc_path().read_text().splitlines()
|
|
216
227
|
assert not managed_lines[0].startswith('[')
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: analysis.proto
|
|
4
|
+
# Protobuf Python Version: 5.26.1
|
|
4
5
|
"""Generated protocol buffer code."""
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -20,14 +21,13 @@ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0e\x61nalysis.pr
|
|
|
20
21
|
_globals = globals()
|
|
21
22
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
23
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'analysis_pb2', _globals)
|
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS
|
|
24
|
-
|
|
25
|
-
DESCRIPTOR.
|
|
26
|
-
|
|
27
|
-
_CHECKBLOBSGENERATEDREQUEST.fields_by_name['repository'].
|
|
28
|
-
|
|
29
|
-
_ANALYSISSERVICE.methods_by_name['CheckBlobsGenerated'].
|
|
30
|
-
_ANALYSISSERVICE.methods_by_name['CheckBlobsGenerated']._serialized_options = b'\372\227(\002\010\002'
|
|
24
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
25
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
26
|
+
_globals['DESCRIPTOR']._serialized_options = b'Z2gitlab.com/gitlab-org/gitaly/v16/proto/go/gitalypb'
|
|
27
|
+
_globals['_CHECKBLOBSGENERATEDREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
28
|
+
_globals['_CHECKBLOBSGENERATEDREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
29
|
+
_globals['_ANALYSISSERVICE'].methods_by_name['CheckBlobsGenerated']._loaded_options = None
|
|
30
|
+
_globals['_ANALYSISSERVICE'].methods_by_name['CheckBlobsGenerated']._serialized_options = b'\372\227(\002\010\002'
|
|
31
31
|
_globals['_CHECKBLOBSGENERATEDREQUEST']._serialized_start=53
|
|
32
32
|
_globals['_CHECKBLOBSGENERATEDREQUEST']._serialized_end=223
|
|
33
33
|
_globals['_CHECKBLOBSGENERATEDREQUEST_BLOB']._serialized_start=185
|
|
@@ -1,9 +1,34 @@
|
|
|
1
1
|
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
2
|
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
3
|
import grpc
|
|
4
|
+
import warnings
|
|
4
5
|
|
|
5
6
|
from . import analysis_pb2 as analysis__pb2
|
|
6
7
|
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.63.2'
|
|
9
|
+
GRPC_VERSION = grpc.__version__
|
|
10
|
+
EXPECTED_ERROR_RELEASE = '1.65.0'
|
|
11
|
+
SCHEDULED_RELEASE_DATE = 'June 25, 2024'
|
|
12
|
+
_version_not_supported = False
|
|
13
|
+
|
|
14
|
+
try:
|
|
15
|
+
from grpc._utilities import first_version_is_lower
|
|
16
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
17
|
+
except ImportError:
|
|
18
|
+
_version_not_supported = True
|
|
19
|
+
|
|
20
|
+
if _version_not_supported:
|
|
21
|
+
warnings.warn(
|
|
22
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
23
|
+
+ f' but the generated code in analysis_pb2_grpc.py depends on'
|
|
24
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
25
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
26
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
27
|
+
+ f' This warning will become an error in {EXPECTED_ERROR_RELEASE},'
|
|
28
|
+
+ f' scheduled for release on {SCHEDULED_RELEASE_DATE}.',
|
|
29
|
+
RuntimeWarning
|
|
30
|
+
)
|
|
31
|
+
|
|
7
32
|
|
|
8
33
|
class AnalysisServiceStub(object):
|
|
9
34
|
"""AnalysisService is a gRPC service providing RPCs that analyze objects in a repository.
|
|
@@ -19,7 +44,7 @@ class AnalysisServiceStub(object):
|
|
|
19
44
|
'/gitaly.AnalysisService/CheckBlobsGenerated',
|
|
20
45
|
request_serializer=analysis__pb2.CheckBlobsGeneratedRequest.SerializeToString,
|
|
21
46
|
response_deserializer=analysis__pb2.CheckBlobsGeneratedResponse.FromString,
|
|
22
|
-
)
|
|
47
|
+
_registered_method=True)
|
|
23
48
|
|
|
24
49
|
|
|
25
50
|
class AnalysisServiceServicer(object):
|
|
@@ -71,8 +96,18 @@ class AnalysisService(object):
|
|
|
71
96
|
wait_for_ready=None,
|
|
72
97
|
timeout=None,
|
|
73
98
|
metadata=None):
|
|
74
|
-
return grpc.experimental.stream_stream(
|
|
99
|
+
return grpc.experimental.stream_stream(
|
|
100
|
+
request_iterator,
|
|
101
|
+
target,
|
|
102
|
+
'/gitaly.AnalysisService/CheckBlobsGenerated',
|
|
75
103
|
analysis__pb2.CheckBlobsGeneratedRequest.SerializeToString,
|
|
76
104
|
analysis__pb2.CheckBlobsGeneratedResponse.FromString,
|
|
77
|
-
options,
|
|
78
|
-
|
|
105
|
+
options,
|
|
106
|
+
channel_credentials,
|
|
107
|
+
insecure,
|
|
108
|
+
call_credentials,
|
|
109
|
+
compression,
|
|
110
|
+
wait_for_ready,
|
|
111
|
+
timeout,
|
|
112
|
+
metadata,
|
|
113
|
+
_registered_method=True)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: blob.proto
|
|
4
|
+
# Protobuf Python Version: 5.26.1
|
|
4
5
|
"""Generated protocol buffer code."""
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -20,38 +21,37 @@ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\nblob.proto\x12\x
|
|
|
20
21
|
_globals = globals()
|
|
21
22
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
23
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'blob_pb2', _globals)
|
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS
|
|
24
|
-
|
|
25
|
-
DESCRIPTOR.
|
|
26
|
-
|
|
27
|
-
_GETBLOBREQUEST.fields_by_name['repository'].
|
|
28
|
-
|
|
29
|
-
_GETBLOBSREQUEST.fields_by_name['repository'].
|
|
30
|
-
|
|
31
|
-
_LISTBLOBSREQUEST.fields_by_name['repository'].
|
|
32
|
-
|
|
33
|
-
_LISTALLBLOBSREQUEST.fields_by_name['repository'].
|
|
34
|
-
|
|
35
|
-
_GETLFSPOINTERSREQUEST.fields_by_name['repository'].
|
|
36
|
-
|
|
37
|
-
_LISTLFSPOINTERSREQUEST.fields_by_name['repository'].
|
|
38
|
-
|
|
39
|
-
_LISTALLLFSPOINTERSREQUEST.fields_by_name['repository'].
|
|
40
|
-
|
|
41
|
-
_BLOBSERVICE.methods_by_name['GetBlob'].
|
|
42
|
-
_BLOBSERVICE.methods_by_name['
|
|
43
|
-
_BLOBSERVICE.methods_by_name['GetBlobs'].
|
|
44
|
-
_BLOBSERVICE.methods_by_name['
|
|
45
|
-
_BLOBSERVICE.methods_by_name['ListBlobs'].
|
|
46
|
-
_BLOBSERVICE.methods_by_name['
|
|
47
|
-
_BLOBSERVICE.methods_by_name['ListAllBlobs'].
|
|
48
|
-
_BLOBSERVICE.methods_by_name['
|
|
49
|
-
_BLOBSERVICE.methods_by_name['GetLFSPointers'].
|
|
50
|
-
_BLOBSERVICE.methods_by_name['
|
|
51
|
-
_BLOBSERVICE.methods_by_name['ListLFSPointers'].
|
|
52
|
-
_BLOBSERVICE.methods_by_name['
|
|
53
|
-
_BLOBSERVICE.methods_by_name['ListAllLFSPointers'].
|
|
54
|
-
_BLOBSERVICE.methods_by_name['ListAllLFSPointers']._serialized_options = b'\372\227(\002\010\002'
|
|
24
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
25
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
26
|
+
_globals['DESCRIPTOR']._serialized_options = b'Z2gitlab.com/gitlab-org/gitaly/v16/proto/go/gitalypb'
|
|
27
|
+
_globals['_GETBLOBREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
28
|
+
_globals['_GETBLOBREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
29
|
+
_globals['_GETBLOBSREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
30
|
+
_globals['_GETBLOBSREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
31
|
+
_globals['_LISTBLOBSREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
32
|
+
_globals['_LISTBLOBSREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
33
|
+
_globals['_LISTALLBLOBSREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
34
|
+
_globals['_LISTALLBLOBSREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
35
|
+
_globals['_GETLFSPOINTERSREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
36
|
+
_globals['_GETLFSPOINTERSREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
37
|
+
_globals['_LISTLFSPOINTERSREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
38
|
+
_globals['_LISTLFSPOINTERSREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
39
|
+
_globals['_LISTALLLFSPOINTERSREQUEST'].fields_by_name['repository']._loaded_options = None
|
|
40
|
+
_globals['_LISTALLLFSPOINTERSREQUEST'].fields_by_name['repository']._serialized_options = b'\230\306,\001'
|
|
41
|
+
_globals['_BLOBSERVICE'].methods_by_name['GetBlob']._loaded_options = None
|
|
42
|
+
_globals['_BLOBSERVICE'].methods_by_name['GetBlob']._serialized_options = b'\372\227(\002\010\002'
|
|
43
|
+
_globals['_BLOBSERVICE'].methods_by_name['GetBlobs']._loaded_options = None
|
|
44
|
+
_globals['_BLOBSERVICE'].methods_by_name['GetBlobs']._serialized_options = b'\372\227(\002\010\002'
|
|
45
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListBlobs']._loaded_options = None
|
|
46
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListBlobs']._serialized_options = b'\372\227(\002\010\002'
|
|
47
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListAllBlobs']._loaded_options = None
|
|
48
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListAllBlobs']._serialized_options = b'\372\227(\002\010\002'
|
|
49
|
+
_globals['_BLOBSERVICE'].methods_by_name['GetLFSPointers']._loaded_options = None
|
|
50
|
+
_globals['_BLOBSERVICE'].methods_by_name['GetLFSPointers']._serialized_options = b'\372\227(\002\010\002'
|
|
51
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListLFSPointers']._loaded_options = None
|
|
52
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListLFSPointers']._serialized_options = b'\372\227(\002\010\002'
|
|
53
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListAllLFSPointers']._loaded_options = None
|
|
54
|
+
_globals['_BLOBSERVICE'].methods_by_name['ListAllLFSPointers']._serialized_options = b'\372\227(\002\010\002'
|
|
55
55
|
_globals['_GETBLOBREQUEST']._serialized_start=48
|
|
56
56
|
_globals['_GETBLOBREQUEST']._serialized_end=138
|
|
57
57
|
_globals['_GETBLOBRESPONSE']._serialized_start=140
|
|
@@ -1,9 +1,34 @@
|
|
|
1
1
|
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
2
|
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
3
|
import grpc
|
|
4
|
+
import warnings
|
|
4
5
|
|
|
5
6
|
from . import blob_pb2 as blob__pb2
|
|
6
7
|
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.63.2'
|
|
9
|
+
GRPC_VERSION = grpc.__version__
|
|
10
|
+
EXPECTED_ERROR_RELEASE = '1.65.0'
|
|
11
|
+
SCHEDULED_RELEASE_DATE = 'June 25, 2024'
|
|
12
|
+
_version_not_supported = False
|
|
13
|
+
|
|
14
|
+
try:
|
|
15
|
+
from grpc._utilities import first_version_is_lower
|
|
16
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
17
|
+
except ImportError:
|
|
18
|
+
_version_not_supported = True
|
|
19
|
+
|
|
20
|
+
if _version_not_supported:
|
|
21
|
+
warnings.warn(
|
|
22
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
23
|
+
+ f' but the generated code in blob_pb2_grpc.py depends on'
|
|
24
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
25
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
26
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
27
|
+
+ f' This warning will become an error in {EXPECTED_ERROR_RELEASE},'
|
|
28
|
+
+ f' scheduled for release on {SCHEDULED_RELEASE_DATE}.',
|
|
29
|
+
RuntimeWarning
|
|
30
|
+
)
|
|
31
|
+
|
|
7
32
|
|
|
8
33
|
class BlobServiceStub(object):
|
|
9
34
|
"""BlobService is a service which provides RPCs to retrieve Git blobs from a
|
|
@@ -20,37 +45,37 @@ class BlobServiceStub(object):
|
|
|
20
45
|
'/gitaly.BlobService/GetBlob',
|
|
21
46
|
request_serializer=blob__pb2.GetBlobRequest.SerializeToString,
|
|
22
47
|
response_deserializer=blob__pb2.GetBlobResponse.FromString,
|
|
23
|
-
)
|
|
48
|
+
_registered_method=True)
|
|
24
49
|
self.GetBlobs = channel.unary_stream(
|
|
25
50
|
'/gitaly.BlobService/GetBlobs',
|
|
26
51
|
request_serializer=blob__pb2.GetBlobsRequest.SerializeToString,
|
|
27
52
|
response_deserializer=blob__pb2.GetBlobsResponse.FromString,
|
|
28
|
-
)
|
|
53
|
+
_registered_method=True)
|
|
29
54
|
self.ListBlobs = channel.unary_stream(
|
|
30
55
|
'/gitaly.BlobService/ListBlobs',
|
|
31
56
|
request_serializer=blob__pb2.ListBlobsRequest.SerializeToString,
|
|
32
57
|
response_deserializer=blob__pb2.ListBlobsResponse.FromString,
|
|
33
|
-
)
|
|
58
|
+
_registered_method=True)
|
|
34
59
|
self.ListAllBlobs = channel.unary_stream(
|
|
35
60
|
'/gitaly.BlobService/ListAllBlobs',
|
|
36
61
|
request_serializer=blob__pb2.ListAllBlobsRequest.SerializeToString,
|
|
37
62
|
response_deserializer=blob__pb2.ListAllBlobsResponse.FromString,
|
|
38
|
-
)
|
|
63
|
+
_registered_method=True)
|
|
39
64
|
self.GetLFSPointers = channel.unary_stream(
|
|
40
65
|
'/gitaly.BlobService/GetLFSPointers',
|
|
41
66
|
request_serializer=blob__pb2.GetLFSPointersRequest.SerializeToString,
|
|
42
67
|
response_deserializer=blob__pb2.GetLFSPointersResponse.FromString,
|
|
43
|
-
)
|
|
68
|
+
_registered_method=True)
|
|
44
69
|
self.ListLFSPointers = channel.unary_stream(
|
|
45
70
|
'/gitaly.BlobService/ListLFSPointers',
|
|
46
71
|
request_serializer=blob__pb2.ListLFSPointersRequest.SerializeToString,
|
|
47
72
|
response_deserializer=blob__pb2.ListLFSPointersResponse.FromString,
|
|
48
|
-
)
|
|
73
|
+
_registered_method=True)
|
|
49
74
|
self.ListAllLFSPointers = channel.unary_stream(
|
|
50
75
|
'/gitaly.BlobService/ListAllLFSPointers',
|
|
51
76
|
request_serializer=blob__pb2.ListAllLFSPointersRequest.SerializeToString,
|
|
52
77
|
response_deserializer=blob__pb2.ListAllLFSPointersResponse.FromString,
|
|
53
|
-
)
|
|
78
|
+
_registered_method=True)
|
|
54
79
|
|
|
55
80
|
|
|
56
81
|
class BlobServiceServicer(object):
|
|
@@ -184,11 +209,21 @@ class BlobService(object):
|
|
|
184
209
|
wait_for_ready=None,
|
|
185
210
|
timeout=None,
|
|
186
211
|
metadata=None):
|
|
187
|
-
return grpc.experimental.unary_stream(
|
|
212
|
+
return grpc.experimental.unary_stream(
|
|
213
|
+
request,
|
|
214
|
+
target,
|
|
215
|
+
'/gitaly.BlobService/GetBlob',
|
|
188
216
|
blob__pb2.GetBlobRequest.SerializeToString,
|
|
189
217
|
blob__pb2.GetBlobResponse.FromString,
|
|
190
|
-
options,
|
|
191
|
-
|
|
218
|
+
options,
|
|
219
|
+
channel_credentials,
|
|
220
|
+
insecure,
|
|
221
|
+
call_credentials,
|
|
222
|
+
compression,
|
|
223
|
+
wait_for_ready,
|
|
224
|
+
timeout,
|
|
225
|
+
metadata,
|
|
226
|
+
_registered_method=True)
|
|
192
227
|
|
|
193
228
|
@staticmethod
|
|
194
229
|
def GetBlobs(request,
|
|
@@ -201,11 +236,21 @@ class BlobService(object):
|
|
|
201
236
|
wait_for_ready=None,
|
|
202
237
|
timeout=None,
|
|
203
238
|
metadata=None):
|
|
204
|
-
return grpc.experimental.unary_stream(
|
|
239
|
+
return grpc.experimental.unary_stream(
|
|
240
|
+
request,
|
|
241
|
+
target,
|
|
242
|
+
'/gitaly.BlobService/GetBlobs',
|
|
205
243
|
blob__pb2.GetBlobsRequest.SerializeToString,
|
|
206
244
|
blob__pb2.GetBlobsResponse.FromString,
|
|
207
|
-
options,
|
|
208
|
-
|
|
245
|
+
options,
|
|
246
|
+
channel_credentials,
|
|
247
|
+
insecure,
|
|
248
|
+
call_credentials,
|
|
249
|
+
compression,
|
|
250
|
+
wait_for_ready,
|
|
251
|
+
timeout,
|
|
252
|
+
metadata,
|
|
253
|
+
_registered_method=True)
|
|
209
254
|
|
|
210
255
|
@staticmethod
|
|
211
256
|
def ListBlobs(request,
|
|
@@ -218,11 +263,21 @@ class BlobService(object):
|
|
|
218
263
|
wait_for_ready=None,
|
|
219
264
|
timeout=None,
|
|
220
265
|
metadata=None):
|
|
221
|
-
return grpc.experimental.unary_stream(
|
|
266
|
+
return grpc.experimental.unary_stream(
|
|
267
|
+
request,
|
|
268
|
+
target,
|
|
269
|
+
'/gitaly.BlobService/ListBlobs',
|
|
222
270
|
blob__pb2.ListBlobsRequest.SerializeToString,
|
|
223
271
|
blob__pb2.ListBlobsResponse.FromString,
|
|
224
|
-
options,
|
|
225
|
-
|
|
272
|
+
options,
|
|
273
|
+
channel_credentials,
|
|
274
|
+
insecure,
|
|
275
|
+
call_credentials,
|
|
276
|
+
compression,
|
|
277
|
+
wait_for_ready,
|
|
278
|
+
timeout,
|
|
279
|
+
metadata,
|
|
280
|
+
_registered_method=True)
|
|
226
281
|
|
|
227
282
|
@staticmethod
|
|
228
283
|
def ListAllBlobs(request,
|
|
@@ -235,11 +290,21 @@ class BlobService(object):
|
|
|
235
290
|
wait_for_ready=None,
|
|
236
291
|
timeout=None,
|
|
237
292
|
metadata=None):
|
|
238
|
-
return grpc.experimental.unary_stream(
|
|
293
|
+
return grpc.experimental.unary_stream(
|
|
294
|
+
request,
|
|
295
|
+
target,
|
|
296
|
+
'/gitaly.BlobService/ListAllBlobs',
|
|
239
297
|
blob__pb2.ListAllBlobsRequest.SerializeToString,
|
|
240
298
|
blob__pb2.ListAllBlobsResponse.FromString,
|
|
241
|
-
options,
|
|
242
|
-
|
|
299
|
+
options,
|
|
300
|
+
channel_credentials,
|
|
301
|
+
insecure,
|
|
302
|
+
call_credentials,
|
|
303
|
+
compression,
|
|
304
|
+
wait_for_ready,
|
|
305
|
+
timeout,
|
|
306
|
+
metadata,
|
|
307
|
+
_registered_method=True)
|
|
243
308
|
|
|
244
309
|
@staticmethod
|
|
245
310
|
def GetLFSPointers(request,
|
|
@@ -252,11 +317,21 @@ class BlobService(object):
|
|
|
252
317
|
wait_for_ready=None,
|
|
253
318
|
timeout=None,
|
|
254
319
|
metadata=None):
|
|
255
|
-
return grpc.experimental.unary_stream(
|
|
320
|
+
return grpc.experimental.unary_stream(
|
|
321
|
+
request,
|
|
322
|
+
target,
|
|
323
|
+
'/gitaly.BlobService/GetLFSPointers',
|
|
256
324
|
blob__pb2.GetLFSPointersRequest.SerializeToString,
|
|
257
325
|
blob__pb2.GetLFSPointersResponse.FromString,
|
|
258
|
-
options,
|
|
259
|
-
|
|
326
|
+
options,
|
|
327
|
+
channel_credentials,
|
|
328
|
+
insecure,
|
|
329
|
+
call_credentials,
|
|
330
|
+
compression,
|
|
331
|
+
wait_for_ready,
|
|
332
|
+
timeout,
|
|
333
|
+
metadata,
|
|
334
|
+
_registered_method=True)
|
|
260
335
|
|
|
261
336
|
@staticmethod
|
|
262
337
|
def ListLFSPointers(request,
|
|
@@ -269,11 +344,21 @@ class BlobService(object):
|
|
|
269
344
|
wait_for_ready=None,
|
|
270
345
|
timeout=None,
|
|
271
346
|
metadata=None):
|
|
272
|
-
return grpc.experimental.unary_stream(
|
|
347
|
+
return grpc.experimental.unary_stream(
|
|
348
|
+
request,
|
|
349
|
+
target,
|
|
350
|
+
'/gitaly.BlobService/ListLFSPointers',
|
|
273
351
|
blob__pb2.ListLFSPointersRequest.SerializeToString,
|
|
274
352
|
blob__pb2.ListLFSPointersResponse.FromString,
|
|
275
|
-
options,
|
|
276
|
-
|
|
353
|
+
options,
|
|
354
|
+
channel_credentials,
|
|
355
|
+
insecure,
|
|
356
|
+
call_credentials,
|
|
357
|
+
compression,
|
|
358
|
+
wait_for_ready,
|
|
359
|
+
timeout,
|
|
360
|
+
metadata,
|
|
361
|
+
_registered_method=True)
|
|
277
362
|
|
|
278
363
|
@staticmethod
|
|
279
364
|
def ListAllLFSPointers(request,
|
|
@@ -286,8 +371,18 @@ class BlobService(object):
|
|
|
286
371
|
wait_for_ready=None,
|
|
287
372
|
timeout=None,
|
|
288
373
|
metadata=None):
|
|
289
|
-
return grpc.experimental.unary_stream(
|
|
374
|
+
return grpc.experimental.unary_stream(
|
|
375
|
+
request,
|
|
376
|
+
target,
|
|
377
|
+
'/gitaly.BlobService/ListAllLFSPointers',
|
|
290
378
|
blob__pb2.ListAllLFSPointersRequest.SerializeToString,
|
|
291
379
|
blob__pb2.ListAllLFSPointersResponse.FromString,
|
|
292
|
-
options,
|
|
293
|
-
|
|
380
|
+
options,
|
|
381
|
+
channel_credentials,
|
|
382
|
+
insecure,
|
|
383
|
+
call_credentials,
|
|
384
|
+
compression,
|
|
385
|
+
wait_for_ready,
|
|
386
|
+
timeout,
|
|
387
|
+
metadata,
|
|
388
|
+
_registered_method=True)
|