Skip to content

Commit

Permalink
try to fix type assertion panic
Browse files Browse the repository at this point in the history
  • Loading branch information
felipejfc committed Aug 23, 2017
1 parent 6a93388 commit 36602b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/charts/maestro/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: maestro
home: https://github.com/topfreegames/maestro
description: Maestro api and worker
version: 3.4.8
version: 3.4.9
maintainers:
- name: TFGCo
email: backend@tfgco.com
2 changes: 1 addition & 1 deletion metadata/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package metadata

//Version of Maestro
var Version = "3.4.8"
var Version = "3.4.9"

//KubeVersion is the desired Kubernetes version
var KubeVersion = "v1.7.0"
2 changes: 1 addition & 1 deletion plugins/grpc/forwarder.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (g *GRPCForwarder) roomStatusRequest(infos map[string]interface{}, status p
game := infos["game"].(string)
roomID := infos["roomId"].(string)
host := infos["host"].(string)
port := int32(infos["port"].(int64))
port := infos["port"].(int32)

g.logger.WithFields(log.Fields{
"op": "roomStatusRequest",
Expand Down

0 comments on commit 36602b6

Please sign in to comment.