Skip to content

Commit

Permalink
config: enable activation service by default on public endpoinnt (#4702)
Browse files Browse the repository at this point in the history
while looking at #4701 i found that "activation" wasn't
enabled by default on public endpoint
  • Loading branch information
dshulyak committed Jul 14, 2023
1 parent b9be88f commit 4fe8f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/grpcserver/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const (
// DefaultConfig defines the default configuration options for api.
func DefaultConfig() Config {
return Config{
PublicServices: []Service{Debug, GlobalState, Mesh, Transaction, Node},
PublicServices: []Service{Debug, GlobalState, Mesh, Transaction, Node, Activation},
PublicListener: "0.0.0.0:9092",
PrivateServices: []Service{Admin, Smesher},
PrivateListener: "127.0.0.1:9093",
Expand Down

0 comments on commit 4fe8f6f

Please sign in to comment.