Skip to content

Commit 5fcc723

Browse files
committed
update
Signed-off-by: Deepanshu Agarwal <[email protected]>
1 parent 5983591 commit 5fcc723

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

scripts/fetch-proto.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ OS=$(echo `uname`|tr '[:upper:]' '[:lower:]')
33
ARCH=$(uname -m)
44
ORG_NAME="dapr"
55
REPO_NAME="dapr"
6-
BRANCH_NAME="v1.14.0-rc.5"
6+
BRANCH_NAME="v1.14.0-rc.7"
77

88
# Path to store output
99
PATH_ROOT=$(pwd)

test/components/binding-mqtt.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ metadata:
1818
name: binding-mqtt
1919
namespace: default
2020
spec:
21-
type: bindings.mqtt
21+
type: bindings.mqtt3
2222
version: v1
2323
metadata:
2424
- name: consumerID
@@ -32,4 +32,6 @@ spec:
3232
- name: retain
3333
value: "false"
3434
- name: cleanSession
35-
value: "false"
35+
value: "false"
36+
- name: direction
37+
value: "input, output"

test/e2e/grpc/server.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ See the License for the specific language governing permissions and
1111
limitations under the License.
1212
*/
1313

14-
import { CommunicationProtocolEnum, DaprServer, HttpMethod } from "../../../src";
14+
import { CommunicationProtocolEnum, DaprServer, HttpMethod, LogLevel } from "../../../src";
1515

1616
const serverHost = "localhost";
1717
const serverPort = "50001";
@@ -35,6 +35,9 @@ describe("grpc/server", () => {
3535
daprHost,
3636
daprPort,
3737
maxBodySizeMb: 20, // we set sending larger than receiving to test the error handling
38+
logger: {
39+
level: LogLevel.Debug,
40+
},
3841
},
3942
maxBodySizeMb: 10,
4043
});

0 commit comments

Comments
 (0)