Skip to content

Commit

Permalink
loadSources -> loadConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Aug 26, 2024
1 parent 5fb93d2 commit 4ee68ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/globalConfiguration.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"bdd": 120,
"getBinaries": 60,
"createInfoBase": 60,
"loadSources": 60,
"loadConfiguration": 60,
"designerToEdtFormatTransformation": 60,
"edtToDesignerFormatTransformation": 60,
"edtValidate": 240,
Expand Down
2 changes: 1 addition & 1 deletion resources/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"type" : "integer",
"description" : "Таймаут шага создания информационной базы, в минутах.\n По умолчанию содержит значение 60.\n "
},
"loadSources" : {
"loadConfiguration" : {
"type" : "integer",
"description" : "Таймаут шага загрузки исходников в базу, в минутах.\n По умолчанию содержит значение 60.\n "
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class TimeoutOptions implements Serializable {
@JsonPropertyDescription('''Таймаут шага загрузки конфигурации в базу, в минутах.
По умолчанию содержит значение 60.
''')
Integer loadSources
Integer loadConfiguration

@JsonPropertyDescription('''Таймаут шага инициализации информационной базы, в минутах.
По умолчанию содержит значение 60.
Expand Down
2 changes: 1 addition & 1 deletion vars/pipeline1C.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void call() {

stage('Загрузка конфигурации') {
steps {
timeout(time: config.timeoutOptions.loadSources, unit: TimeUnit.MINUTES) {
timeout(time: config.timeoutOptions.loadConfiguration, unit: TimeUnit.MINUTES) {
script {
if (config.infoBaseFromFiles()) {
// Создание базы загрузкой из файлов
Expand Down

0 comments on commit 4ee68ee

Please sign in to comment.