仓库在冷区后自动迁移

dev_hjm
jingquan huang 6 years ago
parent 3f9c722c98
commit e6b26ee6cb

@ -498,44 +498,41 @@ class GamesController < ApplicationController
rescue Exception => e rescue Exception => e
# 思路: 异常首先应该考虑去恢复 # 思路: 异常首先应该考虑去恢复
# retry为1表示已经轮训完成后还没有解决问题这个时候需要检测异常 # retry为1表示已经轮训完成后还没有解决问题这个时候需要检测异常
if params[:retry].to_i == 1 begin
begin # 如果模板没有问题,则通过中间层检测实训仓库是否异常
# 如果模板没有问题,则通过中间层检测实训仓库是否异常 # 监测版本库HEAD是否存在不存在则取最新的HEAD
# 监测版本库HEAD是否存在不存在则取最新的HEAD gitUrl = repo_url @myshixun.repo_path
gitUrl = repo_url @myshixun.repo_path gitUrl = Base64.urlsafe_encode64(gitUrl)
gitUrl = Base64.urlsafe_encode64(gitUrl) shixun_tomcat = edu_setting('cloud_bridge')
shixun_tomcat = edu_setting('cloud_bridge') rep_params = {:tpiID => "#{@myshixun.id}", :tpiGitURL => "#{gitUrl}"}
rep_params = {:tpiID => "#{@myshixun.id}", :tpiGitURL => "#{gitUrl}"} # 监测版本库HEAD是否存在不存在则取最新的HEAD
# 监测版本库HEAD是否存在不存在则取最新的HEAD uri = "#{shixun_tomcat}/bridge/game/check"
uri = "#{shixun_tomcat}/bridge/game/check" res = uri_post uri, rep_params
res = uri_post uri, rep_params uid_logger("repo_content to bridge: res is #{res}")
uid_logger("repo_content to bridge: res is #{res}") # res值0 表示正常;-1表示有错误-2表示代码版本库没了
# res值0 表示正常;-1表示有错误-2表示代码版本库没了 #
# if status == 0 && res
if status == 0 && res # 版本库报错,修复不了
# 版本库报错,修复不了 if res['code'] == -1 || res['code'] == -2
if res['code'] == -1 || res['code'] == -2 begin
begin # GitService.delete_repository(repo_path: @myshixun.repo_path) if res['code'] == -1
# GitService.delete_repository(repo_path: @myshixun.repo_path) if res['code'] == -1 project_fork(@myshixun, @shixun.repo_path, current_user.login)
project_fork(@myshixun, @shixun.repo_path, current_user.login) rescue Exception => e
rescue Exception => e uid_logger_error("#{e.message}")
uid_logger_error("#{e.message}") tip_exception("#{e.message}")
tip_exception("#{e.message}")
end
end end
end end
rescue Exception => e end
uid_logger_error(e.message) rescue Exception => e
uid_logger_error(e.message)
if @myshixun.shixun.try(:status) < 2 if @myshixun.shixun.try(:status) < 2
tip_exception("代码获取异常,请检查实训模板的评测设置是否正确") tip_exception("代码获取异常,请检查实训模板的评测设置是否正确")
else else
# 报错继续retry # 报错继续retry
tip_exception(-3, "#{e.message}") tip_exception(-3, "#{e.message}")
end
end end
end end
# 有异常版本库获取不到代码前端轮训15S后调用retry == 1
tip_exception(0, e.message) tip_exception(0, e.message)
end end
end end

Loading…
Cancel
Save