Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
3c330c8e
Unverified
Commit
3c330c8e
authored
Dec 05, 2018
by
Carl Bergquist
Committed by
GitHub
Dec 05, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14317 from mjtrangoni/fix-misspell-issues
pkg/*: Fix misspelling issues using locale US
parents
825b8192
fadd816d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
pkg/components/dynmap/dynmap.go
+1
-1
pkg/components/dynmap/dynmap_test.go
+1
-1
pkg/services/sqlstore/org_test.go
+1
-1
pkg/tsdb/elasticsearch/response_parser.go
+1
-1
pkg/tsdb/opentsdb/opentsdb.go
+1
-1
No files found.
pkg/components/dynmap/dynmap.go
View file @
3c330c8e
// uses code from https://github.com/antonholmquist/jason/blob/master/jason.go
// MIT Licen
c
e
// MIT Licen
s
e
package
dynmap
...
...
pkg/components/dynmap/dynmap_test.go
View file @
3c330c8e
// uses code from https://github.com/antonholmquist/jason/blob/master/jason.go
// MIT Licen
c
e
// MIT Licen
s
e
package
dynmap
...
...
pkg/services/sqlstore/org_test.go
View file @
3c330c8e
...
...
@@ -187,7 +187,7 @@ func TestAccountDataAccess(t *testing.T) {
err
:=
DeleteOrg
(
&
m
.
DeleteOrgCommand
{
Id
:
ac2
.
OrgId
})
So
(
err
,
ShouldBeNil
)
// remove
frome ac2
from ac1 org
// remove
ac2 user
from ac1 org
remCmd
:=
m
.
RemoveOrgUserCommand
{
OrgId
:
ac1
.
OrgId
,
UserId
:
ac2
.
Id
,
ShouldDeleteOrphanedUser
:
true
}
err
=
RemoveOrgUser
(
&
remCmd
)
So
(
err
,
ShouldBeNil
)
...
...
pkg/tsdb/elasticsearch/response_parser.go
View file @
3c330c8e
...
...
@@ -541,7 +541,7 @@ func getErrorFromElasticResponse(response *es.SearchResponse) *tsdb.QueryResult
}
else
if
reason
!=
""
{
result
.
ErrorString
=
reason
}
else
{
result
.
ErrorString
=
"Unkown elasticsearch error response"
result
.
ErrorString
=
"Unk
n
own elasticsearch error response"
}
return
result
...
...
pkg/tsdb/opentsdb/opentsdb.go
View file @
3c330c8e
...
...
@@ -84,7 +84,7 @@ func (e *OpenTsdbExecutor) createRequest(dsInfo *models.DataSource, data OpenTsd
postData
,
err
:=
json
.
Marshal
(
data
)
if
err
!=
nil
{
plog
.
Info
(
"Failed marshal
l
ing data"
,
"error"
,
err
)
plog
.
Info
(
"Failed marshaling data"
,
"error"
,
err
)
return
nil
,
fmt
.
Errorf
(
"Failed to create request. error: %v"
,
err
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment