Skip to content

Fix for issue #2 #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion model/redhawk.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

from _utils.tasking import background_task

from ossie.properties import __TYPE_MAP as TYPE_MAP

from domain import Domain, scan_domains, ResourceNotFound


Expand Down Expand Up @@ -106,7 +108,8 @@ def component_configure(self, domain_name, app_id, comp_id, new_properties):
for prop in comp._properties:
if prop.id in new_properties:
if new_properties[prop.id] != prop.queryValue():
configure_changes[prop.id] = (type(prop.queryValue()))(new_properties[prop.id])
TYPE = TYPE_MAP.get(prop.type, [type(prop.queryValue())])
configure_changes[prop.id] = (TYPE[0])(new_properties[prop.id])

return comp.configure(configure_changes)

Expand Down