-
Notifications
You must be signed in to change notification settings - Fork 22
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
FML parsing improvement #324
Conversation
oliveregger
commented
Jan 2, 2025
- Performance improvement fml [Updating a map needs 10 seconds in dev mode (onyOneEngine) #323](parsing Updating a map needs 10 seconds in dev mode (onyOneEngine) #323)
- Update org.hl7.fhir.core to 6.5.2 and hapi-fhir to 7.6.1
- Fixing high security issues
mapR5.getText().setDiv(new XhtmlNode(NodeType.Element, "div")); | ||
final String render = StructureMapUtilities.render(mapR5); | ||
mapR5.getText().getDiv().addTag("pre").addText(render); | ||
StructureMap mapR5 = MatchboxEngineSupport.mainEngine.parseMapR5(mapText); |
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.
MatchboxEngine.parseMapR5()
doesn't handle the onlyOneEngine
mode correctly, and should probably not. I think it's cleaner to handle that in matchbox-server.
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.
as dicussed: use createR5WorkerContext if we are not in a 5.0.0 context
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.
updated as discuessed.
8ec2170
to
1147509
Compare