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 7fd09b3 commit a4db827Copy full SHA for a4db827
x-pack/plugins/ml/server/models/job_validation/job_validation.test.ts
@@ -14,6 +14,13 @@ const callWithRequest: APICaller = (method: string) => {
14
if (method === 'fieldCaps') {
15
resolve({ fields: [] });
16
return;
17
+ } else if (method === 'ml.info') {
18
+ resolve({
19
+ limits: {
20
+ effective_max_model_memory_limit: '100MB',
21
+ max_model_memory_limit: '1GB',
22
+ },
23
+ });
24
}
25
resolve({});
26
}) as Promise<any>;
0 commit comments