diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-30 15:09:15 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-30 15:09:15 +0000 |
commit | 536aa3a1f4b96abc4ca34489bf2cbe503afcded7 (patch) | |
tree | 88d08f7dfa29a32d6526773c4fe0fefd9f2bc7d1 /doc/development/gitaly.md | |
parent | 50ae4065530c4eafbeb7c5ff2c462c48c02947ca (diff) | |
download | gitlab-ce-536aa3a1f4b96abc4ca34489bf2cbe503afcded7.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/gitaly.md')
-rw-r--r-- | doc/development/gitaly.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/development/gitaly.md b/doc/development/gitaly.md index 3c18b3587c6..10da59ee9e0 100644 --- a/doc/development/gitaly.md +++ b/doc/development/gitaly.md @@ -98,13 +98,13 @@ most commonly-used RPCs can be enabled via feature flags: A convenience Rake task can be used to enable or disable these flags all together. To enable: -```sh +```shell bundle exec rake gitlab:features:enable_rugged ``` To disable: -```sh +```shell bundle exec rake gitlab:features:disable_rugged ``` @@ -343,7 +343,7 @@ the integration by using GDK: submitting commit, observing history, etc.). 1. Check that the list of current metrics has the new counter for the feature flag: - ```sh + ```shell curl --silent http://localhost:9236/metrics | grep go_find_all_tags ``` @@ -352,7 +352,7 @@ the integration by using GDK: 1. Navigate to GDK's root directory. 1. Start a Rails console: - ```sh + ```shell bundle install && bundle exec rails console ``` @@ -373,6 +373,6 @@ the integration by using GDK: your changes (project creation, submitting commit, observing history, etc.). 1. Verify the feature is on by observing the metrics for it: - ```sh + ```shell curl --silent http://localhost:9236/metrics | grep go_find_all_tags ``` |