[Title] Fixed a bug that remote server status is wrong
authordonghee yang <donghee.yang@samsung.com>
Wed, 12 Dec 2012 14:54:48 +0000 (23:54 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Wed, 12 Dec 2012 14:56:41 +0000 (23:56 +0900)
package/changelog
package/pkginfo.manifest
src/build_server/RemoteBuildServer.rb

index 3ad5bec4751521d51087c8f211650c5a8f2f10cc..874391ce9880c8bf9136f75ed9f2fca0454312ce 100644 (file)
@@ -1,3 +1,6 @@
+* 2.0.3
+- fixed bug about web, build-cli query
+== donghee yang <donghee.yang@samsung.com> 2012-12-12
 * 2.0.2
 - fixed bug about web, build-cli query
 == sungmin kim <dev.sungmin.kim@samsung.com> 2012-12-12
index d82d021d598682fa352b99f5702e19bab45dfaf6..a258df4f5f85e2667fc52b81ebddc78ecf1b3af7 100644 (file)
@@ -1,5 +1,5 @@
 Source : dibs
-Version :2.0.2
+Version :2.0.3
 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
index c395d82f0c8d5c5e99aad515d68e88c940bb7aae..3f8c557c4093a12230bae9011bca5b4bf34902e3 100644 (file)
@@ -220,6 +220,11 @@ class RemoteBuildServer
                svr_ip,svr_port=row['svr_addr'].strip.split(":")
                new_obj = new(svr_ip, svr_port, row['description'] )
                new_obj.set_id( row['id'] )
+               new_obj.status = row['status']
+               new_obj.max_working_jobs =row['max_job_count']
+               new_obj.working_jobs =row['working_job_count']
+               new_obj.waiting_jobs =row['waiting_job_count']
+
                return new_obj
        end