mirror of
https://github.com/postmannen/ctrl.git
synced 2024-12-14 12:37:31 +00:00
cleaned up todo's
This commit is contained in:
parent
7522bc203d
commit
242335c3bc
2 changed files with 2 additions and 6 deletions
|
@ -2071,8 +2071,6 @@ func (m methodREQPublicKeysToNode) getKind() Event {
|
|||
return m.event
|
||||
}
|
||||
|
||||
// TODO: Rename to :REQPublicKeysToNode
|
||||
//
|
||||
// Handler to put the public key replies received from a central server.
|
||||
func (m methodREQPublicKeysToNode) handler(proc process, message Message, node string) ([]byte, error) {
|
||||
// Get a context with the timeout specified in message.MethodTimeout.
|
||||
|
@ -2081,8 +2079,6 @@ func (m methodREQPublicKeysToNode) handler(proc process, message Message, node s
|
|||
// - Since this is implemented as a NACK message we could implement a
|
||||
// metric thats shows the last time keys were updated.
|
||||
|
||||
// TODO: Define a subscriber for this Request type in startups.
|
||||
|
||||
ctx, _ := getContextForMethodTimeout(proc.ctx, message)
|
||||
|
||||
proc.processes.wg.Add(1)
|
||||
|
@ -2093,7 +2089,7 @@ func (m methodREQPublicKeysToNode) handler(proc process, message Message, node s
|
|||
go func() {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
// TODO: Should we receive a hash of he current keys from the node her ?
|
||||
// TODO: Should we receive a hash of he current keys from the node here ?
|
||||
case outCh <- []byte{}:
|
||||
}
|
||||
}()
|
||||
|
|
|
@ -101,7 +101,7 @@ func TestStewardServer(t *testing.T) {
|
|||
checkErrorKernelMalformedJSONtest,
|
||||
checkMetricValuesTest,
|
||||
|
||||
// TODO: checkREQRelay
|
||||
// checkREQRelay
|
||||
}
|
||||
|
||||
for _, f := range funcs {
|
||||
|
|
Loading…
Reference in a new issue