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 fd718c2 commit c2875ffCopy full SHA for c2875ff
utils/topcoder-api-helper.js
@@ -37,12 +37,15 @@ 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;
+
46
+//Timeout increase to 5 minutes
47
+challengesClient.timeout=300000;
48
49
const bearer = projectsClient.authentications.bearer;
50
bearer.apiKeyPrefix = 'Bearer';
51
challengesClient.authentications.bearer = bearer;
0 commit comments