Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson committed Oct 25, 2021
1 parent d3ae200 commit c985fba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
# 0.1.18 (2021-10-24)
# 0.1.19 (2021-10-25)
- Improved CLI default config

# 0.1.17 (2021-10-22)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -2,7 +2,7 @@ kotlin.code.style=official

platformGroup = com.sourceplusplus
platformName = spp-platform
platformVersion = 0.1.18
platformVersion = 0.1.19

#SkyWalking 8.7.0-compatible
vertxVersion = 4.0.2
Expand Down
Expand Up @@ -35,7 +35,7 @@ object PlatformCLI : CliktCommand(name = "spp-cli", allowMultipleSubcommands = t
val verbose by option("-v", "--verbose", help = "Enable verbose mode").flag()
private val platformHost: String by option("-p", "--platform", help = "Source++ platform host")
.default(
(if (System.getenv("SPP_DISABLE_TLS") != "true") "https://" else "http")
(if (System.getenv("SPP_DISABLE_TLS") != "true") "https://" else "http://")
+ (System.getenv("SPP_PLATFORM_HOST") ?: "localhost") + ":5445"
)
private val platformCertificate by option("-c", "--certificate", help = "Source++ platform certificate").file()
Expand Down

0 comments on commit c985fba

Please sign in to comment.