Your ROOT_URL in app.ini is http://git.slaventius.ru/ but you are visiting http://37.143.12.169/test3k/authPostman/src/commit/30f36a44b09da264201199175962d28d4cf557aa/vendor/github.com/segmentio/kafka-go/protocol/deletetopics/deletetopics.go You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
 

34 lines
837 B

package deletetopics
import "github.com/segmentio/kafka-go/protocol"
func init() {
protocol.Register(&Request{}, &Response{})
}
type Request struct {
TopicNames []string `kafka:"min=v0,max=v3"`
TimeoutMs int32 `kafka:"min=v0,max=v3"`
}
func (r *Request) ApiKey() protocol.ApiKey { return protocol.DeleteTopics }
func (r *Request) Broker(cluster protocol.Cluster) (protocol.Broker, error) {
return cluster.Brokers[cluster.Controller], nil
}
type Response struct {
ThrottleTimeMs int32 `kafka:"min=v1,max=v3"`
Responses []ResponseTopic `kafka:"min=v0,max=v3"`
}
func (r *Response) ApiKey() protocol.ApiKey { return protocol.DeleteTopics }
type ResponseTopic struct {
Name string `kafka:"min=v0,max=v3"`
ErrorCode int16 `kafka:"min=v0,max=v3"`
}
var (
_ protocol.BrokerMessage = (*Request)(nil)
)