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 bc10b5e commit 0ac248eCopy full SHA for 0ac248e
src/machine-learning/machine-learning-api-client.ts
@@ -253,7 +253,7 @@ export class MachineLearningApiClient {
253
private getUrl(): Promise<string> {
254
return this.getProjectIdPrefix()
255
.then((projectIdPrefix) => {
256
- return `${ML_V1BETA2_API}/${this.projectIdPrefix}`;
+ return `${ML_V1BETA2_API}/${projectIdPrefix}`;
257
});
258
}
259
src/machine-learning/machine-learning.ts
@@ -285,6 +285,7 @@ export class Model {
285
return false;
286
287
288
+ /* eslint-disable-next-line @typescript-eslint/no-unused-vars */
289
public waitForUnlocked(maxTimeSeconds?: number): Promise<void> {
290
// Backend does not currently return locked models.
291
// This will likely change in future.
0 commit comments