mirror of https://github.com/dapr/java-sdk.git
Update cli and runtime ITs to 1.0.0-rc.1 (#387)
* Fix ITs due to change in logs in daprd. * Update to 1.0.0-rc.1 runtime and cli.
This commit is contained in:
parent
2bafc05e4c
commit
43107c3492
|
@ -22,10 +22,10 @@ jobs:
|
|||
GOARCH: amd64
|
||||
GOPROXY: https://proxy.golang.org
|
||||
JDK_VER: 13.0.x
|
||||
DAPR_RUNTIME_VER: 0.11.0-rc.2
|
||||
DAPR_RUNTIME_VER: 1.0.0-rc.1
|
||||
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/e7c9a643dfefbcfff0c2c26c12029259e6e81180/install/install.sh
|
||||
DAPR_CLI_REF: 8b3f62fb739b198bc07f36b08a7c77595a6d33c4
|
||||
DAPR_REF: 20c989955c66359665ae98181e7d021928ab2e0e
|
||||
DAPR_CLI_REF: v1.0.0-rc.1
|
||||
DAPR_REF:
|
||||
OSSRH_USER_TOKEN: ${{ secrets.OSSRH_USER_TOKEN }}
|
||||
OSSRH_PWD_TOKEN: ${{ secrets.OSSRH_PWD_TOKEN }}
|
||||
GPG_KEY: ${{ secrets.GPG_KEY }}
|
||||
|
|
|
@ -8,7 +8,7 @@ package io.dapr.it.actors.app;
|
|||
import io.dapr.actors.runtime.ActorRuntime;
|
||||
|
||||
public class MyActorService {
|
||||
public static final String SUCCESS_MESSAGE = "established connection to placement service at";
|
||||
public static final String SUCCESS_MESSAGE = "dapr initialized. Status: Running";
|
||||
|
||||
/**
|
||||
* Starts the service.
|
||||
|
|
|
@ -11,7 +11,7 @@ import java.time.Duration;
|
|||
|
||||
public class DemoActorService {
|
||||
|
||||
public static final String SUCCESS_MESSAGE = "established connection to placement service at";
|
||||
public static final String SUCCESS_MESSAGE = "dapr initialized. Status: Running";
|
||||
|
||||
/**
|
||||
* Starts the service.
|
||||
|
|
|
@ -12,7 +12,7 @@ import java.time.Duration;
|
|||
|
||||
public class StatefulActorService {
|
||||
|
||||
public static final String SUCCESS_MESSAGE = "established connection to placement service at";
|
||||
public static final String SUCCESS_MESSAGE = "dapr initialized. Status: Running";
|
||||
|
||||
/**
|
||||
* Starts the service.
|
||||
|
|
Loading…
Reference in New Issue