+* 2.1.21
+- Fixed the calculation of file transfer rate
+== donghee yang <donghee.yang@samsung.com> 2013-04-11
* 2.1.20
- Separate the process for log monitor
== donghee yang <donghee.yang@samsung.com> 2013-04-10
Source : dibs
-Version :2.1.20
+Version :2.1.21
Maintainer : taejun ha<taejun.ha@samsung.com>, jiil hyoun <jiil.hyoun@samsung.com>, donghyuk yang <donghyouk.yang@samsung.com>, donghee yang <donghee.yang@samsung.com>, sungmin kim <dev.sungmin.kim@samsung.com
Package : dibs
end
end
trEnd = Time.now()
- trRate = (full_size * 1000 / (trEnd - trBegin) / 1000).to_i
+ trRate = (full_size / (trEnd - trBegin) / 1000).to_i
@log.info "Upload is succeeded! #{trRate}KByte/s"
conn.puts "SEND_OK"
end
end
trEnd = Time.now()
- trRate = (full_size * 1000 / (trEnd - trBegin) / 1000).to_i
+ trRate = (full_size / (trEnd - trBegin) / 1000).to_i
@log.info "Download is succeeded! #{trRate}KByte/s"
conn.puts "RECEIVE_OK"