Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【Enhancement】编译加速刷存量已停用项目的加速方案为停用 #260 #266

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,8 @@ class TurboPlanService @Autowired constructor(

/**
* 同步加速方案信息至后端编译加速服务
*
* @param openStatus true:停用; false:启用
*/
private fun updateTbsProjectInfo(
user: String,
Expand Down Expand Up @@ -689,7 +691,7 @@ class TurboPlanService @Autowired constructor(
user = userId,
engineCode = it.engineCode,
planId = it.id!!,
openStatus = enabled,
openStatus = !enabled,
planName = null
)
} catch (e: TurboException) {
Expand Down
Loading