fix: default PV names in template
Deploy bin / deploy (push) Successful in 4s
Deploy agebd python package / deploy (push) Successful in 3s

This commit is contained in:
Benjamin Labrecque
2026-07-08 12:02:09 +02:00
parent 39f38d6bb9
commit 3b5523ec9e
@@ -18,9 +18,7 @@ PV = get_pv_class()
class PVs(BasePVs):
# Option 1:
## Service specific PVs from dedicated IOC
my_pv1 = PV(
"AGEBD-CPCL-{{ service_name_upper }}-DEV:AO"
) # TODO: is this a good PV to use?
my_pv1 = PV("AGEBD-{{ service_name_upper }}:AO") # TODO: is this a good PV to use?
## Service specific PVs from other IOCs
# ...
@@ -37,7 +35,7 @@ class PVs(BasePVs):
# Option 2:
## Service specific PVs from dedicated IOC
self.my_pv2 = PV(
"AGEBD-CPCL-{{ service_name_upper }}-DEV:BO"
"AGEBD-{{ service_name_upper }}:BO"
) # TODO: is this a good PV to use?
## Service specific PVs from other IOCs