Browse Source

Merge branch 'master' of https://code.skysarms.com/yyk/protos

yokyo 5 năm trước cách đây
mục cha
commit
c9d7b39e82
1 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 5 5
      confs.proto

+ 5 - 5
confs.proto

@@ -8,13 +8,13 @@ message ZkConf {
     repeated string addrs   = 1;
     string username         = 2;
     string password         = 3;
-    int timeout             = 4;
+    int32 timeout             = 4;
 }
 
 message RedisConf {
     repeated string addrs   = 1;
     string password         = 2;
-    int db                  = 3;
+    int32 db                  = 3;
 }
 
 message NatsConf {
@@ -33,7 +33,7 @@ message AgentConf {
     string profileAddr  = 6;
     string agentAddr    = 7;
     string logPath      = 8;
-    int level           = 9;
+    int32 level           = 9;
     string mode         = 10;
 }
 
@@ -53,7 +53,7 @@ message ManagerConf {
     string addr         = 4;
     string profileAddr  = 6;
     string logPath      = 8;
-    int level           = 9;
+    int32 level           = 9;
     string mode         = 10;
 }
 
@@ -66,6 +66,6 @@ message LogicConf {
     string profileAddr  = 6;
     string agentAddr    = 7;
     string logPath      = 8;
-    int level           = 9;
+    int32 level           = 9;
     string mode         = 10;
 }