From bf977315f1b290a8c1a3c16105bffb369bf85e84 Mon Sep 17 00:00:00 2001 From: Sungmin kim Date: Tue, 16 Apr 2013 14:18:42 +0900 Subject: [PATCH] [Title] Fixed call about "query-log", process -> thread --- dibs-web/app/controllers/utils.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dibs-web/app/controllers/utils.rb b/dibs-web/app/controllers/utils.rb index d4a5d2c..0b96790 100644 --- a/dibs-web/app/controllers/utils.rb +++ b/dibs-web/app/controllers/utils.rb @@ -142,8 +142,8 @@ puts "[[[#{cmd}]]]" puts "Query-log command" puts "[[[#{cmd}]]]" - fork do - exec(cmd) + Thread.new do + system(cmd) end return path -- 2.34.1