This commit is contained in:
Michael Quigley 2023-06-21 11:41:13 -04:00
parent 5a2f6a1f72
commit c2021980fb
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -39,9 +39,7 @@ type amqpSink struct {
} }
func newAmqpSink(cfg *AmqpSinkConfig) (*amqpSink, error) { func newAmqpSink(cfg *AmqpSinkConfig) (*amqpSink, error) {
as := &amqpSink{ as := &amqpSink{cfg: cfg}
cfg: cfg,
}
return as, nil return as, nil
} }