Skip to content

Commit

Permalink
fix(c++): add missing member initialisation to grpc server
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Gaist <samuel.gaist@idiap.ch>
  • Loading branch information
sgaist committed Feb 12, 2024
1 parent dec9fa0 commit 3a021d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userspace/falco/grpc_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class server : public server_impl

private:
std::string m_server_addr;
int m_threadiness;
int m_threadiness = 1;
std::string m_private_key;
std::string m_cert_chain;
std::string m_root_certs;
Expand Down

0 comments on commit 3a021d1

Please sign in to comment.