We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9d45ff commit a959ee7Copy full SHA for a959ee7
1 file changed
x-pack/plugins/ml/server/saved_objects/initialization.ts
@@ -39,8 +39,8 @@ export function jobSavedObjectsInitializationFactory(core: CoreStart) {
39
() => Promise.resolve() // pretend isMlReady, to allow us to initialize the saved objects
40
);
41
const { initSavedObjects } = repairFactory(client, jobSavedObjectService);
42
- await initSavedObjects();
43
- mlLog.info('Job saved objects initialized for * space');
+ const { jobs } = await initSavedObjects();
+ mlLog.info(`${jobs.length} job saved objects initialized for * space`);
44
} catch (error) {
45
mlLog.error('Error Initializing jobs');
46
}
0 commit comments