limit construction/training queues to 2
[browser-rts.git] / src / errors.ts
index 1a9b605dc7f45940c8f50a12cda54ab90d0b2557..e245d9bb07f9c3437057764b8e0a196f6977c5a6 100644 (file)
@@ -29,7 +29,7 @@ export class BadInputError extends HttpError {
 export class InsufficientResourceError extends HttpError {
        constructor(resource: string, expected: number, available: number) {
                super(
-                       `Insufficent ${resource}. Expected: ${expected}, only ${available} available`, 
+                       `Insufficent ${resource} available. Expected: ${expected}, only ${available} available`, 
                        400,
                        ERROR_CODE.INSUFFICIENT_RESOURCE
                );