Uh oh!
There was an error while loading. Please reload this page.
fix(server): set port before instantiating server - #2143
Conversation
Codecov Report
@@ Coverage Diff @@## master #2143 +/- ##
=======================================
Coverage 93.91% 93.91% =======================================
Files 33 33 Lines 1265 1265 Branches 361 361 =======================================
Hits 1188 1188 Misses 71 71 Partials 6 6Continue to review full report at Codecov.
|
3acd2f0 to
3b6cc69CompareUh oh!
There was an error while loading. Please reload this page.
knagaitsev
commented
Jul 22, 2019
This solution looks good to me, just one note. @evilebottnawi Unfortunately, this problem will make it difficult, or maybe impossible, to move |
Uh oh!
There was an error while loading. Please reload this page.
internettrans
commented
Jul 23, 2019
The failed tests are related to a "page crashed" error that seems to be unrelated to my code changes. |
internettrans
commented
Jul 23, 2019
knagaitsev
commented
Jul 23, 2019
Looks good to me. |
internettrans
commented
Jul 25, 2019
Anybody know why one of the azure checks is still pending? When I go to Azure it says that everything passed. Is it because a commit on master isn't merged into this branch? I'm trying out merging master into this branch again. |
knagaitsev
commented
Jul 25, 2019
@joeldenning It looks like a Page crashed issue. Not your fault, there is still some instability with the e2e tests here. Your PR can still be merged if a couple CI builds are failing/timing out for this particular reason since your changes are not causing it. |
internettrans
commented
Jul 29, 2019
All checks are now passing, after merging master in to retrigger the build. Time to merge? |
mistic
commented
Jul 30, 2019
@evilebottnawi could you merge this? |
For Bugs and Features; did you add new tests?
Yes
Motivation / Use-Case
This resolves#2142.
Breaking Changes
No breaking changes.
Additional Info
The reason this fixes the bug is that we are setting
options.portbefore callingnew Server()instead of afterwards. The constructor in Server calls function that need the port to already be present.