|
|
@@ -172,7 +172,8 @@ public class DeploymentServiceImpl implements DeploymentService {
|
|
|
object.put("pipeline_id",pipelineId);
|
|
|
object.put("user_id",userId);
|
|
|
object.put("type",record.getResult());
|
|
|
- object.put("result",record.getResult().equals(PipelineRecordPO.DEPLOY_SUCCESS));
|
|
|
+ object.put("result", record.getResult());
|
|
|
+ object.put("success",record.getResult().equals(PipelineRecordPO.DEPLOY_SUCCESS));
|
|
|
//success?
|
|
|
String data = JSONObject.toJSONString(object);
|
|
|
LogTrackingUtil.log(data, OpType.DEPLOY_PIPELINE);
|