Fixed the "identifier is not exported" error.

This commit is contained in:
Seth Hall 2011-10-07 02:51:40 -04:00
parent 9af6c183d2
commit 9602e6e2f3

View file

@ -5,8 +5,10 @@
module Notice;
# Define the event used to transport notices on the cluster.
export {
## This is the event used to transport notices on the cluster.
global cluster_notice: event(n: Notice::Info);
}
redef Cluster::manager2worker_events += /Notice::begin_suppression/;
redef Cluster::worker2manager_events += /Notice::cluster_notice/;