We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 172d165 commit c6750f0Copy full SHA for c6750f0
.github/RssRegression.java
@@ -73,15 +73,16 @@ public static void main(String[] args) {
73
rssRegression = newRss > (oldRss * 1.1);
74
System.out.println("Regression: " + rssRegression);
75
76
+ System.out.println("Uploading new pmap file to storage: " + bucketFile + " from local: " + oldPmapFile);
77
+ uploadObject(_cosClient, BUCKET_NAME, bucketFile, newPmapFile);
78
}
79
+
80
_cosClient.shutdown();
81
82
if(rssRegression) {
83
exit(1);
84
85
else {
- System.out.println("Uploading new pmap file to storage: " + bucketFile + " from local: " + oldPmapFile);
- uploadObject(_cosClient, BUCKET_NAME, bucketFile, newPmapFile);
86
exit(0);
87
88
0 commit comments