Skip to content

Commit

Permalink
Fix bug with colSizeMb
Browse files Browse the repository at this point in the history
  • Loading branch information
rrowlands committed May 10, 2024
1 parent d173978 commit 91e4cd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/asrProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ module.exports = {
return (asrProvider.getNodesPendingCreation() + autoSpawnedNodesCount) < asrProvider.getMachinesLimit();
},

canHandle: function(imagesCount){
canHandle: function(imagesCount, colSizeMb){
if (!asrProvider) return false;
return asrProvider.canHandle(imagesCount);
return asrProvider.canHandle(imagesCount, colSizeMb);
},

onCommit: async function(taskId, cleanupDelay = 0){
Expand Down

0 comments on commit 91e4cd5

Please sign in to comment.