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

Add load balancing support to services. #135

Merged
merged 9 commits into from
Jun 18, 2014
Prev Previous commit
Next Next commit
bump(gopkg.in/v1/yaml): b0c168ac0cf9493da1f9bb76c34b26ffef940b4a
  • Loading branch information
brendandburns committed Jun 17, 2014
commit dd44261adfbef71b7faf928a00c61900d708afae
11 changes: 6 additions & 5 deletions third_party/src/gopkg.in/v1/yaml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,27 +72,27 @@ type T struct {

func main() {
t := T{}

err := yaml.Unmarshal([]byte(data), &t)
if err != nil {
log.Fatalf("error: %v", err)
}
fmt.Printf("--- t:\n%v\n\n", t)

d, err := yaml.Marshal(&t)
if err != nil {
log.Fatalf("error: %v", err)
}
fmt.Printf("--- t dump:\n%s\n\n", string(d))

m := make(map[interface{}]interface{})

err = yaml.Unmarshal([]byte(data), &m)
if err != nil {
log.Fatalf("error: %v", err)
}
fmt.Printf("--- m:\n%v\n\n", m)

d, err = yaml.Marshal(&m)
if err != nil {
log.Fatalf("error: %v", err)
Expand Down Expand Up @@ -125,3 +125,4 @@ b:
- 3
- 4
```

2 changes: 1 addition & 1 deletion third_party/src/gopkg.in/v1/yaml/decode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ longTag:
label: center/big

inlineMap:
# Inlined map
# Inlined map
<< : {"x": 1, "y": 2, "r": 10}
label: center/big

Expand Down