@@ -81,15 +81,9 @@ type Callbacks interface {
81
81
// authorization headers or TLS certificate, potentially also a different
82
82
// OpAMP destination to work with.
83
83
//
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).
93
87
//
94
88
// Only one OnOpampConnectionSettings call can be active at any time.
95
89
// See OnRemoteConfig for the behavior.
@@ -98,12 +92,6 @@ type Callbacks interface {
98
92
settings * protobufs.OpAMPConnectionSettings ,
99
93
) error
100
94
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
-
107
95
// For all methods that accept a context parameter the caller may cancel the
108
96
// context if processing takes too long. In that case the method should return
109
97
// as soon as possible with an error.
@@ -137,10 +125,6 @@ type CallbacksStruct struct {
137
125
ctx context.Context ,
138
126
settings * protobufs.OpAMPConnectionSettings ,
139
127
) error
140
- OnOpampConnectionSettingsAcceptedFunc func (
141
- ctx context.Context ,
142
- settings * protobufs.OpAMPConnectionSettings ,
143
- )
144
128
145
129
OnCommandFunc func (ctx context.Context , command * protobufs.ServerToAgentCommand ) error
146
130
@@ -203,13 +187,6 @@ func (c CallbacksStruct) OnOpampConnectionSettings(
203
187
return nil
204
188
}
205
189
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
-
213
190
// OnCommand implements Callbacks.OnCommand.
214
191
func (c CallbacksStruct ) OnCommand (ctx context.Context , command * protobufs.ServerToAgentCommand ) error {
215
192
if c .OnCommandFunc != nil {
0 commit comments