1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 13:15:24 +00:00

Merge branch '3447_frontend_with_unknown_job_type' into 'develop'

 - do not fail in the frontend if an unknow job type comes from the backend

Closes 

See merge request 
This commit is contained in:
Bram Wiepjes 2025-03-17 15:17:30 +00:00
commit bd2d1817f8
3 changed files with 29 additions and 1 deletions
changelog/entries/unreleased/bug
web-frontend/modules/core

View file

@ -0,0 +1,8 @@
{
"type": "bug",
"message": "Do not register jobs that have unknown job type in the job type in the registry.",
"domain": "database",
"issue_number": 3447,
"bullet_points": [],
"created_at": "2025-03-14"
}

View file

@ -413,7 +413,19 @@ export class RealTimeHandler {
})
this.registerEvent('job_started', ({ store }, data) => {
store.dispatch('job/create', data.job)
try {
store.dispatch('job/create', data.job)
} catch (err) {
// TODO: some job types have no frontend handlers (JobType subclasses)
// registered. This will cause an error during creation. The proper fix
// would be to add missing JobTypes.
if (
err.message !==
`The type ${data.job.type} is not found under namespace job in the registry.`
) {
throw err
}
}
})
}
}

View file

@ -5,6 +5,14 @@ const FINISHED_STATES = ['finished', 'failed', 'cancelled']
const STARTING_TIMEOUT_MS = 200
const MAX_POLLING_ATTEMPTS = 100
/**
* Calls job-type specific routine to enhance job object with any job-type specific
* properties. This may return `null` if job type is not registered.
*
* @param job
* @param registry
* @returns {*|null}
*/
export function populateJob(job, registry) {
const type = registry.get('job', job.type)
return type.populate(job)