]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tests: looping to wait for an osd to be up is expected
authorLoic Dachary <loic-201408@dachary.org>
Sun, 19 Oct 2014 15:59:17 +0000 (08:59 -0700)
committerLoic Dachary <ldachary@redhat.com>
Sun, 9 Nov 2014 10:59:51 +0000 (11:59 +0100)
Remove the reference to a bug that suggests otherwise.

Signed-off-by: Loic Dachary <loic-201408@dachary.org>
src/test/osd/osd-test-helpers.sh

index f754618cc17ed9cad5079baf08252336e205e48a..a3b74dcefcdb5ac3387cca49ca603294d28a3762 100644 (file)
@@ -59,9 +59,8 @@ function run_osd() {
     ./ceph osd crush create-or-move "$id" 1 root=default host=localhost
 
     status=1
-    # Workaround for http://tracker.ceph.com/issues/8630
     for ((i=0; i < 60; i++)); do
-        if ! ceph osd dump | grep "osd.$id up"; then
+        if ! ./ceph osd dump | grep "osd.$id up"; then
             sleep 1
         else
             status=0