Skip to content

Minor issue in base.cmd.j2 file in roles/device_roles/va/templates/ #182

@drmandge25

Description

@drmandge25

Hi. The following lines in base.cmd.j2 is

{% for device in ioc.environment.devices %}
drvAsynIPPortConfigure({{ device.PORT }}, "{{ device.HOST }}:{{ device.IP_PORT }}")
{% endfor %}

It should be as below to match schema.yml file in va role. (Because devices in not nested under environment. it is directly under ioc name)

{% for device in ioc.devices %}
drvAsynIPPortConfigure({{ device.PORT }}, "{{ device.HOST }}:{{ device.IP_PORT }}")
{% endfor %}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions