Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change das_client.py to das_client in cmsDriver #15398

Merged
merged 1 commit into from Aug 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Configuration/Applications/python/ConfigBuilder.py
Expand Up @@ -135,7 +135,7 @@ def filesFromDASQuery(query,option="",s=None):
if count!=0:
print 'Sleeping, then retrying DAS'
time.sleep(100)
p = Popen('das_client.py %s --query "%s"'%(option,query), stdout=PIPE,shell=True)
p = Popen('das_client %s --query "%s"'%(option,query), stdout=PIPE,shell=True)
pipe=p.stdout.read()
tupleP = os.waitpid(p.pid, 0)
eC=tupleP[1]
Expand Down
4 changes: 2 additions & 2 deletions Configuration/PyReleaseValidation/python/MatrixUtil.py
Expand Up @@ -119,10 +119,10 @@ def das(self, das_options):

# do if you have LS queries
# command = ";".join(["das_client.py %s --query '%s'" % (das_options, query) for query in self.queries()[:3] ])
command = ";".join(["das_client.py %s --query '%s'" % (das_options, query) for query in self.queries()[:3] ])
command = ";".join(["das_client %s --query '%s'" % (das_options, query) for query in self.queries()[:3] ])
command = "({0})".format(command)
else:
command = "das_client.py %s --query '%s'" % (das_options, self.queries()[0])
command = "das_client %s --query '%s'" % (das_options, self.queries()[0])

# Run filter on DAS output
if self.ib_blacklist:
Expand Down