비동기 메서드 잘못된 사용으로 인한 롤백

This commit is contained in:
김판돌 2024-08-27 19:07:03 +09:00
parent fc28b9fd0d
commit f70cc6a18c
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace Server.System
private static AbstractGit git; private static AbstractGit git;
public static ErrorResp successResp; public static ErrorResp successResp;
public static async Task<string> Process(HttpContext context) public static string Process(HttpContext context)
{ {
string Response; string Response;
try try

View File

@ -31,7 +31,7 @@ namespace Server.System {
logger.Info("Server Start"); logger.Info("Server Start");
} }
public static async Task<string> Process(HttpContext context) { public static string Process(HttpContext context) {
AbstractService abstractService; AbstractService abstractService;
string Response = ""; string Response = "";