Comment unused code into Download model

This commit is contained in:
konstantin.grabar 2011-11-11 13:00:26 +04:00
parent fb6b25bc82
commit 3a8f928efc
1 changed files with 6 additions and 6 deletions

View File

@ -4,11 +4,11 @@ class Download < ActiveRecord::Base
default_scope order(:name)
class << self
def rotate_nginx_log
system("sudo mv #{ APP_CONFIG['nginx_log'] } #{ PREV_LOG_FILE }")
#system("sudo kill -USR1 `cat #{ APP_CONFIG['nginx_pid'] }`")
system("sudo /opt/nginx/sbin/nginx -s reload")
end
#def rotate_nginx_log
# system("sudo mv #{ APP_CONFIG['nginx_log'] } #{ PREV_LOG_FILE }")
# #system("sudo kill -USR1 `cat #{ APP_CONFIG['nginx_pid'] }`")
# system("sudo /opt/nginx/sbin/nginx -s reload")
#end
def parse_nginx_log
File.open(PREV_LOG_FILE) do |log|
@ -27,7 +27,7 @@ class Download < ActiveRecord::Base
def parse_and_remove_nginx_log
parse_nginx_log
system("rm -f #{PREV_LOG_FILE}")
#system("rm -f #{PREV_LOG_FILE}")
end
def increase(opts={})