We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 220b9aa commit 53448fcCopy full SHA for 53448fc
utils/topcoder-api-helper.js
@@ -37,12 +37,13 @@ if (config.TC_DEV_ENV) {
37
topcoderApiProjects = topcoderDevApiProjects;
38
topcoderApiChallenges = topcoderDevApiChallenges;
39
}
40
-// Timeout increase to 5 minutes
41
-topcoderApiChallenges.ApiClient.timeout = 300000;
42
-
43
// Init the API instances
44
const projectsClient = topcoderApiProjects.ApiClient.instance;
45
const challengesClient = topcoderApiChallenges.ApiClient.instance;
+
+//Timeout increase to 5 minutes
+challengesClient.timeout=300000;
46
47
const bearer = projectsClient.authentications.bearer;
48
bearer.apiKeyPrefix = 'Bearer';
49
challengesClient.authentications.bearer = bearer;
0 commit comments