Kaynağa Gözat

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

lichunlei 3 ay önce
ebeveyn
işleme
2abbd3a38c
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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);
         }