Просмотр исходного кода

生成文件接口,不推送mq,直接返回数据

lichunlei 3 месяцев назад
Родитель
Сommit
2abbd3a38c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Controllers/Feign/VsCodeController.cs

+ 1 - 1
Controllers/Feign/VsCodeController.cs

@@ -167,7 +167,7 @@ namespace Controllers.Feign
         {
             Function.WriteLog(Newtonsoft.Json.JsonConvert.SerializeObject(para), "vscode生成文件接收");
             para.content = HttpUtility.UrlDecode(para.content);
-            string res = MakeHelper.Instance.DoQueue(para.content);
+            string res = MakeHelper.Instance.DoQueue(para.content, false);
             return SUCCESS(res);
         }