Skip to content

Commit

Permalink
[Releng] Update MarketplaceCatologGenerator for 2020-12.
Browse files Browse the repository at this point in the history
  • Loading branch information
merks committed Dec 16, 2020
1 parent 568c400 commit 0e9be58
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -315,6 +315,7 @@ public void perform(Map<String, URI> nodeURIs) throws Exception
platformVersions.put("platform.version=4.15", "2020-03");
platformVersions.put("platform.version=4.16", "2020-06");
platformVersions.put("platform.version=4.17", "2020-09");
platformVersions.put("platform.version=4.18", "2020-12");

Set<URI> nodeQueryURIs = new LinkedHashSet<URI>();
{
Expand All @@ -333,7 +334,7 @@ public void perform(Map<String, URI> nodeURIs) throws Exception
}

long startRepositoryLoads = System.currentTimeMillis();
System.out.println("Gathering " + nodeQueryURIs.size() + " listings: " + (startRepositoryLoads - startListings) / 1000);
System.out.println("Gathering " + nodeQueryURIs.size() + " listings: " + (startRepositoryLoads - startListings) / 1000 + " seconds");

{
Set<String> updateURLs = new LinkedHashSet<String>();
Expand Down Expand Up @@ -787,10 +788,10 @@ else if (size > 1 && normalizeP2Tasks)
output.save(null);

long startTesting = System.currentTimeMillis();
System.out.println("Loaded repositories : " + (startTesting - startRepositoryLoads) / 1000);
System.out.println("Loaded repositories : " + (startTesting - startRepositoryLoads) / 1000 + " seconds");
test();
long finishTesting = System.currentTimeMillis();
System.out.println("Testing : " + (finishTesting - startTesting) / 1000);
System.out.println("Testing : " + (finishTesting - startTesting) / 1000 + " seconds");
}

private void generateReport() throws Exception
Expand Down

0 comments on commit 0e9be58

Please sign in to comment.