Skip to content

Commit

Permalink
increase-timing-bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Apr 29, 2015
1 parent a845c6f commit e55886e
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -198,7 +198,7 @@ public void retry_issue5097 () throws DotSecurityException, DotDataException, IO
//Verify if it continues in the queue job
foundBundles = publisherAPI.getQueueElementsByBundleId( bundleId );
x++;
} while ( (foundBundles != null && !foundBundles.isEmpty()) && x < 4 );
} while ( (foundBundles != null && !foundBundles.isEmpty()) && x <= 5 );
//At this points should not be here anymore
publisherAPI.deleteAllElementsFromPublishQueueTable();
foundBundles = publisherAPI.getQueueElementsByBundleId( bundleId );
Expand Down Expand Up @@ -545,7 +545,7 @@ public void push_archived_issue5086 () throws Exception {
//Verify if it continues in the queue job
foundBundles = publisherAPI.getQueueElementsByBundleId( bundleId );
x++;
} while ( (foundBundles != null && !foundBundles.isEmpty()) && x < 4 );
} while ( (foundBundles != null && !foundBundles.isEmpty()) && x <= 5 );
//At this points should not be here anymore
publisherAPI.deleteAllElementsFromPublishQueueTable();
foundBundles = publisherAPI.getQueueElementsByBundleId( bundleId );
Expand Down Expand Up @@ -876,7 +876,7 @@ public void push_container_issue5189 () throws Exception {
//Verify if it continues in the queue job
foundBundles = publisherAPI.getQueueElementsByBundleId( bundleId );
x++;
} while ( (foundBundles != null && !foundBundles.isEmpty()) && x < 4 );
} while ( (foundBundles != null && !foundBundles.isEmpty()) && x <= 5 );
//At this points should not be here anymore
publisherAPI.deleteAllElementsFromPublishQueueTable();
foundBundles = publisherAPI.getQueueElementsByBundleId( bundleId );
Expand Down Expand Up @@ -986,4 +986,4 @@ public void push_container_issue5189 () throws Exception {
Logger.error(RemotePublishAjaxActionTest.class, e.getMessage());
}
}
}
}

0 comments on commit e55886e

Please sign in to comment.