Fix wrong call of cstaging

This commit is contained in:
Max Lin 2017-03-24 17:25:00 +08:00
parent fa167b8073
commit 59e496effb

View File

@ -35,7 +35,7 @@ class AcceptCommand(object):
return rqs
def reset_rebuild_data(self, project):
url = self.api.makeurl(['source', self.cstaging, 'dashboard', 'support_pkg_rebuild?expand=1'])
url = self.api.makeurl(['source', self.api.cstaging, 'dashboard', 'support_pkg_rebuild?expand=1'])
try:
data = http_GET(url)
except urllib2.HTTPError:
@ -47,7 +47,7 @@ class AcceptCommand(object):
stg.find('rebuild').text = 'unknown'
# reset accpted staging project rebuild state to unknown
url = self.api.makeurl(['source', self.cstaging, 'dashboard', 'support_pkg_rebuild'])
url = self.api.makeurl(['source', self.api.cstaging, 'dashboard', 'support_pkg_rebuild'])
content = ET.tostring(root)
http_PUT(url + '?comment=accept+command+update', data=content)