From 714abc85cb7bf4064d717f42293cec2cdbf0ba53 Mon Sep 17 00:00:00 2001 From: postmannen Date: Thu, 2 Jan 2025 06:02:36 +0100 Subject: [PATCH] added so the method None can be used to only start a procFunc for startup processes --- message_and_subject.go | 2 +- processes.go | 3 ++- requests.go | 12 ++++-------- requests_keys.go | 3 ++- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/message_and_subject.go b/message_and_subject.go index 6174e09..c9261bd 100644 --- a/message_and_subject.go +++ b/message_and_subject.go @@ -115,7 +115,7 @@ func newSubject(method Method, node string) Subject { ma := method.GetMethodsAvailable() _, ok := ma.CheckIfExists(method) //mh, ok := ma.Methodhandlers[method] - if !ok { + if !ok && method != None { log.Printf("error: newSubject: no Event type specified for the method: %v\n", method) os.Exit(1) } diff --git a/processes.go b/processes.go index cea63b2..9b96ed8 100644 --- a/processes.go +++ b/processes.go @@ -132,7 +132,8 @@ func (p *processes) Start(proc process) { } if proc.configuration.StartProcesses.EnableKeyUpdates { - proc.startup.startProcess(proc, KeysRequestUpdatePublisher, procFuncKeysRequestUpdate) + // The key update on the client is only a proc func that publish requests. + proc.startup.startProcess(proc, None, procFuncKeysRequestUpdate) proc.startup.startProcess(proc, KeysDeliverUpdate, nil) } diff --git a/requests.go b/requests.go index 98d219c..0e8557f 100644 --- a/requests.go +++ b/requests.go @@ -127,9 +127,6 @@ const ( // REQKeysRequestUpdate will receive all the messages of the current hash of all public keys // a node have stored, and send out an update if needed.. KeysRequestUpdate Method = "keysRequestUpdate" - // REQKeysRequestUpdatePublisher send the current hash of the locally stored public keys to - // the central key server, and get an update from central if needed. - KeysRequestUpdatePublisher Method = "keysRequestUpdatePublisher" // REQKeysDeliverUpdate will deliver the public from central to a node. KeysDeliverUpdate Method = "keysDeliverUpdate" // REQKeysAllow @@ -202,11 +199,10 @@ func (m Method) GetMethodsAvailable() MethodsAvailable { TailFile: Handler(methodTailFile), PublicKey: Handler(methodPublicKey), - KeysRequestUpdatePublisher: Handler(methodKeysRequestUpdate), - KeysRequestUpdate: Handler(nil), - KeysDeliverUpdate: Handler(methodKeysReceiveUpdate), - KeysAllow: Handler(methodKeysAllow), - KeysDelete: Handler(methodKeysDelete), + KeysRequestUpdate: Handler(methodKeysRequestUpdate), + KeysDeliverUpdate: Handler(methodKeysDeliverUpdate), + KeysAllow: Handler(methodKeysAllow), + KeysDelete: Handler(methodKeysDelete), AclRequestUpdate: Handler(methodAclRequestUpdate), AclDeliverUpdate: Handler(methodAclDeliverUpdate), diff --git a/requests_keys.go b/requests_keys.go index df6596c..0fa0677 100644 --- a/requests_keys.go +++ b/requests_keys.go @@ -60,6 +60,7 @@ func methodKeysRequestUpdate(proc process, message Message, node string) ([]byte // time a node had done an update. ctx, _ := getContextForMethodTimeout(proc.ctx, message) + _ = node proc.processes.wg.Add(1) go func() { @@ -166,7 +167,7 @@ func procFuncKeysRequestUpdate(ctx context.Context, proc process, procFuncCh cha // ---- // Handler to receive the public keys from a central server. -func methodKeysReceiveUpdate(proc process, message Message, node string) ([]byte, error) { +func methodKeysDeliverUpdate(proc process, message Message, node string) ([]byte, error) { // Get a context with the timeout specified in message.MethodTimeout. ctx, _ := getContextForMethodTimeout(proc.ctx, message)