Script execution

This commit is contained in:
2019-10-10 14:19:09 +02:00
parent 437ff0d77b
commit c6880d2052

View File

@@ -3,9 +3,9 @@ from ch.psi.pshell.bs import Provider
from ch.psi.pshell.bs.ProviderConfig import SocketType;
providers, streams = [], []
for i in range(9000, 9008)
for i in range(9000, 9008):
p = Provider("Provider"+str(i),"tcp://SFTEST-CVME-DBPM1:"+str(i), SocketType.PULL)
p.intialize()
p.initialize()
providers.add(p)
s = Stream("Stream"+str(i), p)
s.initialize()