This change now looks good to me.
It looks like we should do the same thing for response, change
if ((flag & FLAG_EVENT) != 0) {
res.setEvent(Response.HEARTBEAT_EVENT);
}
to
if ((flag & FLAG_EVENT) != 0) {
res.setEvent(true);
}
Originally posted by @beiwei30 in #3043
This change now looks good to me.
It looks like we should do the same thing for response, change
to
Originally posted by @beiwei30 in #3043