You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2017/03/14 01:35:20 UTC

lucene-solr:branch_6x: SOLR-8045: Fix smokeTestRelease.py from precommit

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x dda17616a -> 464722a0a


SOLR-8045: Fix smokeTestRelease.py from precommit


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/464722a0
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/464722a0
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/464722a0

Branch: refs/heads/branch_6x
Commit: 464722a0a8ca1811d922e346d219d08676a12e65
Parents: dda1761
Author: Cao Manh Dat <da...@apache.org>
Authored: Tue Mar 14 08:30:38 2017 +0700
Committer: Cao Manh Dat <da...@apache.org>
Committed: Tue Mar 14 08:35:06 2017 +0700

----------------------------------------------------------------------
 dev-tools/scripts/smokeTestRelease.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/464722a0/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 423ff24..ad965e4 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -856,7 +856,7 @@ def testSolrExample(unpackPath, javaPath, isSrc):
       print('FAILED: response is:\n%s' % s)
       raise RuntimeError('query on solr example instance failed')
     s = load('http://localhost:8983/v2/cores')
-    if s.find('"responseHeader":{"status":0,"QTime":1}') == -1:
+    if s.find('"responseHeader":{"status":0') == -1:
       print('FAILED: response is:\n%s' % s)
       raise RuntimeError('query api v2 on solr example instance failed')
   finally: