forked from logrhythm/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed mistake; updated the wrong proto file
- Loading branch information
Tom Artale
authored and
Tom Artale
committed
Mar 19, 2015
1 parent
66d7f2e
commit 2c6906d
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
package protoMsg; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "ColumboConfigMsg"; | ||
option java_outer_classname = "ColumboClientConfigMsg"; | ||
|
||
|
||
|
||
|
||
message ColumboConfig { | ||
message ColumboClientConfig { | ||
optional string requestQueue = 1; | ||
optional int32 resendTranslationTableIntervalInMS = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
package protoMsg; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "ColumboClientConfigMsg"; | ||
option java_outer_classname = "ColumboConfigMsg"; | ||
|
||
|
||
|
||
|
||
message ColumboClientConfig { | ||
message ColumboConfig { | ||
optional string requestQueue = 1; | ||
optional int32 resendTranslationTableIntervalInMS = 2; | ||
} |