@testdriverai/mcp 7.9.175-test → 7.9.177-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/lib/sandbox.js +2 -2
- package/docs/v7/ci-cd.mdx +1 -1
- package/package.json +1 -1
package/agent/lib/sandbox.js
CHANGED
|
@@ -724,7 +724,7 @@ const createSandbox = function (emitter, analytics, sessionInstance) {
|
|
|
724
724
|
'Slot denied: ' + (slotDecision.data.message || 'concurrency limit reached') +
|
|
725
725
|
' — gave up after ' + Math.round(elapsed / 1000) + 's ' +
|
|
726
726
|
'(max wait ' + (concurrencyMaxWait / 1000) + 's). ' +
|
|
727
|
-
'Upgrade for more slots → https://console.testdriver.ai/checkout/
|
|
727
|
+
'Upgrade for more slots → https://console.testdriver.ai/checkout/pro'
|
|
728
728
|
);
|
|
729
729
|
giveUpErr.responseData = slotDecision.data;
|
|
730
730
|
throw giveUpErr;
|
|
@@ -734,7 +734,7 @@ const createSandbox = function (emitter, analytics, sessionInstance) {
|
|
|
734
734
|
' — waiting ' + (concurrencyRetryInterval / 1000) + 's before retrying' +
|
|
735
735
|
' (' + Math.round(elapsed / 1000) + 's elapsed)...'
|
|
736
736
|
);
|
|
737
|
-
logger.log('Upgrade for more slots → https://console.testdriver.ai/checkout/
|
|
737
|
+
logger.log('Upgrade for more slots → https://console.testdriver.ai/checkout/pro');
|
|
738
738
|
try {
|
|
739
739
|
if (this._ably) this._ably.close();
|
|
740
740
|
this._ably = null;
|
package/docs/v7/ci-cd.mdx
CHANGED
|
@@ -673,7 +673,7 @@ Raise `TD_CONCURRENCY_MAX_WAIT` when you run more parallel jobs than your plan h
|
|
|
673
673
|
slots and would rather they queue than fail. Set it to `0` when you'd prefer a job
|
|
674
674
|
to **fail fast** on a busy account (e.g. a quick smoke test that shouldn't sit
|
|
675
675
|
waiting). When jobs routinely give up waiting, that's the signal to
|
|
676
|
-
[add more slots](https://console.testdriver.ai/checkout/
|
|
676
|
+
[add more slots](https://console.testdriver.ai/checkout/pro).
|
|
677
677
|
</Tip>
|
|
678
678
|
|
|
679
679
|
## Viewing Results
|