initialize secret
This commit is contained in:
parent
dad3b9f19c
commit
85261cbfed
|
@ -113,6 +113,7 @@ static void dnodeProcessReqMsgFromDnode(SRpcMsg *pMsg, SRpcIpSet *pIpSet) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t dnodeInitClient() {
|
int32_t dnodeInitClient() {
|
||||||
|
char secret[TSDB_KEY_LEN] = "secret";
|
||||||
SRpcInit rpcInit;
|
SRpcInit rpcInit;
|
||||||
memset(&rpcInit, 0, sizeof(rpcInit));
|
memset(&rpcInit, 0, sizeof(rpcInit));
|
||||||
rpcInit.label = "DND-C";
|
rpcInit.label = "DND-C";
|
||||||
|
@ -123,7 +124,7 @@ int32_t dnodeInitClient() {
|
||||||
rpcInit.idleTime = tsShellActivityTimer * 1000;
|
rpcInit.idleTime = tsShellActivityTimer * 1000;
|
||||||
rpcInit.user = "t";
|
rpcInit.user = "t";
|
||||||
rpcInit.ckey = "key";
|
rpcInit.ckey = "key";
|
||||||
rpcInit.secret = "secret";
|
rpcInit.secret = secret;
|
||||||
|
|
||||||
tsDnodeClientRpc = rpcOpen(&rpcInit);
|
tsDnodeClientRpc = rpcOpen(&rpcInit);
|
||||||
if (tsDnodeClientRpc == NULL) {
|
if (tsDnodeClientRpc == NULL) {
|
||||||
|
|
Loading…
Reference in New Issue