chore: Fix linter findings for `revive:comment-spacings` (part 2) (#15897)

This commit is contained in:
Paweł Żak 2024-09-19 11:03:28 +02:00 committed by GitHub
parent 43590ca730
commit 453d32bd81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
64 changed files with 305 additions and 312 deletions

View File

@ -30,7 +30,7 @@ type aliyunSdkClient interface {
ProcessCommonRequest(req *requests.CommonRequest) (response *responses.CommonResponse, err error)
}
// discoveryTool is a object that provides discovery feature
// discoveryTool is an object that provides discovery feature
type discoveryTool struct {
req map[string]discoveryRequest // Discovery request (specific per object type)
rateLimit int // Rate limit for API query, as it is limited by API backend
@ -39,7 +39,7 @@ type discoveryTool struct {
respRootKey string // Root key in JSON response where to look for discovery data
respObjectIDKey string // Key in element of array under root key, that stores object ID
//for ,majority of cases it would be InstanceId, for OSS it is BucketName. This key is also used in dimension filtering// )
// for, the majority of cases it would be InstanceId, for OSS it is BucketName. This key is also used in dimension filtering
wg sync.WaitGroup // WG for primary discovery goroutine
interval time.Duration // Discovery interval
done chan bool // Done channel to stop primary discovery goroutine

View File

@ -11,7 +11,7 @@ import (
docker "github.com/docker/docker/client"
)
/*This file is inherited from telegraf docker input plugin*/
// This file is inherited from telegraf docker input plugin
var (
version = "1.24"
defaultHeaders = map[string]string{"User-Agent": "engine-api-cli-1.0"}

View File

@ -491,7 +491,7 @@ func TestWriteLargeLine(t *testing.T) {
resp, err := http.Post(createURL(listener, "http", "/write", ""), "", bytes.NewBufferString(hugeMetricString+testMsgs))
require.NoError(t, err)
require.NoError(t, resp.Body.Close())
//todo: with the new parser, long lines aren't a problem. Do we need to skip them?
// TODO: with the new parser, long lines aren't a problem. Do we need to skip them?
// require.EqualValues(t, 400, resp.StatusCode)
expected := testutil.MustMetric(

View File

@ -342,7 +342,7 @@ func TestWriteLargeLine(t *testing.T) {
resp, err := http.Post(createURL(listener, "http", "/api/v2/write", "bucket=mybucket"), "", bytes.NewBufferString(hugeMetricString+testMsgs))
require.NoError(t, err)
require.NoError(t, resp.Body.Close())
//todo: with the new parser, long lines aren't a problem. Do we need to skip them?
// TODO: with the new parser, long lines aren't a problem. Do we need to skip them?
// require.EqualValues(t, 400, resp.StatusCode)
expected := testutil.MustMetric(

View File

@ -1,9 +1,7 @@
/***
The code contained here came from https://github.com/mongodb/mongo-tools/blob/master/mongostat/stat_types.go
and contains modifications so that no other dependency from that project is needed. Other modifications included
removing unnecessary code specific to formatting the output and determine the current state of the database. It
is licensed under Apache Version 2.0, http://www.apache.org/licenses/LICENSE-2.0.html
***/
// The code contained here came from https://github.com/mongodb/mongo-tools/blob/master/mongostat/stat_types.go
// and contains modifications so that no other dependency from that project is needed. Other modifications included
// removing unnecessary code specific to formatting the output and determine the current state of the database. It
// is licensed under Apache Version 2.0, http://www.apache.org/licenses/LICENSE-2.0.html
package mongodb

View File

@ -164,9 +164,7 @@ func (n *NeptuneApex) parseXML(acc telegraf.Accumulator, data []byte) error {
if o.Xstatus != nil {
fields["xstatus"] = *o.Xstatus
}
// Try to determine outlet type. Focus on accuracy, leaving the
//outlet_type "unknown" when ambiguous. 24v and vortech cannot be
// determined.
// Try to determine outlet type. Focus on accuracy, leaving the outlet_type "unknown" when ambiguous. 24v and vortech cannot be determined.
switch {
case strings.HasPrefix(o.DeviceID, "base_Var"):
tags["output_type"] = "variable"

View File

@ -23,8 +23,7 @@ func (pg *NativeFinder) UID(user string) ([]PID, error) {
for _, p := range procs {
username, err := p.Username()
if err != nil {
//skip, this can happen if we don't have permissions or
//the pid no longer exists
// skip, this can be caused by the pid no longer exists, or you don't have permissions to access it
continue
}
if username == user {
@ -63,8 +62,7 @@ func (pg *NativeFinder) FullPattern(pattern string) ([]PID, error) {
for _, p := range procs {
cmd, err := p.Cmdline()
if err != nil {
//skip, this can be caused by the pid no longer existing
//or you having no permissions to access it
// skip, this can be caused by the pid no longer exists, or you don't have permissions to access it
continue
}
if regxPattern.MatchString(cmd) {
@ -122,8 +120,7 @@ func (pg *NativeFinder) Pattern(pattern string) ([]PID, error) {
for _, p := range procs {
name, err := processName(p)
if err != nil {
//skip, this can be caused by the pid no longer existing
//or you having no permissions to access it
// skip, this can be caused by the pid no longer exists, or you don't have permissions to access it
continue
}
if regxPattern.MatchString(name) {

View File

@ -134,7 +134,7 @@ func TestMgrErrors(t *testing.T) {
require.Error(t, err)
require.Contains(t, err.Error(), testErrors[0].mgrConnectError.Error())
////mgr.listServices error
// mgr.listServices error
winServices = &WinServices{
Log: testutil.Logger{},
mgrProvider: &FakeMgProvider{testErrors[1]},
@ -144,7 +144,7 @@ func TestMgrErrors(t *testing.T) {
require.Error(t, err)
require.Contains(t, err.Error(), testErrors[1].mgrListServicesError.Error())
////mgr.listServices error 2
// mgr.listServices error 2
winServices = &WinServices{
Log: testutil.Logger{},
ServiceNames: []string{"Fake service 1"},

View File

@ -262,7 +262,7 @@ func TestLineProtocolConverter_Record(t *testing.T) {
wantErr: false,
},
//// Test data from distributed trace repo sample json
// Test data from distributed trace repo sample json
// https://github.com/mattkanwisher/distributedtrace/blob/master/testclient/sample.json
{
name: "distributed_trace_sample",