Skip to content

Commit

Permalink
create var
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic committed Jan 14, 2024
1 parent ad306d8 commit 19aacbd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ const (
// bytes the server can send.
DefaultGRPCMaxSendMsgSize = math.MaxInt32

// DefaultLogQueries defines the default value for the log_queries parameter.
// Should be set to false unless debugging.
DefaultLogQueries = false

// FileStreamer defines the store streaming type for file streaming.
FileStreamer = "file"
)
Expand Down Expand Up @@ -322,7 +326,7 @@ func DefaultConfig() *Config {
Address: DefaultGRPCAddress,
MaxRecvMsgSize: DefaultGRPCMaxRecvMsgSize,
MaxSendMsgSize: DefaultGRPCMaxSendMsgSize,
LogQueries: false,
LogQueries: DefaultLogQueries,
},
Rosetta: RosettaConfig{
Enable: false,
Expand Down

0 comments on commit 19aacbd

Please sign in to comment.