Merge remote-tracking branch 'origin/topic/dnthayer/ticket1595'

* origin/topic/dnthayer/ticket1595:
  Fix a bug in receiving remote logs via broker

BIT-1595 #merged
This commit is contained in:
Johanna Amann 2016-05-12 08:04:33 -07:00
commit 49ca47895d
6 changed files with 23 additions and 12 deletions

View file

@ -1,6 +1,6 @@
wrote log, [msg=ping, num=0, nolog=no]
wrote log, [msg=ping, num=1, nolog=no]
wrote log, [msg=ping, num=2, nolog=no]
wrote log, [msg=ping, num=3, nolog=no]
wrote log, [msg=ping, num=4, nolog=no]
wrote log, [msg=ping, num=5, nolog=no]
wrote log, [msg=ping, nolog=no, num=0]
wrote log, [msg=ping, nolog=no, num=1]
wrote log, [msg=ping, nolog=no, num=2]
wrote log, [msg=ping, nolog=no, num=3]
wrote log, [msg=ping, nolog=no, num=4]
wrote log, [msg=ping, nolog=no, num=5]

View file

@ -19,8 +19,8 @@ export {
type Info: record {
msg: string &log;
num: count &log;
nolog: string &default="no";
num: count &log;
};
global log_test: event(rec: Test::Info);