Skip to content

Commit c319cfa

Browse files
Remove OnOpampConnectionSettingsAccepted callback (#266)
Contributes to #261 I intentionally left undefined the blocking vs nonblocking requirement for the callback. I suggest that we refine this after we make implementations and settle on a particular behavior. A continuation of this PR is needed that implements steps 4 and 5 of the flow described here: #261
1 parent 8d40419 commit c319cfa

File tree

2 files changed

+5
-29
lines changed

2 files changed

+5
-29
lines changed

client/internal/receivedprocessor.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,8 @@ func (r *receivedProcessor) rcvOpampConnectionSettings(ctx context.Context, sett
210210

211211
if r.hasCapability(protobufs.AgentCapabilities_AgentCapabilities_AcceptsOpAMPConnectionSettings) {
212212
err := r.callbacks.OnOpampConnectionSettings(ctx, settings.Opamp)
213-
if err == nil {
214-
// TODO: verify connection using new settings.
215-
r.callbacks.OnOpampConnectionSettingsAccepted(ctx, settings.Opamp)
213+
if err != nil {
214+
r.logger.Errorf(ctx, "Failed to process OpAMPConnectionSettings: %v", err)
216215
}
217216
} else {
218217
r.logger.Debugf(ctx, "Ignoring Opamp, agent does not have AcceptsOpAMPConnectionSettings capability")

client/types/callbacks.go

+3-26
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,9 @@ type Callbacks interface {
8181
// authorization headers or TLS certificate, potentially also a different
8282
// OpAMP destination to work with.
8383
//
84-
// The Agent should process the offer and return an error if the Agent does not
85-
// want to accept the settings (e.g. if the TSL certificate in the settings
86-
// cannot be verified).
87-
//
88-
// If OnOpampConnectionSettings returns nil and then the caller will
89-
// attempt to reconnect to the OpAMP Server using the new settings.
90-
// If the connection fails the settings will be rejected and an error will
91-
// be reported to the Server. If the connection succeeds the new settings
92-
// will be used by the client from that moment on.
84+
// The Agent should process the offer by reconnecting the client using the new
85+
// settings or return an error if the Agent does not want to accept the settings
86+
// (e.g. if the TSL certificate in the settings cannot be verified).
9387
//
9488
// Only one OnOpampConnectionSettings call can be active at any time.
9589
// See OnRemoteConfig for the behavior.
@@ -98,12 +92,6 @@ type Callbacks interface {
9892
settings *protobufs.OpAMPConnectionSettings,
9993
) error
10094

101-
// OnOpampConnectionSettingsAccepted will be called after the settings are
102-
// verified and accepted (OnOpampConnectionSettingsOffer and connection using
103-
// new settings succeeds). The Agent should store the settings and use them
104-
// in the future. Old connection settings should be forgotten.
105-
OnOpampConnectionSettingsAccepted(ctx context.Context, settings *protobufs.OpAMPConnectionSettings)
106-
10795
// For all methods that accept a context parameter the caller may cancel the
10896
// context if processing takes too long. In that case the method should return
10997
// as soon as possible with an error.
@@ -137,10 +125,6 @@ type CallbacksStruct struct {
137125
ctx context.Context,
138126
settings *protobufs.OpAMPConnectionSettings,
139127
) error
140-
OnOpampConnectionSettingsAcceptedFunc func(
141-
ctx context.Context,
142-
settings *protobufs.OpAMPConnectionSettings,
143-
)
144128

145129
OnCommandFunc func(ctx context.Context, command *protobufs.ServerToAgentCommand) error
146130

@@ -203,13 +187,6 @@ func (c CallbacksStruct) OnOpampConnectionSettings(
203187
return nil
204188
}
205189

206-
// OnOpampConnectionSettingsAccepted implements Callbacks.OnOpampConnectionSettingsAccepted.
207-
func (c CallbacksStruct) OnOpampConnectionSettingsAccepted(ctx context.Context, settings *protobufs.OpAMPConnectionSettings) {
208-
if c.OnOpampConnectionSettingsAcceptedFunc != nil {
209-
c.OnOpampConnectionSettingsAcceptedFunc(ctx, settings)
210-
}
211-
}
212-
213190
// OnCommand implements Callbacks.OnCommand.
214191
func (c CallbacksStruct) OnCommand(ctx context.Context, command *protobufs.ServerToAgentCommand) error {
215192
if c.OnCommandFunc != nil {

0 commit comments

Comments
 (0)