Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lib-go-databox to 0.5.0 #11

Merged
merged 29 commits into from
Aug 17, 2018
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
029d239
Refactor
Toshbrown Jun 13, 2018
f5455a0
Refactor
Toshbrown Jun 13, 2018
11d721b
Add Structured Time series API and refactor some more
Toshbrown Jun 14, 2018
3e0c1f8
add host name to ContainerManagerOptions
Toshbrown Jun 14, 2018
02589c6
fix dri case
Toshbrown Jun 15, 2018
e637954
Fix samples and refactor to help app ans driver devs
Toshbrown Jun 15, 2018
6d86045
Fix samples and refactor to help app ans driver devs
Toshbrown Jun 15, 2018
b108009
Fix samples and refactor to help app ans driver devs
Toshbrown Jun 15, 2018
bf52bd3
Fix travis
Toshbrown Jun 19, 2018
ae16e6b
Update AbiterClient to use Zest
Toshbrown Jun 20, 2018
bc30f24
fix samples
Toshbrown Jun 21, 2018
f558a83
Update to Zest based arbiter
Toshbrown Jun 26, 2018
6244da0
Fix tests
Toshbrown Jun 26, 2018
1ae6561
Make arbiterToken accessible
Toshbrown Jun 27, 2018
c807e73
Make it easier to test different Zest versions
Toshbrown Jul 3, 2018
df53412
Fix arbiter CM key
Toshbrown Jul 3, 2018
c0bc06f
Improve observe response for developers
Toshbrown Jul 3, 2018
b5bc7b4
Adds NewDefaultCoreStoreClient for use in apps and drivers
Toshbrown Jul 3, 2018
9113a8c
Add GetHttpsCredentials back in and update docs
Toshbrown Jul 3, 2018
c698df7
Add Registry to SLA
Toshbrown Jul 12, 2018
f361713
Add an Arch string to the config object
Toshbrown Jul 13, 2018
fbe58ff
Adds CoreUIImage to cm config options
Toshbrown Jul 25, 2018
de7f446
Allow SLA to specify container name
Toshbrown Jul 26, 2018
5415d73
Move CoreNetworkClient into the cmgr
Toshbrown Jul 26, 2018
b2577d7
Add missing data to manifest type
Toshbrown Aug 1, 2018
0f34ba5
Add missing data to manifest type
Toshbrown Aug 7, 2018
b01bd9a
Better error messages on token error
Toshbrown Aug 8, 2018
f047828
Update docs
Toshbrown Aug 17, 2018
e30bcfd
Update repo path from toshbrown to me-box
Toshbrown Aug 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Better error messages on token error
  • Loading branch information
Toshbrown committed Aug 8, 2018
commit b01bd9aeffdd2fcea87742025b0bd5ceec828266
4 changes: 2 additions & 2 deletions arbiterClient.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func (arb *ArbiterClient) makeArbiterGETRequest(path string, hostname string, en

resp, err := arb.ZestC.Get(arb.ArbiterToken, path, string(ContentTypeTEXT))
if err != nil {
fmt.Println("makeArbiterGETRequest Error:: ", err)
fmt.Println("makeArbiterGETRequest "+path+" Error:: ", err)
return []byte{}, 500
}

Expand All @@ -154,7 +154,7 @@ func (arb *ArbiterClient) makeArbiterPostRequest(path string, hostname string, e

resp, err := arb.ZestC.Post(arb.ArbiterToken, path, payload, string(ContentTypeTEXT))
if err != nil {
fmt.Println("makeArbiterPostRequest Error:: ", err)
fmt.Println("makeArbiterPostRequest "+path+" Error:: ", err)
return nil, 500
}

Expand Down