Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/ci/archive_traces_cron_worker.rb2
-rw-r--r--app/workers/cluster_configure_worker.rb2
-rw-r--r--app/workers/cluster_project_configure_worker.rb2
-rw-r--r--app/workers/namespaces/schedule_aggregation_worker.rb2
-rw-r--r--app/workers/run_pipeline_schedule_worker.rb2
5 files changed, 5 insertions, 5 deletions
diff --git a/app/workers/ci/archive_traces_cron_worker.rb b/app/workers/ci/archive_traces_cron_worker.rb
index ef2da729705..ad7a29719ac 100644
--- a/app/workers/ci/archive_traces_cron_worker.rb
+++ b/app/workers/ci/archive_traces_cron_worker.rb
@@ -9,7 +9,7 @@ module Ci
def perform
# Archive stale live traces which still resides in redis or database
# This could happen when ArchiveTraceWorker sidekiq jobs were lost by receiving SIGKILL
- # More details in https://gitlab.com/gitlab-org/gitlab-ce/issues/36791
+ # More details in https://gitlab.com/gitlab-org/gitlab-foss/issues/36791
Ci::Build.with_stale_live_trace.find_each(batch_size: 100) do |build|
Ci::ArchiveTraceService.new.execute(build, worker_name: self.class.name)
end
diff --git a/app/workers/cluster_configure_worker.rb b/app/workers/cluster_configure_worker.rb
index b0e551d4e03..e7a4797e68e 100644
--- a/app/workers/cluster_configure_worker.rb
+++ b/app/workers/cluster_configure_worker.rb
@@ -5,6 +5,6 @@ class ClusterConfigureWorker
include ClusterQueue
def perform(cluster_id)
- # Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-ce/issues/59319
+ # Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
end
end
diff --git a/app/workers/cluster_project_configure_worker.rb b/app/workers/cluster_project_configure_worker.rb
index 8f48eca4d86..ad2437a77e9 100644
--- a/app/workers/cluster_project_configure_worker.rb
+++ b/app/workers/cluster_project_configure_worker.rb
@@ -5,6 +5,6 @@ class ClusterProjectConfigureWorker
include ClusterQueue
def perform(project_id)
- # Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-ce/issues/59319
+ # Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
end
end
diff --git a/app/workers/namespaces/schedule_aggregation_worker.rb b/app/workers/namespaces/schedule_aggregation_worker.rb
index 983ce4bef4a..b7d580220d6 100644
--- a/app/workers/namespaces/schedule_aggregation_worker.rb
+++ b/app/workers/namespaces/schedule_aggregation_worker.rb
@@ -27,7 +27,7 @@ module Namespaces
#
# The migration and specs fails since NamespaceAggregationSchedule table
# does not exist at that point.
- # https://gitlab.com/gitlab-org/gitlab-ce/issues/50712
+ # https://gitlab.com/gitlab-org/gitlab-foss/issues/50712
def aggregation_schedules_table_exists?
return true unless Rails.env.test?
diff --git a/app/workers/run_pipeline_schedule_worker.rb b/app/workers/run_pipeline_schedule_worker.rb
index 351850e53cb..659f8b80397 100644
--- a/app/workers/run_pipeline_schedule_worker.rb
+++ b/app/workers/run_pipeline_schedule_worker.rb
@@ -39,7 +39,7 @@ class RunPipelineScheduleWorker
Gitlab::Sentry
.track_exception(error,
- issue_url: 'https://gitlab.com/gitlab-org/gitlab-ce/issues/41231',
+ issue_url: 'https://gitlab.com/gitlab-org/gitlab-foss/issues/41231',
extra: { schedule_id: schedule.id })
end
# rubocop:enable Gitlab/RailsLogger