Skip to content

Commit

Permalink
Merge pull request #96 from charles-knox-intel/update-app-functions-s…
Browse files Browse the repository at this point in the history
…dk-go

fix: app-functions-sdk-go backwards compatibility, fixes #95
  • Loading branch information
rsdmike authored Jul 16, 2020
2 parents 8f8a21a + abecb38 commit 7083d63
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/edgexfoundry/app-service-configurable

go 1.13

require github.com/edgexfoundry/app-functions-sdk-go v1.2.1-dev.8
require github.com/edgexfoundry/app-functions-sdk-go v1.2.1-dev.9
2 changes: 1 addition & 1 deletion res/blackbox-tests/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 48095
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/http-export/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 50003
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/mqtt-export/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 50002
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/push-to-core/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 48095
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/rules-engine-mqtt/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 50001
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/rules-engine-redis/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 50001
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/rules-engine/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 50001
Protocol = "http"
ReadMaxLimit = 100
Expand Down
2 changes: 1 addition & 1 deletion res/sample/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
BootTimeout = "30s"
CheckInterval = "10s"
Host = "localhost"
ServerBindAddr = "" # blank value defaults to Service.Host value
ServerBindAddr = "" # if blank, uses default Go behavior https://golang.org/pkg/net/#Listen
Port = 48095
Protocol = "http"
ReadMaxLimit = 100
Expand Down

0 comments on commit 7083d63

Please sign in to comment.