Skip to content

Commit

Permalink
Фикс ошибки с загрузкой расширения
Browse files Browse the repository at this point in the history
  • Loading branch information
Segate-ekb committed Aug 27, 2024
1 parent 50e73ea commit f158b48
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/ru/pulsar/jenkins/library/steps/LoadExtensions.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,15 @@ class LoadExtensions implements Serializable {
def optionsInstance = config."$optionsName"

if (optionsInstance) {
try {
// Для InitInfoBaseOptions необходимо возвращать путь к файлу настроек vrunner только если база загружается из архива
if (!optionsInstance.templateDBLoaded()) {
return ""
}
} catch (MissingMethodException e) {
// Метод templateDBLoaded вполне может отсутствовать, и это не является ошибкой
}

return optionsInstance."vrunnerSettings"
} else {
return ""
Expand Down

0 comments on commit f158b48

Please sign in to comment.