Skip to content

Commit

Permalink
fix: opt pump cache, issue: TencentBlueKing#296
Browse files Browse the repository at this point in the history
  • Loading branch information
tbs60 committed Sep 23, 2024
1 parent f41d069 commit d9151d4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/backend/booster/bk_dist/handler/cc/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,11 @@ func (cc *TaskCC) trypumpwithcache(command []string) (*dcSDK.BKDistCommand, erro
return nil, err, ErrorNotSupportRemote
}

// 有可能objectfile为空
if objectfile == "" {
objectfile = ccargs.outputFile
}

inblack, _ := cc.inPumpBlack(responseFile, args)
if inblack {
return nil, ErrorInPumpBlack, nil
Expand Down

0 comments on commit d9151d4

Please sign in to comment.