From 8fcd331c704b13842529f5ae720e0bb9847e079f Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Tue, 10 May 2022 11:26:50 +0200 Subject: [PATCH] change unit order --- src/utils/controller.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/controller.rs b/src/utils/controller.rs index 50add407..8e4b44a3 100644 --- a/src/utils/controller.rs +++ b/src/utils/controller.rs @@ -134,7 +134,7 @@ impl ProcessControl { rpc.clone().close() }; - for unit in [Decoder, Encoder, Ingest] { + for unit in [Encoder, Decoder, Ingest] { if let Err(e) = self.kill(unit) { error!("{e}") }