incubator-devlake icon indicating copy to clipboard operation
incubator-devlake copied to clipboard

feat: added gitlab user crawling

Open antoniomuso opened this issue 2 years ago • 21 comments
trafficstars

⚠️ Pre Checklist

Please complete ALL items in this checklist, and remove before submitting

  • [x] I have read through the Contributing Documentation.
  • [ ] I have added relevant tests.
  • [ ] I have added relevant documentation.
  • [ ] I will add labels to the PR, such as pr-type/bug-fix, pr-type/feature-development, etc.

Summary

What does this PR do?

Does this close any open issues?

Closes #6362

Screenshots

Include any relevant screenshots here.

Other Information

Any other information that is important to this PR.

antoniomuso avatar Nov 08 '23 16:11 antoniomuso

I don't understand why my Table _tool_gitlab_user is not created. Would someone be able to give me some tips?

antoniomuso avatar Nov 08 '23 16:11 antoniomuso

@antoniomuso you need to define a migration script to create the table. e.g. https://github.com/apache/incubator-devlake/blob/main/backend/plugins/gitlab/models/migrationscripts/register.go#L43

klesh avatar Nov 09 '23 12:11 klesh

Thank @klesh, for the tip. I tried it, but it does not work. For some reason, my ExtractUser subtask does not run (The print codes I put are not executed).

antoniomuso avatar Nov 09 '23 13:11 antoniomuso

What do you mean? the table was not created or the subtask was not executed or both? they are 2 different things.

klesh avatar Nov 10 '23 05:11 klesh

Both, the table is not created. The subtask is not executed, the init function is called, but the subtask function is not.

antoniomuso avatar Nov 10 '23 08:11 antoniomuso

@antoniomuso

  1. "the table is not created", the migration script will be called via api /proceed-db-migration, so after adding a script, you'd better visit the Config UI, and it will help you to call this api(you can call it through postman of course).
  2. "the subtask function is not" I have reviewed your code, I think https://github.com/apache/incubator-devlake/pull/6424/files#diff-4e1b8b5e6d3695c1480f96260688f2940f65a8d18bc1b1418428e6daeb98a4e7R48 or https://github.com/apache/incubator-devlake/pull/6424/files#diff-4e1b8b5e6d3695c1480f96260688f2940f65a8d18bc1b1418428e6daeb98a4e7R48 should be printed, this shows tasks has been scheduled. (If not, please paste some logs, that will be helpful.)

d4x1 avatar Nov 12 '23 14:11 d4x1

@d4x1 Thanks for the answer.

  1. I called /proceed-db-migration but nothing happen. (This was resolved thanks to @klesh)
  2. Yes, I also think they should be printed, but the task is not schedule. I put my logs:
Logs

time="2023-11-13 09:27:47" level=info msg="\x1b[35m/app/core/runner/db.go:154\n\x1b[0m\x1b[31m[error] \x1b[0mfailed to initialize database, got error dial tcp 172.22.0.3:3306: connect: connection refused"
time="2023-11-13 09:27:47" level=info msg="\x1b[35m/app/core/runner/db.go:154\n\x1b[0m\x1b[31m[error] \x1b[0mfailed to initialize database, got error dial tcp 172.22.0.3:3306: connect: connection refused"
time="2023-11-13 09:27:48" level=info msg="migration initialized"
time="2023-11-13 09:27:48" level=info msg="plugin loaded ae"
time="2023-11-13 09:27:48" level=info msg="plugin loaded bamboo"
time="2023-11-13 09:27:48" level=info msg="plugin loaded bitbucket"
time="2023-11-13 09:27:48" level=info msg="plugin loaded circleci"
time="2023-11-13 09:27:48" level=info msg="plugin loaded customize"
time="2023-11-13 09:27:48" level=info msg="plugin loaded dbt"
time="2023-11-13 09:27:48" level=info msg="plugin loaded dora"
time="2023-11-13 09:27:48" level=info msg="plugin loaded feishu"
time="2023-11-13 09:27:48" level=info msg="plugin loaded gitee"
time="2023-11-13 09:27:48" level=info msg="plugin loaded gitextractor"
time="2023-11-13 09:27:48" level=info msg="plugin loaded github"
time="2023-11-13 09:27:48" level=info msg="plugin loaded github_graphql"
Called init! user_extractor!
time="2023-11-13 09:27:48" level=info msg="plugin loaded gitlab"
time="2023-11-13 09:27:48" level=info msg="plugin loaded icla"
time="2023-11-13 09:27:48" level=info msg="plugin loaded jenkins"
time="2023-11-13 09:27:48" level=info msg="plugin loaded jira"
time="2023-11-13 09:27:48" level=info msg="plugin loaded org"
time="2023-11-13 09:27:48" level=info msg="plugin loaded pagerduty"
time="2023-11-13 09:27:48" level=info msg="plugin loaded refdiff"
time="2023-11-13 09:27:48" level=info msg="plugin loaded slack"
time="2023-11-13 09:27:48" level=info msg="plugin loaded sonarqube"
time="2023-11-13 09:27:48" level=info msg="plugin loaded starrocks"
time="2023-11-13 09:27:48" level=info msg="plugin loaded tapd"
time="2023-11-13 09:27:48" level=info msg="plugin loaded teambition"
time="2023-11-13 09:27:49" level=info msg="plugin loaded trello"
time="2023-11-13 09:27:49" level=info msg="plugin loaded webhook"
time="2023-11-13 09:27:49" level=info msg="plugin loaded zentao"
time="2023-11-13 09:27:49" level=info msg="Loading remote plugins"
time="2023-11-13 09:27:51" level=info msg="remote plugin loaded azuredevops"
time="2023-11-13 09:27:51" level=info msg=" [blueprint] Add blueprint id:[1] cronConfg[0 0 * * *] to cron job"
time="2023-11-13 09:27:51" level=info msg="total 1 blueprints were scheduled"
time="2023-11-13 09:27:51" level=info msg="Db migration confirmation needed"
time="2023-11-13 09:27:51" level=info msg=" [pipeline service] get lock and wait next pipeline"
[GIN] 2023/11/13 - 09:28:30 | 200 |      55.586µs |      172.22.0.6 | GET      "/proceed-db-migration"
time="2023-11-13 09:28:52" level=info msg="path /projects will continue"
[GIN] 2023/11/13 - 09:28:52 | 200 |   45.590606ms |      172.22.0.6 | GET      "/projects?page=1&pageSize=20"
[GIN] 2023/11/13 - 09:28:53 | 200 |     163.511µs |      172.22.0.6 | GET      "/version"
time="2023-11-13 09:28:53" level=info msg="path /projects/my-project will continue"
[GIN] 2023/11/13 - 09:28:53 | 200 |    2.097879ms |      172.22.0.6 | GET      "/projects/my-project"
time="2023-11-13 09:28:53" level=info msg="path /blueprints/1 will continue"
time="2023-11-13 09:28:53" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:28:53 | 200 |    3.421625ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:28:53 | 200 |   12.000989ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:28:53" level=info msg="path /pipelines/8 will continue"
time="2023-11-13 09:28:53" level=info msg="path /pipelines/8/tasks will continue"
[GIN] 2023/11/13 - 09:28:53 | 200 |    1.115736ms |      172.22.0.6 | GET      "/pipelines/8/tasks"
[GIN] 2023/11/13 - 09:28:53 | 200 |     2.07884ms |      172.22.0.6 | GET      "/pipelines/8"
time="2023-11-13 09:28:53" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:28:53 | 200 |    6.140737ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
[GIN] 2023/11/13 - 09:28:56 | 200 |      44.281µs |      172.22.0.6 | GET      "/version"
time="2023-11-13 09:28:56" level=info msg="path /projects/my-project will continue"
time="2023-11-13 09:28:56" level=info msg="path /plugins/gitlab/connections/1 will continue"
[GIN] 2023/11/13 - 09:28:56 | 200 |    1.420497ms |      172.22.0.6 | GET      "/plugins/gitlab/connections/1"
[GIN] 2023/11/13 - 09:28:56 | 200 |    9.615673ms |      172.22.0.6 | GET      "/projects/my-project"
time="2023-11-13 09:28:56" level=info msg="path /plugins/gitlab/connections/1/scopes/2416 will continue"
[GIN] 2023/11/13 - 09:28:56 | 200 |    2.534504ms |      172.22.0.6 | GET      "/plugins/gitlab/connections/1/scopes/2416"
time="2023-11-13 09:29:01" level=info msg="path /plugins/gitlab/connections/1/scopes will continue"
[GIN] 2023/11/13 - 09:29:01 | 200 |    4.862375ms |      172.22.0.6 | GET      "/plugins/gitlab/connections/1/scopes?page=1&pageSize=10&blueprints=true"
time="2023-11-13 09:29:03" level=info msg="path /plugins/gitlab/connections/1/scopes/2416 will continue"
time="2023-11-13 09:29:03" level=info msg="try locking tables with timeout 2s"
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _raw_gitlab_api_issues with WHERE \"params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _raw_gitlab_api_user_info with WHERE \"params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _raw_gitlab_deployments with WHERE \"params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_accounts with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_commits with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_issues with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_issue_labels with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_jobs with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_merge_requests with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_mr_comments with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_mr_commits with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_mr_labels with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_mr_notes with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_pipelines with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_pipeline_projects with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_project_commits with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_reviewers with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_tags with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_issue_assignees with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _tool_gitlab_deployments with WHERE \"_raw_data_params = ?\" and params: \"[{\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table commit_files with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table commit_file_components with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table commit_parents with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table commit_line_change with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table pull_requests with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table pull_request_comments with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table pull_request_commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table pull_request_labels with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table refs with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table refs_pr_cherrypicks with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table repos with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table repo_commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table repo_snapshot with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cq_file_metrics with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cq_issue_code_blocks with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cq_issues with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cq_projects with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table accounts with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table board_repos with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_repo_commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table project_mapping with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table project_issue_metrics with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table project_pr_metrics with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table pull_request_issues with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table refs_issues_diffs with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table teams with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table team_users with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table users with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table user_accounts with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cicd_pipelines with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cicd_tasks with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cicd_deployment_commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cicd_pipeline_commits with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cicd_scopes with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table cicd_deployments with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table boards with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table board_issues with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table board_sprints with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issues with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_changelogs with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_comments with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_labels with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_worklogs with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table sprints with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table sprint_issues with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_assignees with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_relationships with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table issue_custom_array_fields with WHERE \"_raw_data_table LIKE ? AND _raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
time="2023-11-13 09:29:03" level=info msg=" [*models.GitlabProject_dal] deleting data from table _devlake_collector_latest_state with WHERE \"raw_data_table LIKE ? AND raw_data_params = ?\" and params: \"[_raw_gitlab% {\"ConnectionId\":1,\"ProjectId\":2416}]\""
[GIN] 2023/11/13 - 09:29:03 | 200 |  144.946167ms |      172.22.0.6 | DELETE   "/plugins/gitlab/connections/1/scopes/2416?delete_data_only=true"
time="2023-11-13 09:29:03" level=info msg="path /plugins/gitlab/connections/1/scopes will continue"
[GIN] 2023/11/13 - 09:29:03 | 200 |    1.375242ms |      172.22.0.6 | GET      "/plugins/gitlab/connections/1/scopes?page=1&pageSize=10&blueprints=true"
time="2023-11-13 09:29:07" level=info msg="path /projects/my-project will continue"
[GIN] 2023/11/13 - 09:29:07 | 200 |    5.253222ms |      172.22.0.6 | GET      "/projects/my-project"
time="2023-11-13 09:29:07" level=info msg="path /blueprints/1/pipelines will continue"
time="2023-11-13 09:29:07" level=info msg="path /blueprints/1 will continue"
[GIN] 2023/11/13 - 09:29:07 | 200 |     2.31342ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:29:07 | 200 |    8.133984ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:07" level=info msg="path /pipelines/8 will continue"
time="2023-11-13 09:29:07" level=info msg="path /pipelines/8/tasks will continue"
[GIN] 2023/11/13 - 09:29:07 | 200 |    2.513555ms |      172.22.0.6 | GET      "/pipelines/8/tasks"
time="2023-11-13 09:29:07" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:07 | 200 |    3.676214ms |      172.22.0.6 | GET      "/pipelines/8"
[GIN] 2023/11/13 - 09:29:07 | 200 |    3.787958ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
[GIN] 2023/11/13 - 09:29:10 | 200 |      25.215µs |      172.22.0.6 | GET      "/version"
time="2023-11-13 09:29:10" level=info msg="path /plugins/github/connections will continue"
time="2023-11-13 09:29:10" level=info msg="path /plugins/jira/connections will continue"
time="2023-11-13 09:29:10" level=info msg="path /plugins/gitlab/connections will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |     660.235µs |      172.22.0.6 | GET      "/plugins/gitlab/connections"
time="2023-11-13 09:29:10" level=info msg="path /plugins/jenkins/connections will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    1.788091ms |      172.22.0.6 | GET      "/plugins/github/connections"
[GIN] 2023/11/13 - 09:29:10 | 200 |    4.579724ms |      172.22.0.6 | GET      "/plugins/jira/connections"
[GIN] 2023/11/13 - 09:29:10 | 200 |    5.505343ms |      172.22.0.6 | GET      "/plugins/jenkins/connections"
time="2023-11-13 09:29:10" level=info msg="path /plugins/bitbucket/connections will continue"
time="2023-11-13 09:29:10" level=info msg="path /plugins/azuredevops/connections will continue"
time="2023-11-13 09:29:10" level=info msg="path /plugins/sonarqube/connections will continue"
time="2023-11-13 09:29:10" level=info msg="path /plugins/pagerduty/connections will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    2.669235ms |      172.22.0.6 | GET      "/plugins/bitbucket/connections"
[GIN] 2023/11/13 - 09:29:10 | 200 |    3.147669ms |      172.22.0.6 | GET      "/plugins/sonarqube/connections"
[GIN] 2023/11/13 - 09:29:10 | 200 |    3.788549ms |      172.22.0.6 | GET      "/plugins/azuredevops/connections"
[GIN] 2023/11/13 - 09:29:10 | 200 |    4.064593ms |      172.22.0.6 | GET      "/plugins/pagerduty/connections"
time="2023-11-13 09:29:10" level=info msg="path /plugins/tapd/connections will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    3.836721ms |      172.22.0.6 | GET      "/plugins/tapd/connections"
time="2023-11-13 09:29:10" level=info msg="path /plugins/zentao/connections will continue"
time="2023-11-13 09:29:10" level=info msg="path /plugins/bamboo/connections will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    4.650838ms |      172.22.0.6 | GET      "/plugins/zentao/connections"
[GIN] 2023/11/13 - 09:29:10 | 200 |    3.840819ms |      172.22.0.6 | GET      "/plugins/bamboo/connections"
time="2023-11-13 09:29:10" level=info msg="path /plugins/webhook/connections will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    4.415525ms |      172.22.0.6 | GET      "/plugins/webhook/connections"
time="2023-11-13 09:29:10" level=info msg="path /projects/my-project will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    3.344449ms |      172.22.0.6 | GET      "/projects/my-project"
time="2023-11-13 09:29:10" level=info msg="path /blueprints/1 will continue"
time="2023-11-13 09:29:10" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |     2.90687ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:29:10 | 200 |    9.794929ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:10" level=info msg="path /pipelines/8 will continue"
time="2023-11-13 09:29:10" level=info msg="path /pipelines/8/tasks will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    1.567736ms |      172.22.0.6 | GET      "/pipelines/8/tasks"
time="2023-11-13 09:29:10" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:10 | 200 |    4.862735ms |      172.22.0.6 | GET      "/pipelines/8"
[GIN] 2023/11/13 - 09:29:10 | 200 |    6.188338ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:12" level=info msg="path /projects will continue"
[GIN] 2023/11/13 - 09:29:12 | 200 |    5.578282ms |      172.22.0.6 | GET      "/projects?page=1&pageSize=20"
[GIN] 2023/11/13 - 09:29:13 | 200 |      37.635µs |      172.22.0.6 | GET      "/version"
time="2023-11-13 09:29:13" level=info msg="path /projects/my-project will continue"
[GIN] 2023/11/13 - 09:29:13 | 200 |    4.400234ms |      172.22.0.6 | GET      "/projects/my-project"
time="2023-11-13 09:29:13" level=info msg="path /blueprints/1 will continue"
time="2023-11-13 09:29:13" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:13 | 200 |    4.408735ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:29:13 | 200 |    8.792748ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:13" level=info msg="path /pipelines/8 will continue"
time="2023-11-13 09:29:13" level=info msg="path /pipelines/8/tasks will continue"
time="2023-11-13 09:29:13" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:13 | 200 |     864.719µs |      172.22.0.6 | GET      "/pipelines/8/tasks"
[GIN] 2023/11/13 - 09:29:13 | 200 |    1.232462ms |      172.22.0.6 | GET      "/pipelines/8"
[GIN] 2023/11/13 - 09:29:13 | 200 |    6.000477ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:14" level=info msg="path /blueprints/1/trigger will continue"
time="2023-11-13 09:29:14" level=info msg="try locking tables with timeout 2s"
[GIN] 2023/11/13 - 09:29:14 | 200 |   22.363578ms |      172.22.0.6 | POST     "/blueprints/1/trigger"
[GIN] 2023/11/13 - 09:29:14 | 200 |      36.688µs |      172.22.0.6 | GET      "/version"
time="2023-11-13 09:29:14" level=info msg="path /blueprints/1 will continue"
time="2023-11-13 09:29:14" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:14 | 200 |    1.647879ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:29:14 | 200 |     8.20497ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:14" level=info msg="path /pipelines/9 will continue"
time="2023-11-13 09:29:14" level=info msg="path /pipelines/9/tasks will continue"
time="2023-11-13 09:29:14" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:14 | 200 |     860.925µs |      172.22.0.6 | GET      "/pipelines/9/tasks"
[GIN] 2023/11/13 - 09:29:14 | 200 |    1.157601ms |      172.22.0.6 | GET      "/pipelines/9"
[GIN] 2023/11/13 - 09:29:14 | 200 |    3.712721ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] run pipeline, 9, now running runningParallelLabels are []"
time="2023-11-13 09:29:14" level=info msg=" [task service] run task #49 in background "
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #49] start executing task: 49"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #49] start plugin"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #49] total step: 1"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #49] executing subtask setProjectMapping"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #49] finished step: 1 / 1"
time="2023-11-13 09:29:14" level=info msg=" [task service] run task #51 in background "
time="2023-11-13 09:29:14" level=info msg=" [task service] run task #50 in background "
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #50] start executing task: 50"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #51] start executing task: 51"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #51] start plugin"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #50] start plugin"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #51] total step: 4"
time="2023-11-13 09:29:14" level=info msg=" [pipeline service] [pipeline #9] [task #51] executing subtask cloneGitRepo"
time="2023-11-13 09:29:16" level=error msg=" [pipeline service] [pipeline #9] [task #51] [cloneGitRepo] PlainCloneContext\n\tcaused by: Get \"https://git:***@gitlab.com/my-group/my-project.git/info/refs?service=git-upload-pack\": dial tcp: lookup gitlab.com on 127.0.0.11:53: no such host"
time="2023-11-13 09:29:16" level=error msg=" [pipeline service] [pipeline #9] [task #51] attached stack trace\n\t  -- stack trace:\n\t  | github.com/apache/incubator-devlake/core/runner.RunPluginSubTasks\n\t  | \t/app/core/runner/run_task.go:270\n\t  | [...repeated from below...]\n\tWraps: (2) subtask cloneGitRepo ended unexpectedly\n\tWraps: (3) attached stack trace\n\t  -- stack trace:\n\t  | github.com/apache/incubator-devlake/plugins/gitextractor/parser.withTempDirectory\n\t  | \t/app/plugins/gitextractor/parser/clone.go:141\n\t  | github.com/apache/incubator-devlake/plugins/gitextractor/parser.(*GitRepoCreator).CloneOverHTTP\n\t  | \t/app/plugins/gitextractor/parser/clone.go:67\n\t  | github.com/apache/incubator-devlake/plugins/gitextractor/tasks.NewGitRepo\n\t  | \t/app/plugins/gitextractor/tasks/clone.go:63\n\t  | github.com/apache/incubator-devlake/plugins/gitextractor/tasks.CloneGitRepo\n\t  | \t/app/plugins/gitextractor/tasks/clone.go:48\n\t  | github.com/apache/incubator-devlake/core/runner.runSubtask\n\t  | \t/app/core/runner/run_task.go:327\n\t  | github.com/apache/incubator-devlake/core/runner.RunPluginSubTasks\n\t  | \t/app/core/runner/run_task.go:268\n\t  | github.com/apache/incubator-devlake/core/runner.RunPluginTask\n\t  | \t/app/core/runner/run_task.go:158\n\t  | github.com/apache/incubator-devlake/core/runner.RunTask\n\t  | \t/app/core/runner/run_task.go:132\n\t  | github.com/apache/incubator-devlake/server/services.runTaskStandalone\n\t  | \t/app/server/services/task_runner.go:113\n\t  | github.com/apache/incubator-devlake/server/services.RunTasksStandalone.func1\n\t  | \t/app/server/services/task.go:175\n\t  | runtime.goexit\n\t  | \t/usr/local/go/src/runtime/asm_amd64.s:1598\n\tWraps: (4) Get \"https://git:***@gitlab.com/my-group/my-project.git/info/refs?service=git-upload-pack\": dial tcp: lookup gitlab.com on 127.0.0.11:53: no such host\n\tWraps: (5) Get \"https://git:***@gitlab.com/my-group/my-project.git/info/refs?service=git-upload-pack\"\n\tWraps: (6) dial tcp\n\tWraps: (7) lookup gitlab.com on 127.0.0.11:53: no such host\n\tError types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.withPrefix (5) *url.Error (6) *net.OpError (7) *net.DNSError"
time="2023-11-13 09:29:16" level=info msg=" [task service] run task #52 in background "
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] start executing task: 52"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] start plugin"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] total step: 2"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] executing subtask generateDeploymentCommits"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] finished step: 1 / 2"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] executing subtask enrichPrevSuccessDeploymentCommits"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #52] finished step: 2 / 2"
time="2023-11-13 09:29:16" level=info msg=" [task service] run task #53 in background "
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #53] start executing task: 53"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #53] start plugin"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #53] total step: 1"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #53] executing subtask calculateDeploymentCommitsDiff"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #53] finished step: 1 / 1"
time="2023-11-13 09:29:16" level=info msg=" [task service] run task #54 in background "
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] start executing task: 54"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] start plugin"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] total step: 2"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] executing subtask calculateChangeLeadTime"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] finished step: 1 / 2"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] executing subtask ConnectIncidentToDeployment"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] [task #54] finished step: 2 / 2"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] [pipeline #9] pipeline finished in 1221 ms: <nil>"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] finish pipeline #9, now runningParallelLabels is []"
time="2023-11-13 09:29:16" level=info msg=" [pipeline service] get lock and wait next pipeline"
time="2023-11-13 09:29:19" level=info msg="path /pipelines/9 will continue"
[GIN] 2023/11/13 - 09:29:19 | 200 |     2.01313ms |      172.22.0.6 | GET      "/pipelines/9"
time="2023-11-13 09:29:19" level=info msg="path /pipelines/9/tasks will continue"
[GIN] 2023/11/13 - 09:29:19 | 200 |    1.823061ms |      172.22.0.6 | GET      "/pipelines/9/tasks"
time="2023-11-13 09:29:19" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:19 | 200 |    5.963418ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
[GIN] 2023/11/13 - 09:29:47 | 200 |      23.724µs |      172.22.0.6 | GET      "/version"
time="2023-11-13 09:29:47" level=info msg="path /plugins/github/connections will continue"
time="2023-11-13 09:29:47" level=info msg="path /plugins/jira/connections will continue"
time="2023-11-13 09:29:47" level=info msg="path /plugins/gitlab/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |     601.286µs |      172.22.0.6 | GET      "/plugins/github/connections"
[GIN] 2023/11/13 - 09:29:47 | 200 |     488.053µs |      172.22.0.6 | GET      "/plugins/gitlab/connections"
[GIN] 2023/11/13 - 09:29:47 | 200 |     574.179µs |      172.22.0.6 | GET      "/plugins/jira/connections"
time="2023-11-13 09:29:47" level=info msg="path /plugins/jenkins/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |     436.958µs |      172.22.0.6 | GET      "/plugins/jenkins/connections"
time="2023-11-13 09:29:47" level=info msg="path /plugins/bitbucket/connections will continue"
time="2023-11-13 09:29:47" level=info msg="path /plugins/azuredevops/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |      538.38µs |      172.22.0.6 | GET      "/plugins/azuredevops/connections"
time="2023-11-13 09:29:47" level=info msg="path /plugins/sonarqube/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |     539.025µs |      172.22.0.6 | GET      "/plugins/bitbucket/connections"
[GIN] 2023/11/13 - 09:29:47 | 200 |     382.334µs |      172.22.0.6 | GET      "/plugins/sonarqube/connections"
time="2023-11-13 09:29:47" level=info msg="path /plugins/pagerduty/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |     435.318µs |      172.22.0.6 | GET      "/plugins/pagerduty/connections"
time="2023-11-13 09:29:47" level=info msg="path /plugins/tapd/connections will continue"
time="2023-11-13 09:29:47" level=info msg="path /plugins/zentao/connections will continue"
time="2023-11-13 09:29:47" level=info msg="path /plugins/bamboo/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |     638.158µs |      172.22.0.6 | GET      "/plugins/tapd/connections"
[GIN] 2023/11/13 - 09:29:47 | 200 |     481.951µs |      172.22.0.6 | GET      "/plugins/zentao/connections"
[GIN] 2023/11/13 - 09:29:47 | 200 |     515.251µs |      172.22.0.6 | GET      "/plugins/bamboo/connections"
time="2023-11-13 09:29:47" level=info msg="path /plugins/webhook/connections will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |      616.12µs |      172.22.0.6 | GET      "/plugins/webhook/connections"
time="2023-11-13 09:29:47" level=info msg="path /projects/my-project will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |    4.664897ms |      172.22.0.6 | GET      "/projects/my-project"
time="2023-11-13 09:29:47" level=info msg="path /blueprints/1/pipelines will continue"
time="2023-11-13 09:29:47" level=info msg="path /blueprints/1 will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |    2.452092ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:29:47 | 200 |    7.750599ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:47" level=info msg="path /pipelines/9 will continue"
time="2023-11-13 09:29:47" level=info msg="path /pipelines/9/tasks will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |    1.384734ms |      172.22.0.6 | GET      "/pipelines/9"
time="2023-11-13 09:29:47" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:47 | 200 |     697.886µs |      172.22.0.6 | GET      "/pipelines/9/tasks"
[GIN] 2023/11/13 - 09:29:47 | 200 |    5.039353ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:56" level=info msg="path /blueprints/1/trigger will continue"
time="2023-11-13 09:29:56" level=info msg="try locking tables with timeout 2s"
[GIN] 2023/11/13 - 09:29:56 | 200 |   14.267948ms |      172.22.0.6 | POST     "/blueprints/1/trigger"
time="2023-11-13 09:29:56" level=info msg="path /blueprints/1 will continue"
time="2023-11-13 09:29:56" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:56 | 200 |    3.428514ms |      172.22.0.6 | GET      "/blueprints/1"
[GIN] 2023/11/13 - 09:29:56 | 200 |    6.485778ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:56" level=info msg="path /pipelines/10 will continue"
time="2023-11-13 09:29:56" level=info msg="path /pipelines/10/tasks will continue"
time="2023-11-13 09:29:56" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:29:56 | 200 |     824.699µs |      172.22.0.6 | GET      "/pipelines/10/tasks"
[GIN] 2023/11/13 - 09:29:56 | 200 |    1.434972ms |      172.22.0.6 | GET      "/pipelines/10"
[GIN] 2023/11/13 - 09:29:56 | 200 |    6.749758ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] run pipeline, 10, now running runningParallelLabels are []"
time="2023-11-13 09:29:57" level=info msg=" [task service] run task #55 in background "
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #55] start executing task: 55"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #55] start plugin"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #55] total step: 1"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #55] executing subtask setProjectMapping"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #55] finished step: 1 / 1"
time="2023-11-13 09:29:57" level=info msg=" [task service] run task #57 in background "
time="2023-11-13 09:29:57" level=info msg=" [task service] run task #56 in background "
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #57] start executing task: 57"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #56] start executing task: 56"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #57] start plugin"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #57] total step: 4"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #57] executing subtask cloneGitRepo"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #56] start plugin"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #56] [api async client] creating scheduler for api \"https://gitlab.com/api/v4/\", number of workers: 13, 10000 reqs / 1h0m0s (interval: 360ms)"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #56] total step: 35"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #56] executing subtask CollectDeployment"
time="2023-11-13 09:29:57" level=info msg=" [pipeline service] [pipeline #10] [task #56] [CollectDeployment] start api collection"
time="2023-11-13 09:30:00" level=info msg=" [pipeline service] [pipeline #10] [task #57] finished step: 1 / 4"
time="2023-11-13 09:30:00" level=info msg=" [pipeline service] [pipeline #10] [task #57] executing subtask collectGitCommits"
time="2023-11-13 09:30:00" level=info msg=" [pipeline service] [pipeline #10] [task #56] [CollectDeployment] finished records: 1"
time="2023-11-13 09:30:01" level=info msg="path /pipelines/10 will continue"
[GIN] 2023/11/13 - 09:30:01 | 200 |    1.581161ms |      172.22.0.6 | GET      "/pipelines/10"
time="2023-11-13 09:30:01" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:01 | 200 |    1.812281ms |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:01" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:01 | 200 |    5.981967ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:02" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] total jobs: 1409"
time="2023-11-13 09:30:02" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 1"
time="2023-11-13 09:30:03" level=info msg=" [pipeline service] [pipeline #10] [task #56] [CollectDeployment] finished records: 3"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] [CollectDeployment] end api collection without error"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] finished step: 1 / 35"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] executing subtask collectApiIssues"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectApiIssues] start api collection"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectApiIssues] finished records: 1"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectApiIssues] end api collection without error"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] finished step: 2 / 35"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] executing subtask collectUsers"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectUsers] collect all gitlab users"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectUsers] start api collection"
time="2023-11-13 09:30:05" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 210"
time="2023-11-13 09:30:06" level=info msg="path /pipelines/10 will continue"
[GIN] 2023/11/13 - 09:30:06 | 200 |    1.584585ms |      172.22.0.6 | GET      "/pipelines/10"
time="2023-11-13 09:30:06" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:06 | 200 |     1.12323ms |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:06" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:06 | 200 |    5.876552ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:06" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectUsers] finished records: 1"
time="2023-11-13 09:30:08" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 293"
time="2023-11-13 09:30:09" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectUsers] finished records: 10"
time="2023-11-13 09:30:11" level=info msg="path /pipelines/10 will continue"
[GIN] 2023/11/13 - 09:30:11 | 200 |    1.425683ms |      172.22.0.6 | GET      "/pipelines/10"
time="2023-11-13 09:30:11" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:11 | 200 |     867.745µs |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:11" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:11 | 200 |    5.249234ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:11" level=info msg=" [pipeline service] [pipeline #10] [task #56] [collectUsers] end api collection without error"
time="2023-11-13 09:30:11" level=info msg=" [pipeline service] [pipeline #10] [task #56] finished step: 3 / 35"
time="2023-11-13 09:30:11" level=info msg=" [pipeline service] [pipeline #10] [task #56] executing subtask ExtractDeployment"
time="2023-11-13 09:30:11" level=info msg=" [pipeline service] [pipeline #10] [task #56] [ExtractDeployment] get data from _raw_gitlab_deployments where params={\"ConnectionId\":1,\"ProjectId\":2416} and got 493"
time="2023-11-13 09:30:11" level=info msg=" [pipeline service] [pipeline #10] [task #56] [ExtractDeployment] finished records: 1"
time="2023-11-13 09:30:11" level=info msg="\x1b[31;1m/app/impls/dalgorm/dalgorm.go:237 ... I HAVE TRUNCATED THIS OUTPUT, BECAUSE THERE ARE SENSIBLE DATA.
time="2023-11-13 09:30:11" level=error msg=" [pipeline service] [pipeline #10] [task #56] attached stack trace\n\t  -- stack trace:\n\t  | github.com/apache/incubator-devlake/core/runner.RunPluginSubTasks\n\t  | \t/app/core/runner/run_task.go:270\n\t  | [...repeated from below...]\n\tWraps: (2) subtask ExtractDeployment ended unexpectedly\n\tWraps: (3) attached stack trace\n\t  -- stack trace:\n\t  | github.com/apache/incubator-devlake/impls/dalgorm.(*Dalgorm).convertGormError\n\t  | \t/app/impls/dalgorm/dalgorm.go:495\n\t  | github.com/apache/incubator-devlake/impls/dalgorm.(*Dalgorm).CreateOrUpdate\n\t  | \t/app/impls/dalgorm/dalgorm.go:237\n\t  | github.com/apache/incubator-devlake/helpers/pluginhelper/api.(*BatchSave).flushWithoutLocking\n\t  | \t/app/helpers/pluginhelper/api/batch_save.go:131\n\t  | github.com/apache/incubator-devlake/helpers/pluginhelper/api.(*BatchSave).Close\n\t  | \t/app/helpers/pluginhelper/api/batch_save.go:147\n\t  | github.com/apache/incubator-devlake/helpers/pluginhelper/api.(*BatchSaveDivider).Close\n\t  | \t/app/helpers/pluginhelper/api/batch_save_divider.go:96\n\t  | github.com/apache/incubator-devlake/helpers/pluginhelper/api.(*ApiExtractor).Execute\n\t  | \t/app/helpers/pluginhelper/api/api_extractor.go:142\n\t  | github.com/apache/incubator-devlake/plugins/gitlab/tasks.ExtractDeployment\n\t  | \t/app/plugins/gitlab/tasks/deployment_extractor.go:67\n\t  | github.com/apache/incubator-devlake/core/runner.runSubtask\n\t  | \t/app/core/runner/run_task.go:327\n\t  | github.com/apache/incubator-devlake/core/runner.RunPluginSubTasks\n\t  | \t/app/core/runner/run_task.go:268\n\t  | github.com/apache/incubator-devlake/core/runner.RunPluginTask\n\t  | \t/app/core/runner/run_task.go:158\n\t  | github.com/apache/incubator-devlake/core/runner.RunTask\n\t  | \t/app/core/runner/run_task.go:132\n\t  | github.com/apache/incubator-devlake/server/services.runTaskStandalone\n\t  | \t/app/server/services/task_runner.go:113\n\t  | github.com/apache/incubator-devlake/server/services.RunTasksStandalone.func1\n\t  | \t/app/server/services/task.go:175\n\t  | runtime.goexit\n\t  | \t/usr/local/go/src/runtime/asm_amd64.s:1598\n\tWraps: (4) Error 1406 (22001): Data too long for column 'deployable_commit_message' at row 51 (500)\n\tWraps: (5) Error 1406 (22001): Data too long for column 'deployable_commit_message' at row 51\n\tError types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *withstack.withStack (4) *errutil.withPrefix (5) *mysql.MySQLError"
time="2023-11-13 09:30:11" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 424"
time="2023-11-13 09:30:15" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 705"
time="2023-11-13 09:30:16" level=info msg="path /pipelines/10 will continue"
time="2023-11-13 09:30:16" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:16 | 200 |    1.690413ms |      172.22.0.6 | GET      "/pipelines/10"
[GIN] 2023/11/13 - 09:30:16 | 200 |     976.897µs |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:16" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:16 | 200 |    5.709968ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:18" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 778"
time="2023-11-13 09:30:21" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 925"
time="2023-11-13 09:30:21" level=info msg="path /pipelines/10 will continue"
[GIN] 2023/11/13 - 09:30:21 | 200 |    1.637441ms |      172.22.0.6 | GET      "/pipelines/10"
time="2023-11-13 09:30:21" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:21 | 200 |     979.296µs |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:21" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:21 | 200 |    4.565669ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:23" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 1000"
time="2023-11-13 09:30:26" level=info msg="path /pipelines/10 will continue"
[GIN] 2023/11/13 - 09:30:26 | 200 |    2.345216ms |      172.22.0.6 | GET      "/pipelines/10"
time="2023-11-13 09:30:26" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:26 | 200 |      855.33µs |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:26" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:26 | 200 |    7.813673ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:26" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 1161"
time="2023-11-13 09:30:29" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 1238"
time="2023-11-13 09:30:31" level=info msg="path /pipelines/10 will continue"
time="2023-11-13 09:30:31" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:31 | 200 |    2.379508ms |      172.22.0.6 | GET      "/pipelines/10"
[GIN] 2023/11/13 - 09:30:31 | 200 |      761.05µs |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:31" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:31 | 200 |    5.013819ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitCommits] finished records: 1386"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] finished step: 2 / 4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] executing subtask collectGitBranches"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitBranches] total jobs: 63"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitBranches] finished records: 1"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] finished step: 3 / 4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] executing subtask collectGitTags"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitTags] total jobs: 139"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:5a571bba260d342fd90e28e3530b9dde391ce116"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [collectGitTags] finished records: 1"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:cead67844e38a92b1c5440ac27d361f26fdd3e56"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:cefd891a0d4e1eb5994c3d96fa15fbdf706b57df"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:cf89019c48388795b0b66dbae156fd24a58b1d86"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:c5332cb06330282c9d5c51272f41879fda6feb33"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:1e4f18c4db0b0ab990a801a0aa59f03746c69594"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:af3313488e41af46c78a8ddd81dfefbf32cd5d49"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:d70379bc89ff37b03f6d5da4e0b31b2b77456449"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:340b87d0c46ed29f7e59ce56723f87e905df0cca"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:b45f0040280ea140513b5d437c2d8d16c3f4d67d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:c23c67c5c81c773308ad8f115ddb8f1b1c3008a1"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:fa54e3f9bd6bca42e0c24beafc86c06a8b881fb6"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:a3d99036aad2cc788f2ada63a9bb00fcdb1dfc6f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:40c7d490ba9cdc009970f8aba234191be76de8ec"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:694726565ab7d82777b2c74fd4781fd7e693e615"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:614ca107098441fd6a20a8cb1a7fe7f9e97189cd"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:61ba58b197f18186ebaa3ba5a6ec096faeece4e4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:375e5a18a118f8a2141b42002262678b824885b5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:dcc15e1f56ccee5b8bf1f832f26e1c6d74256b17"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:6130cff9a1e9c3a0049d734d0fa97b716c930086"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:901c940819ec3aab9608fd1e13e81ba25d2c606b"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:849abd902234a183cd4519d3f927a1c2df15aaed"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:1c043000d0a24f71e5c14d88a24c2579ccf71591"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:becaaa8302edc681e83472efdcd1d6e24e482a93"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:9186f749e2b68fe7407b72a749120558ddf53e44"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:cb8ff4670ac5f843d7d4d0b3b1c1630b7e150f2a"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:5b57ee7953744e54c5063183cb171fbf91c47c72"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:f5af3d4b1babc51a6c5104b4a17d59fc452a2f0b"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:701262ed2966811d423d8cee11a4b6a64381c7e5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:e42fedaffb8b6685127ae7d3b35477fa6e043c9d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:532cb168343157106d2e3db4259540f82aff77c5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:52974cd3acf05bdd96c5505e1351e19eb65a4399"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:834b6e79f34bba7d0c717da3f483e82583fb9b44"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:3e444203d9a46b5f345ec65e04cd95b1aaf8181a"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:310f26764335a1588a434c65b6fd2e44531c19f6"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:09f772741b5177b2f4bbce59beb3997a7245ee53"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:00c056a0c502595d8d6c65f9eb8d7b6ec9b65206"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:9b3c656bac0b3a85fa310c16a9d6b05a829b26db"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:9d7c1d3fe44a6d889253ca594bf7805c40146684"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:d030b1fbcf1a58955a5765a2594d2e8ef4d2a641"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:b1b4014baaaeb93d0c267d8d0ab214a4b3cfa255"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:d294bcf6242f01a590e73a1250e665fce54f8dae"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:453399f1be3ca86316381495c9371d82b816add6"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:662e2fb752b170631af2bcf7a2bceac86c5dca92"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:9517679e09a727cc306f6d90e4a472c8fc8084d5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:a532eca435a6fd8474bec012852e949bee3f477f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:44b7889a844801c7f341fd625751676beed6688d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:fef867fcd49c871a0c36699145327477c9bc9a52"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:55d146caff19b0be5d05498c2f83c303b09e7b0f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:126c75273d0c22b0ffbfb90cf8d369b9a268cecd"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:85b3e531b0c300a3414bd144871ffc5ded9a89c3"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:7e16ec31805c584b4ab14c1dfccca2c3ea3ac24e"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:bb836dc25d4bc89c3486517b3b42693df57063d1"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:6b76dee828da11a3637c559535e553f6f91c5e93"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:3e0688c516ca4d0f00854ab6986d148444f4e92f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:5ae425bbd8a7cbdb695d52842d64562a1894a1d5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:67d2a3a8717f855ea64e6916a40d917996bf92eb"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:4c69692544c6d47247955ba0d4745e28646e16bc"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:1c6bb41c0a65eb40f5928b6017b2ccd4fccbb6c8"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:a4afd425d70be4dba7893b44675c0bbd2d2f2ba9"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:f4a6c881adc119f05ef42e509b97596dbd332656"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:f64e57e338f8f6fb6f6878fc6cefea1a1c72ead4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:12a505949789b6a66f8550525bcec3e52a5cdc12"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:1e5dca888c18ea4582298638e1e66abdf9317a86"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:13108465f17b6194c3ba7cf55df94dd1c657473f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:b8153b3ce1e5a018d77dbbcc47e6681f50e00b90"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:36f023ab3c45c7c73e256ed566ba38e804950d56"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:ff808bf9aba45df8f5b7f443dddb13ae4ebce79b"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:280e637b2da5363c322d708efe7bffc3cdde2452"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:bb40bf09928e3afb99cccfbc900bdc694e06ec81"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:5f896cffc45afeb151314d830c1f9bae442f61d8"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:3a5f3127e9bb5d009ea27e6b81268184bd4dacfe"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:75e97e5c06c46676f366f2733615d8b7bed7135c"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:b555413d79acc1ab4494f7448becd560d7f1c8f8"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:02d3ac1ad602fd4bc9826ef6104429979fc820ed"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:ac5450d9b41cea6aad19b294db4cb13fb67f2e6c"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:823d47dc2aab49c805b401ebf9c58053bbdf432a"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:122598e21fa2731e6c658ea4879f2ef2dd8c24cb"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:28b7b39ea4ac4e39c0d8f770f378bb0fcd144885"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:3dd06f1ab36f55f4fc6c64a205ec130893b422b2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:a4da14cc13f8328de7d6ffce0b74e143bdfc0f4e"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:493b52f883587a6b3a07dfeea94438d2ea016fd3"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:bdf650e3400eb9c4657b25e586ee33fd4e44bf5f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:d7ac4bc547df324486991d908956e781f53bc254"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:83258ae4efe1067abea9108402fb3479de5ae3c5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:962e924e668ad2dd604a7744dac212acea21388f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:4d494a32580ff7189041a3427c25554c70d1c474"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:c43ebb2bd6e9c2b046f9c8cd96263d3edd3a38a3"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:17b57dc05b83eef5f86b70691a651b9f2d153e03"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:c510138ae1903df306dda6b4d4753c78a33078e7"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:72d1404d4f6b5a90c5f782ebc041e9fe4dcd482f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:9f7541c3fa25f40abe99822fade580c64eea109f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:8cfd5913a4716a610083cabf9d395a942510a019"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:66d25f2c071476fbabff41cdbbf13a95aa18926e"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:8f92d879bd3de89c10e966cc585eafb8c1496111"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:d2df479f5050e0ce827d301ef52db3cd41d7679d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:4684627228f7564e9e3fcbd8cbc6d56d56ce06b4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:fca4992f46ba565312331faa3cad68d32f5ea9b9"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:e58beda6912e2b7e08d64f15afc331fc1c7ae0b4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:92862523f2a32832f04c8bb6dc6762c079cd8150"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:fb03e6e6d29752aaa31d814902579e3a647e26ef"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:415e4738eb5137aec2f95380fa6e0e9516cbe36d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:ed2098b34828d3bdc01ba8acb8ec1c59ccf7f129"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:f9338edd2d1ec58a1c886ad7c11d7359b7351e39"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:e7b89d721af36013ba4856f7ed60c373fe94cc1d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:6aea1fbbc0130032d11fdea1c29b1620a2552cec"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:c989e7df14da1678993bb6bff294b100f7abce33"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:24664a350c86aaeb17f874a3290cf07ef3e7acdc"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:e63abf1c2b78ca9615931b750141d99ebf5d68f0"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:fc9dbe10279904943e93b261f6926ba1c913a6c9"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:b8aecb68cda6f476c58854c28f627f03dcc26d41"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:fc5760cd165409464ebae4110b6fd0f453330ddd"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:8388c48508e7a0a26ca1486b592bd6bb80a0cb51"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:32262bd4296dcef396f734785ad6d386416a9b86"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:6b2de2dc797bfea771c9a6ae2849a0f0c333b79e"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:a3e72e0a72a6324b29a71fa357bbde93dde8c7c3"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:25d2e595b9316ed420bb74e0763b728f5e0dfc07"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:ecceaf498b2774d37c66373e0e28c1f11f230f0d"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:f86f08435a32e29652c27087a6d6b2dd6ee52b83"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:5b542f380c1d902cb481dad9c04b7ee888981323"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:4c222c238a5f31b8e9fff2ce1c9324056fee412c"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:54549d3cfe5e9529268718c2b6b92d3a50f7c195"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:c944b89cfc57d8a292947e32cd284fd2d8eb237a"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:230b69f32d2e367cb85cd86fb0525444bf00362b"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:2d9304362d8b4f64bd74a9f26d33177749beaeae"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:906257ad4d5eff5f463ea747b03cbc4d5003509f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:39db7182fc313569b8b74c8924e6652fd0c120a4"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:0db3b4ae8951bf199ff407e516f399a785b7dde2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:9d558e64737dbf86966c3a7b612bbae7cb6b5534"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:28e5a2a8fa2c938b47612e8db89f59637112983f"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:5ef83f667438fff8e8f922d02ba947066b58d514"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:6cfc3b2a920d871ae435c9881d6b3964a25770c9"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:220e72a97474a201c9282215204ab83df3d802ff"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:771348e2504a632becb4b06faca2ce9407aa9fd9"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:01d1ee41f599bce6312824e10f388bf1afa14ed5"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:aca8d995188b284782896671a405d7e93cad6c5e"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:4a5cee4c8f59a47f80f372bfbb5ac8b8a52e1bad"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:f7569fcc5cdec0c6b2c88d49200d84838e37e460"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] [cloneGitRepo] tagCommit:833200989e0652fa7283a23b074d39a6184846a0"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #57] finished step: 4 / 4"
time="2023-11-13 09:30:35" level=info msg=" [task service] run task #58 in background "
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] start executing task: 58"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] start plugin"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] total step: 2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] executing subtask generateDeploymentCommits"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] finished step: 1 / 2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] executing subtask enrichPrevSuccessDeploymentCommits"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #58] finished step: 2 / 2"
time="2023-11-13 09:30:35" level=info msg=" [task service] run task #59 in background "
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #59] start executing task: 59"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #59] start plugin"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #59] total step: 1"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #59] executing subtask calculateDeploymentCommitsDiff"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #59] finished step: 1 / 1"
time="2023-11-13 09:30:35" level=info msg=" [task service] run task #60 in background "
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] start executing task: 60"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] start plugin"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] total step: 2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] executing subtask calculateChangeLeadTime"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] finished step: 1 / 2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] executing subtask ConnectIncidentToDeployment"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] [task #60] finished step: 2 / 2"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] [pipeline #10] pipeline finished in 38607 ms: <nil>"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] finish pipeline #10, now runningParallelLabels is []"
time="2023-11-13 09:30:35" level=info msg=" [pipeline service] get lock and wait next pipeline"
time="2023-11-13 09:30:36" level=info msg="path /pipelines/10 will continue"
[GIN] 2023/11/13 - 09:30:36 | 200 |    2.250226ms |      172.22.0.6 | GET      "/pipelines/10"
time="2023-11-13 09:30:36" level=info msg="path /pipelines/10/tasks will continue"
[GIN] 2023/11/13 - 09:30:36 | 200 |    1.232599ms |      172.22.0.6 | GET      "/pipelines/10/tasks"
time="2023-11-13 09:30:36" level=info msg="path /blueprints/1/pipelines will continue"
[GIN] 2023/11/13 - 09:30:36 | 200 |    5.060796ms |      172.22.0.6 | GET      "/blueprints/1/pipelines"

antoniomuso avatar Nov 13 '23 09:11 antoniomuso

Okay, I found the error. The pipeline fails before the task is executed. This is because the DeployableCommitMessage is bigger than 255 (Db max size). I think this is a bug, and for now, I fixed it in this way.

antoniomuso avatar Nov 13 '23 13:11 antoniomuso

@klesh I enriched _tool_gitlab_account to reach the final result. What do you think about it?

antoniomuso avatar Nov 15 '23 11:11 antoniomuso

@klesh Updates about this PR?

antoniomuso avatar Nov 24 '23 11:11 antoniomuso

Hi, @antoniomuso Do you think the PR is ready for review? Please mark it as Ready For Review if so. I'm seeing the status of this PR showing Draft which is not ready.😂

klesh avatar Nov 27 '23 03:11 klesh

Hi, @antoniomuso. Do you think the PR is ready for review? Please mark it as Ready For Review if so. I'm seeing the status of this PR showing Draft, which is not ready.😂

It is not entirely ready; I have to add some tests. But before starting to write tests, I would like to review the code to know if the flow I follow is correct or if you think there is a better way to do it. @klesh

antoniomuso avatar Nov 27 '23 08:11 antoniomuso

What is the difference between user and account?

@klesh In this case is no difference; I called GitlabUserAccount because Account just exists, but in reality, this table is needed only to enrich the _tool_gitlab_account. Is it better to call it another way?

antoniomuso avatar Nov 30 '23 08:11 antoniomuso

What is the difference between user and account?

@klesh In this case is no difference; I called GitlabUserAccount because Account just exists, but in reality, this table is needed only to enrich the _tool_gitlab_account. Is it better to call it another way?

Oh, in that case, how about _tool_gitlab_account_details or _tool_gitlab_account_extendeds? sth that can convey that the table contains extra information based on the _tool_gitlab_accounts table.

klesh avatar Dec 01 '23 04:12 klesh

@antoniomuso please resolve these errors image

d4x1 avatar Dec 08 '23 01:12 d4x1

@antoniomuso There are new errors: image

d4x1 avatar Jan 05 '24 02:01 d4x1

Sorry, Now I start to work on it; I was on vacation.

antoniomuso avatar Jan 05 '24 09:01 antoniomuso

Sorry, Now I start to work on it; I was on vacation.

No worry and thanks for your contribution. Please let us know when you are ready, we will take a another look at it ASAP.

klesh avatar Jan 08 '24 03:01 klesh

@klesh It is ready, can you take a look?

antoniomuso avatar Jan 10 '24 10:01 antoniomuso

@antoniomuso Good work, looks good to me overall. Some minor issues you may want to take a look.

klesh avatar Jan 11 '24 04:01 klesh

LGTM, to be merged after v0.21-beta1 released

klesh avatar Jan 12 '24 04:01 klesh

@klesh, when will this PR be merged?

antoniomuso avatar Mar 06 '24 14:03 antoniomuso

Sorry for merging it so late, it has been done.

klesh avatar Mar 07 '24 09:03 klesh