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
5094c1db
Commit
5094c1db
authored
Mar 11, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(cli): improves error message for 401 requests
parent
f5bb2b11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
pkg/cmd/grafana-cli/services/services.go
+6
-1
No files found.
pkg/cmd/grafana-cli/services/services.go
View file @
5094c1db
...
...
@@ -3,6 +3,7 @@ package services
import
(
"encoding/json"
"errors"
"fmt"
"github.com/franela/goreq"
"github.com/grafana/grafana/pkg/cmd/grafana-cli/log"
m
"github.com/grafana/grafana/pkg/cmd/grafana-cli/models"
...
...
@@ -12,8 +13,12 @@ import (
var
IoHelper
m
.
IoUtil
=
IoUtilImp
{}
func
ListAllPlugins
(
repoUrl
string
)
(
m
.
PluginRepo
,
error
)
{
fullUrl
:=
repoUrl
+
"/repo"
res
,
_
:=
goreq
.
Request
{
Uri
:
fullUrl
,
MaxRedirects
:
3
}
.
Do
()
res
,
_
:=
goreq
.
Request
{
Uri
:
repoUrl
+
"/repo"
,
MaxRedirects
:
3
}
.
Do
()
if
res
.
StatusCode
!=
200
{
return
m
.
PluginRepo
{},
fmt
.
Errorf
(
"Could not access %s statuscode %v"
,
fullUrl
,
res
.
StatusCode
)
}
var
resp
m
.
PluginRepo
err
:=
res
.
Body
.
FromJsonTo
(
&
resp
)
...
...
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