Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
197aba91
Commit
197aba91
authored
Jul 03, 2021
by
Siddharth Asthana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename feature_category from usage_ping to service_ping
parent
54075699
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
app/controllers/admin/application_settings_controller.rb
app/controllers/admin/application_settings_controller.rb
+1
-1
app/controllers/projects/service_ping_controller.rb
app/controllers/projects/service_ping_controller.rb
+1
-1
app/workers/all_queues.yml
app/workers/all_queues.yml
+1
-1
app/workers/gitlab_usage_ping_worker.rb
app/workers/gitlab_usage_ping_worker.rb
+1
-1
lib/api/usage_data.rb
lib/api/usage_data.rb
+1
-1
lib/api/usage_data_non_sql_metrics.rb
lib/api/usage_data_non_sql_metrics.rb
+1
-1
lib/api/usage_data_queries.rb
lib/api/usage_data_queries.rb
+1
-1
No files found.
app/controllers/admin/application_settings_controller.rb
View file @
197aba91
...
@@ -27,7 +27,7 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
...
@@ -27,7 +27,7 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
feature_category
:source_code_management
,
[
:repository
,
:clear_repository_check_states
]
feature_category
:source_code_management
,
[
:repository
,
:clear_repository_check_states
]
feature_category
:continuous_integration
,
[
:ci_cd
,
:reset_registration_token
]
feature_category
:continuous_integration
,
[
:ci_cd
,
:reset_registration_token
]
feature_category
:
usag
e_ping
,
[
:usage_data
]
feature_category
:
servic
e_ping
,
[
:usage_data
]
feature_category
:integrations
,
[
:integrations
]
feature_category
:integrations
,
[
:integrations
]
feature_category
:pages
,
[
:lets_encrypt_terms_of_service
]
feature_category
:pages
,
[
:lets_encrypt_terms_of_service
]
...
...
app/controllers/projects/service_ping_controller.rb
View file @
197aba91
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
class
Projects::ServicePingController
<
Projects
::
ApplicationController
class
Projects::ServicePingController
<
Projects
::
ApplicationController
before_action
:authenticate_user!
before_action
:authenticate_user!
feature_category
:
usag
e_ping
feature_category
:
servic
e_ping
def
web_ide_clientside_preview
def
web_ide_clientside_preview
return
render_404
unless
Gitlab
::
CurrentSettings
.
web_ide_clientside_preview_enabled?
return
render_404
unless
Gitlab
::
CurrentSettings
.
web_ide_clientside_preview_enabled?
...
...
app/workers/all_queues.yml
View file @
197aba91
...
@@ -267,7 +267,7 @@
...
@@ -267,7 +267,7 @@
:tags: []
:tags: []
-
:name: cronjob:gitlab_usage_ping
-
:name: cronjob:gitlab_usage_ping
:worker_name: GitlabUsagePingWorker
:worker_name: GitlabUsagePingWorker
:feature_category: :
usag
e_ping
:feature_category: :
servic
e_ping
:has_external_dependencies:
:has_external_dependencies:
:urgency: :low
:urgency: :low
:resource_boundary: :unknown
:resource_boundary: :unknown
...
...
app/workers/gitlab_usage_ping_worker.rb
View file @
197aba91
...
@@ -8,7 +8,7 @@ class GitlabUsagePingWorker # rubocop:disable Scalability/IdempotentWorker
...
@@ -8,7 +8,7 @@ class GitlabUsagePingWorker # rubocop:disable Scalability/IdempotentWorker
include
CronjobQueue
# rubocop:disable Scalability/CronWorkerContext
include
CronjobQueue
# rubocop:disable Scalability/CronWorkerContext
include
Gitlab
::
ExclusiveLeaseHelpers
include
Gitlab
::
ExclusiveLeaseHelpers
feature_category
:
usag
e_ping
feature_category
:
servic
e_ping
sidekiq_options
retry:
3
,
dead:
false
sidekiq_options
retry:
3
,
dead:
false
sidekiq_retry_in
{
|
count
|
(
count
+
1
)
*
8
.
hours
.
to_i
}
sidekiq_retry_in
{
|
count
|
(
count
+
1
)
*
8
.
hours
.
to_i
}
...
...
lib/api/usage_data.rb
View file @
197aba91
...
@@ -4,7 +4,7 @@ module API
...
@@ -4,7 +4,7 @@ module API
class
UsageData
<
::
API
::
Base
class
UsageData
<
::
API
::
Base
before
{
authenticate_non_get!
}
before
{
authenticate_non_get!
}
feature_category
:
usag
e_ping
feature_category
:
servic
e_ping
namespace
'usage_data'
do
namespace
'usage_data'
do
before
do
before
do
...
...
lib/api/usage_data_non_sql_metrics.rb
View file @
197aba91
...
@@ -4,7 +4,7 @@ module API
...
@@ -4,7 +4,7 @@ module API
class
UsageDataNonSqlMetrics
<
::
API
::
Base
class
UsageDataNonSqlMetrics
<
::
API
::
Base
before
{
authenticated_as_admin!
}
before
{
authenticated_as_admin!
}
feature_category
:
usag
e_ping
feature_category
:
servic
e_ping
namespace
'usage_data'
do
namespace
'usage_data'
do
before
do
before
do
...
...
lib/api/usage_data_queries.rb
View file @
197aba91
...
@@ -4,7 +4,7 @@ module API
...
@@ -4,7 +4,7 @@ module API
class
UsageDataQueries
<
::
API
::
Base
class
UsageDataQueries
<
::
API
::
Base
before
{
authenticated_as_admin!
}
before
{
authenticated_as_admin!
}
feature_category
:
usag
e_ping
feature_category
:
servic
e_ping
namespace
'usage_data'
do
namespace
'usage_data'
do
before
do
before
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment