Fix error handling
This commit is contained in:
@@ -30,7 +30,7 @@ public class APIFootballUpdater {
|
|||||||
S3Provider prov = new S3Provider();
|
S3Provider prov = new S3Provider();
|
||||||
prov.writeFixturesToS3(league, content);
|
prov.writeFixturesToS3(league, content);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
if(e.getMessage().endsWith("did not have any results with status: 'Too many requests. Your rate limit is 10 requests per minute.")) {
|
if(e.getMessage().endsWith("did not have any results with status: 'Too many requests. Your rate limit is 10 requests per minute.'")) {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(1000 * 60);
|
Thread.sleep(1000 * 60);
|
||||||
String content = getRawData(apiFootballUrl);
|
String content = getRawData(apiFootballUrl);
|
||||||
@@ -68,7 +68,7 @@ public class APIFootballUpdater {
|
|||||||
S3Provider prov = new S3Provider();
|
S3Provider prov = new S3Provider();
|
||||||
prov.writeRoundsToS3(league, content);
|
prov.writeRoundsToS3(league, content);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
if(e.getMessage().endsWith("did not have any results with status: 'Too many requests. Your rate limit is 10 requests per minute.")) {
|
if(e.getMessage().endsWith("did not have any results with status: 'Too many requests. Your rate limit is 10 requests per minute.'")) {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(1000 * 60);
|
Thread.sleep(1000 * 60);
|
||||||
String content = getRawData(apiFootballUrl);
|
String content = getRawData(apiFootballUrl);
|
||||||
|
|||||||
Reference in New Issue
Block a user