We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc5d8c commit 90d7d89Copy full SHA for 90d7d89
src/apify-client.ts
@@ -24,6 +24,12 @@ export function getApifyAPIBaseUrl(): string {
24
25
export class ApifyClient extends _ApifyClient {
26
constructor(options: ApifyClientOptions) {
27
+ // Remove dummy token for to prevent Dockerhub build task
28
+ // that also starts the server to list tools failing
29
+ if (options.token?.toLowerCase() === 'your-apify-token') {
30
+ delete options.token;
31
+ }
32
+
33
super({
34
...options,
35
baseUrl: getApifyAPIBaseUrl(),
0 commit comments