add workspace to module run events

git-svn-id: file:///home/svn/framework3/trunk@8626 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
James Lee 2010-02-24 21:46:18 +00:00
parent 6e2e7ed55e
commit f5446b5d4f
1 changed files with 1 additions and 1 deletions

View File

@ -203,13 +203,13 @@ class FrameworkEventSubscriber
include GeneralEventSubscriber
def on_module_run(instance)
if framework.db.active
datastore_hash = {}
instance.datastore.keys.each do |k|
datastore_hash[k.to_s] = instance.datastore[k].to_s
end
info = {}
info[:workspace] = framework.db.find_workspace(instance.workspace),
info[:module_name] = instance.refname
info[:datastore] = datastore_hash
report_event(:name => "module_run", :info => info)