8000 start searching for the local port of a socket by dothebart · Pull Request #21833 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

start searching for the local port of a socket #21833

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add dummy implementations of new method
  • Loading branch information
dothebart committed Jul 2, 2025
commit be8965020edaf63f13788fde93328bb90239d129
2 changes: 2 additions & 0 deletions tests/IResearch/AgencyMock.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ struct AsyncAgencyStorePoolConnection final
void sendRequest(std::unique_ptr<arangodb::fuerte::Request> req,
arangodb::fuerte::RequestCallback cb) override;

virtual std::string localEndpoint() override final { return "not implemented"; };

arangodb::AgencyCache& _cache;
std::string _endpoint;
};
Expand Down
2 changes: 2 additions & 0 deletions tests/Mocks/PreparedResponseConnectionPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ class FakeConnection final : public fuerte::Connection {

void cancel() override {}

virtual std::string localEndpoint() override final { return "not implemented"; };

private:
std::shared_ptr<std::vector<PreparedRequestResponse>> _responses;
};
Expand Down
0