Browse Source

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

lichunlei 4 months ago
parent
commit
2abbd3a38c
1 changed files with 1 additions and 1 deletions
  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生成文件接收");
             Function.WriteLog(Newtonsoft.Json.JsonConvert.SerializeObject(para), "vscode生成文件接收");
             para.content = HttpUtility.UrlDecode(para.content);
             para.content = HttpUtility.UrlDecode(para.content);
-            string res = MakeHelper.Instance.DoQueue(para.content);
+            string res = MakeHelper.Instance.DoQueue(para.content, false);
             return SUCCESS(res);
             return SUCCESS(res);
         }
         }