Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
pleary committed May 31, 2024
1 parent 2a16a06 commit 2033955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/controllers/v1/computervision_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ const ComputervisionController = class ComputervisionController {
const requestAbortController = new AbortController( );
const requestTimeout = setTimeout( ( ) => {
requestAbortController.abort( );
}, 30000 );
}, 60000 );
let json;
try {
const response = await fetch( `${config.imageProcesing.inatnlsURL}/?${urlParams.toString( )}`, {
Expand Down

0 comments on commit 2033955

Please sign in to comment.