Skip to content
Snippets Groups Projects
Commit b543ab13 authored by Emanuele Laface's avatar Emanuele Laface
Browse files

Use get_pv instead of PV class

parent d15988bb
No related branches found
No related tags found
No related merge requests found
Pipeline #67547 passed
......@@ -32,7 +32,7 @@ async def get_pv(pvlist: str):
pvnames = pvlist.split(",")
pvs = []
for pvname in pvnames:
pvs.append(epics.PV(pvname, auto_monitor=True))
pvs.append(epics.get_pv(pvname, auto_monitor=True))
time.sleep(1)
result = {}
......@@ -40,7 +40,7 @@ async def get_pv(pvlist: str):
result[pv.pvname] = pv._args
if result[pv.pvname]["count"] is not None and result[pv.pvname]["count"] > 1:
result[pv.pvname]["value"] = result[pv.pvname]["value"].tolist()
pv.clear_auto_monitor()
# pv.clear_auto_monitor()
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment