Skip to content

Commit

Permalink
fix: app-service-configurable issue 74 (#383)
Browse files Browse the repository at this point in the history
Signed-off-by: charles-knox-intel <[email protected]>
  • Loading branch information
charles-knox-intel authored Jun 17, 2020
1 parent b5e0c58 commit f08b8d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/bootstrap/handlers/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (_ *Clients) BootstrapHandler(
if _, ok := config.Clients[common.CoreDataClientName]; ok {
eventClient = coredata.NewEventClient(
urlclient.New(
context.Background(),
ctx,
wg,
registryClient,
clients.CoreDataServiceKey,
Expand All @@ -93,7 +93,7 @@ func (_ *Clients) BootstrapHandler(

valueDescriptorClient = coredata.NewValueDescriptorClient(
urlclient.New(
context.Background(),
ctx,
wg,
registryClient,
clients.CoreDataServiceKey,
Expand All @@ -107,7 +107,7 @@ func (_ *Clients) BootstrapHandler(
if _, ok := config.Clients[common.CoreCommandClientName]; ok {
commandClient = command.NewCommandClient(
urlclient.New(
context.Background(),
ctx,
wg,
registryClient,
clients.CoreCommandServiceKey,
Expand All @@ -121,7 +121,7 @@ func (_ *Clients) BootstrapHandler(
if _, ok := config.Clients[common.NotificationsClientName]; ok {
notificationsClient = notifications.NewNotificationsClient(
urlclient.New(
context.Background(),
ctx,
wg,
registryClient,
clients.SupportNotificationsServiceKey,
Expand Down

0 comments on commit f08b8d6

Please sign in to comment.