bujjibabukatta opened a new pull request, #8902: URL: https://github.com/apache/devlake/pull/8902
Fixes #8897 ## Summary The Jenkins connector can fail during data collection when the generated `primary_view` value exceeds the current column size limit. This change: * Updates `PrimaryView` from `varchar(255)` to `text`. * Adds a migration to update the `_tool_jenkins_jobs.primary_view` column for existing installations. * Registers the migration. ## Problem For Jenkins instances with deeply nested folders and long job paths, the generated `primary_view` value can exceed 255 characters, resulting in: `Error 1406 (22001): Data too long for column 'primary_view'` This causes Jenkins data collection to fail. ## Solution Use a `text` column for `primary_view` and provide a migration so existing installations are updated automatically. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
