We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
LocalServiceExposer
public static LocalServiceExposer withoutPortMapping(final String host) { return port -> new InetSocketAddress(host, port); }
Method forRemoteHost() can then be used in the following classes in project udf-debugging-java:
forRemoteHost()
udf-debugging-java
TestSetup
UdfTestSetup
Furthermore the constructor of UdfTestSetup can be simplified into
public UdfTestSetup(final ExasolTestSetup testSetup, final Connection exasolConnection) { return new UdfTestSetup(testSetup::makeLocalTcpServiceAccessibleFromDatabase, testSetup.getDefaultBucket(), exasolConnection); }
The text was updated successfully, but these errors were encountered:
Implemented #53
acd57e6
Implemented #53 (#54)
54fdbe8
* Implemented #53
Successfully merging a pull request may close this issue.
Add convenience method to interface
LocalServiceExposer
Method
forRemoteHost()
can then be used in the following classes in projectudf-debugging-java
:TestSetup
UdfTestSetup
Change constructor of
UdfTestSetup
Furthermore the constructor of
UdfTestSetup
can be simplified intoThe text was updated successfully, but these errors were encountered: