Compare commits

...
Author SHA1 Message Date
marcos-silva-rodrigues 31e0ca6c91 UPDATE: affinity and log 2025-08-28 16:52:52 -03:00
2 changed files with 6 additions and 8 deletions
+1 -1
View File
@@ -64,4 +64,4 @@ affinity:
- key: name
operator: In
values:
- general
- product
@@ -205,13 +205,10 @@ export class PipelinesController {
async getPipelineStatus(@Body() body, @Param('id') id: string) {
body.id = id;
this.logger.info(
process.env.DEV_URL + `/pipeline/${id} - ON GET PIPELINE STATUS ROUTE`,
{
user: body.info.user_id,
customer: body.info.customer,
},
);
this.logger.info(`/pipeline/${id} - ON GET PIPELINE STATUS ROUTE`, {
user: body.info.user_id,
customer: body.info.customer,
});
const response = await this.oldPipelinesService.getPipelineStatus(body);
@@ -256,6 +253,7 @@ export class PipelinesController {
});
return res;
});
return result;
}