@sudobility/testomniac_runner 0.0.138 → 0.0.139
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/package.json +1 -1
- package/src/runner-manager.ts +1 -4
package/package.json
CHANGED
package/src/runner-manager.ts
CHANGED
|
@@ -173,10 +173,7 @@ export class RunnerManager {
|
|
|
173
173
|
signal: AbortSignal;
|
|
174
174
|
}): Promise<void> {
|
|
175
175
|
const config = loadConfig();
|
|
176
|
-
const api = getApiClient(
|
|
177
|
-
config.apiUrl + "/api/v1/scanner",
|
|
178
|
-
config.scannerApiKey
|
|
179
|
-
);
|
|
176
|
+
const api = getApiClient(config.apiUrl, config.scannerApiKey);
|
|
180
177
|
|
|
181
178
|
try {
|
|
182
179
|
await runFullScan({
|