Browse Source

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

lichunlei 5 tháng trước cách đây
mục cha
commit
2abbd3a38c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
         }