change bugs
This commit is contained in:
parent
f3392e0aeb
commit
e06a2ec0f0
|
@ -4,14 +4,13 @@ class SyncForgeController < ApplicationController
|
||||||
def create
|
def create
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
sync_params = params[:sync_params]
|
sync_params = params[:sync_params]
|
||||||
|
|
||||||
|
|
||||||
#以前已同步的项目,那么肯定存在仓库
|
#以前已同步的项目,那么肯定存在仓库
|
||||||
if Project.exists?(id: sync_params[:id], identifier: sync_params[:identifier])
|
if Project.exists?(id: sync_params[:id], identifier: sync_params[:identifier])
|
||||||
|
Rails.logger.info("=================begin_to_update_project========")
|
||||||
project = Project.find_by(id: sync_params[:id])
|
project = Project.find_by(id: sync_params[:id])
|
||||||
check_sync_project(project, sync_params)
|
check_sync_project(project, sync_params)
|
||||||
else #新建项目
|
else #新建项目
|
||||||
|
Rails.logger.info("=================begin_to_create_new_project========")
|
||||||
project_user = User.where(login: sync_params[:owner_login]).first
|
project_user = User.where(login: sync_params[:owner_login]).first
|
||||||
project_params = {
|
project_params = {
|
||||||
identifier: sync_params[:identifier],
|
identifier: sync_params[:identifier],
|
||||||
|
@ -24,9 +23,10 @@ class SyncForgeController < ApplicationController
|
||||||
SyncRepositoryJob.perform_later(project.repository, sync_params[:repository_params]) if sync_params[:repository_params]
|
SyncRepositoryJob.perform_later(project.repository, sync_params[:repository_params]) if sync_params[:repository_params]
|
||||||
check_new_project(project, sync_params)
|
check_new_project(project, sync_params)
|
||||||
end
|
end
|
||||||
rescue Exception => e
|
end
|
||||||
Rails.logger.info("========has_errors:==#{e}====")
|
|
||||||
end
|
end
|
||||||
|
rescue Exception => e
|
||||||
|
SyncLog.sync_log("=================has_errors:==#{e}")
|
||||||
end
|
end
|
||||||
|
|
||||||
def sync_users
|
def sync_users
|
||||||
|
|
Loading…
Reference in New Issue