jenkins email-ext 插件的零星问题
sporadic issue with jenkins email-ext plugin
我使用 email-ext (v2.57.2) 在 jenkins 管道作业中设置了电子邮件通知。电子邮件在前几次迭代中发送正常,但在大约第 4 次执行后,出现以下错误(并在所有后续运行中继续发生):
> [Pipeline] emailext messageContentType = text/html; charset=UTF-8
> Adding recipients from project recipient list Adding recipients from
> trigger recipient list Successfully created MimeMessage An attempt to
> send an e-mail to empty list of recipients, ignored. Some error
> occured trying to send the email...check the Jenkins log
不太确定要查看哪个 Jenkins 日志...
发现它与 $class: "RequesterRecipientProvider 的使用有关。当作业 运行s 以预定的方式出现时,此值显示为 null。仅当作业是 运行 手动填充的。
最终将 Jenkinsfile 切换为使用 jenkins 环境变量。
def emailRecipients = "${env.EMAIL_RECIPIENTS}";
emailext (subject: subject, body: details, to: emailRecipients)
此问题的另一个潜在原因是在多分支管道作业的高级克隆行为中启用了浅克隆选项。使用此选项,即使不是全部,大多数 emailext
收件人提供商可能会空着,即使作业已被破坏构建的提交触发。
我使用 email-ext (v2.57.2) 在 jenkins 管道作业中设置了电子邮件通知。电子邮件在前几次迭代中发送正常,但在大约第 4 次执行后,出现以下错误(并在所有后续运行中继续发生):
> [Pipeline] emailext messageContentType = text/html; charset=UTF-8
> Adding recipients from project recipient list Adding recipients from
> trigger recipient list Successfully created MimeMessage An attempt to
> send an e-mail to empty list of recipients, ignored. Some error
> occured trying to send the email...check the Jenkins log
不太确定要查看哪个 Jenkins 日志...
发现它与 $class: "RequesterRecipientProvider 的使用有关。当作业 运行s 以预定的方式出现时,此值显示为 null。仅当作业是 运行 手动填充的。
最终将 Jenkinsfile 切换为使用 jenkins 环境变量。
def emailRecipients = "${env.EMAIL_RECIPIENTS}";
emailext (subject: subject, body: details, to: emailRecipients)
此问题的另一个潜在原因是在多分支管道作业的高级克隆行为中启用了浅克隆选项。使用此选项,即使不是全部,大多数 emailext
收件人提供商可能会空着,即使作业已被破坏构建的提交触发。