-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Update to hapi-fhir 6.5.20-SNAPSHOT #530
Update to hapi-fhir 6.5.20-SNAPSHOT #530
Conversation
497 - Fix typo on property setter
|
||
ourClient.create().resource(topic).execute(); | ||
|
||
waitForSize(1, () -> ourClient.search().forResource(SubscriptionTopic.class).where(Subscription.STATUS.exactly().code("active")).cacheControl(new CacheControlDirective().setNoCache(true)).returnBundle(Bundle.class).execute().getEntry().size()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick: This is long and a bit hard to read without scrolling. I suggest breaking this down to one line per method call
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
@@ -99,7 +114,8 @@ public void testWebsocketSubscription() throws Exception { | |||
SocketImplementation mySocketImplementation = new SocketImplementation(mySubscriptionId.getIdPart(), EncodingEnum.JSON); | |||
|
|||
myWebSocketClient.start(); | |||
URI echoUri = new URI("ws://localhost:" + port + "/websocket"); | |||
|
|||
URI echoUri = new URI(endpoint); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
General comment: It seems our formatting (tabs) conflcts with jpa-serverstarter's formatting (spaces). It looks like your changes use tabs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the lines with spaces are cruft from previous commits:
https://github.com/hapifhir/hapi-fhir-jpaserver-starter/blob/master/.editorconfig
My IntelliJ is picking .editorconfig
up, and auto-formatting with tabs. I'm going to leave this alone for this PR so that the changes are clear-cut, but might do a reformat for this in a separate PR.
This fixes the following in order to get all tests running (smoke tests included)