update
This commit is contained in:
parent
345f6d4a3d
commit
04c6991403
|
|
@ -42,11 +42,11 @@ func init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func ConnectCLs() {
|
func ConnectCLs(ctx context.Context) {
|
||||||
for cl, ch := range cl2Chan {
|
for cl, ch := range cl2Chan {
|
||||||
go func(ctx context.Context, cl string, ch chan []byte) {
|
go func(ctx context.Context, cl string, ch chan []byte) {
|
||||||
connectingCL(ctx, cl, ch)
|
connectingCL(ctx, cl, ch)
|
||||||
}(context.Background(), cl, ch)
|
}(ctx, cl, ch)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ func (p *Processes) StartDataProcessing() {
|
||||||
updatingRedisPhasor(ctx)
|
updatingRedisPhasor(ctx)
|
||||||
updatingRedisCL104(ctx)
|
updatingRedisCL104(ctx)
|
||||||
|
|
||||||
cl104.ConnectCLs()
|
cl104.ConnectCLs(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Processes) Cancel(ctx context.Context) {
|
func (p *Processes) Cancel(ctx context.Context) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue