Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Commit

Permalink
Updating property name
Browse files Browse the repository at this point in the history
  • Loading branch information
jrichard committed May 24, 2017
1 parent c762918 commit 65511e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class BdioUploader {
@Value('${packman.hub.proxy.password}')
String hubProxyPassword

@Value('${packman.hub.insecure}')
String hubInsecure
@Value('${packman.hub.auto.import.cert}')
String hubImportCertificate


void uploadBdioFiles(List<File> createdBdioFiles) {
Expand Down Expand Up @@ -86,7 +86,7 @@ class BdioUploader {
hubServerConfigBuilder.setProxyUsername(hubProxyUsername)
hubServerConfigBuilder.setProxyPassword(hubProxyPassword)

hubServerConfigBuilder.setAutoImportHttpsCertificates(Boolean.valueOf(hubInsecure))
hubServerConfigBuilder.setAutoImportHttpsCertificates(Boolean.valueOf(hubImportCertificate))
hubServerConfigBuilder.setLogger(slf4jIntLogger)

hubServerConfigBuilder
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ packman.hub.timeout=120
packman.hub.username=
packman.hub.password=

packman.hub.insecure=
packman.hub.auto.import.cert=

packman.hub.proxy.host=
packman.hub.proxy.port=
Expand Down

0 comments on commit 65511e4

Please sign in to comment.