diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index 550716eaa..0d7caba05 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -56,7 +56,7 @@ class ProjectsController < ApplicationController Projects::CreateForm.new(project_params).validate! @project = Projects::CreateService.new(current_user, project_params).call OpenProjectDevOpsJob.set(wait: 5.seconds).perform_later(@project&.id, current_user.id) - UpdateProjectTopicJob.set(wait: 5.seconds).perform_later(@project.id) if @project.id.present? + UpdateProjectTopicJob.perform_later(@project.id) if @project.id.present? end rescue Exception => e uid_logger_error(e.message)