As we reevaluate how to best support and maintain Staging Ref in the future, we encourage development teams using this environment to highlight their use cases in the following issue: https://gitlab.com/gitlab-com/gl-infra/software-delivery/framework/software-delivery-framework-issue-tracker/-/issues/36.

Skip to content
Snippets Groups Projects
Commit f2b068a8 authored by Patrick Bajao's avatar Patrick Bajao
Browse files

Fix broken Gitaly integration tests

Gitaly started to require `Repository` information for certain
commands like upload-pack, upload-archive, and receive-pack.

However, gitlab-shell tests are sending `git_object_directory` and
`git_alternate_object_directories` that do not exist.

To fix the tests, we set those to an existing directory in the
created repository.
parent 264d63e8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -9,8 +9,8 @@
"repository": {
"storage_name": "default",
"relative_path": "GITALY_REPOSITORY",
"git_object_directory": "path/to/git_object_directory",
"git_alternate_object_directories": ["path/to/git_alternate_object_directory"],
"git_object_directory": "objects/",
"git_alternate_object_directories": ["objects/"],
"gl_repository": "project-26",
"gl_project_path": "group/private"
},
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment