Skip to content

Commit

Permalink
[builds] CI fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Nienaber committed Nov 16, 2023
1 parent 06e322e commit 14063b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cpp/src/arrow/flight/sql/server_session_middleware.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.

#include <mutex>

#include "arrow/flight/sql/server_session_middleware.h"

namespace arrow {
Expand All @@ -32,7 +34,7 @@ class ServerSessionMiddlewareFactory : public ServerMiddlewareFactory {
const std::string_view& s);

public:
ServerSessionMiddlewareFactory(std::function<std::string()> id_gen)
explicit ServerSessionMiddlewareFactory(std::function<std::string()> id_gen)
: id_generator_(id_gen) {}
Status StartCall(const CallInfo&, const CallHeaders& incoming_headers,
std::shared_ptr<ServerMiddleware>* middleware);
Expand Down

0 comments on commit 14063b2

Please sign in to comment.