Skip to content

Commit

Permalink
Fix notary version - need exact version to construct a URL
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-subbotin committed Aug 2, 2024
1 parent 39e3736 commit 5b76795
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import java.util.concurrent.TimeUnit
val targetUrl = URI("https://localhost:8888")
const val USER = "admin"
const val PASSWORD = "admin"
const val CORDA_RUNTIME_VERSION_GRADLE_BETA = "^5.3.0-beta"
const val CORDA_NOTARY_VERSION_STABLE = "5.3.0.0-HC01"
const val CORDA_IMAGE_TAG_BETA = "unstable-5.3.0"
// Get preTest image tag from the pipeline, or fallback to stable version
val testEnvCordaImageTag = System.getenv("CORDA_IMAGE_TAG") ?: CORDA_IMAGE_TAG_BETA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data class GradleProperties(
val cordaClusterURL: String = "$targetUrl",
val cordaRestUser: String = USER,
val cordaRestPasswd: String = PASSWORD,
val notaryVersion: String = CORDA_RUNTIME_VERSION_GRADLE_BETA,
val notaryVersion: String = CORDA_NOTARY_VERSION_STABLE,
val runtimeVersion: String = testEnvCordaImageTag, // Start/stop tasks should use preTest images or latest beta for scheduled runs
val composeFilePath: String = "config/combined-worker-compose.yml",
val networkConfigFile: String,
Expand Down

0 comments on commit 5b76795

Please sign in to comment.