From e9237d3586237f85ce116c661a5e70216922e056 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Mon, 12 Dec 2022 19:26:26 +0530 Subject: [PATCH] feat: include hostname while sending config event hostname is autogenerated by librepages, config files, location in file system, etc. are identified by hostname. So it makes sense to send hostname, along with the custom domain names that the customer provides --- env/libconductor/src/event_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/env/libconductor/src/event_types.rs b/env/libconductor/src/event_types.rs index 5e63bdf..6e42f3a 100644 --- a/env/libconductor/src/event_types.rs +++ b/env/libconductor/src/event_types.rs @@ -30,6 +30,7 @@ pub enum EventType { }, Config { + hostname: String, data: LibConfig, }, }