-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
withConfig fails when passed defaultOptions #260
Comments
Try using the |
@jfischoff Key issue seems to be this:
It appears that any suggestions about what port should be used are not taken from |
Oh I see now. Yeah you have to set the
|
Is there a reason you a specific |
It's required for testing a database interface library at work. I have to specify a port to connect on, so a random one makes this difficult. |
ah gotcha so you can just set the port in that case.
|
The whole situation kinda sucks. There are million other connection options and I need a way to set all of the but port which is special because it is usually generated. I don't know. I might have just made a mistake in the design and maybe port should be set through the connection options and not be it's own thing. |
Given the following source code:
I get a
ConnectionTimeout
when I try to run. This does not occur when I usewith
. Am I doing something wrong?The text was updated successfully, but these errors were encountered: