Fix EPP log message duplication and missing log entries in Clarity 6+ when combining Python automations with LLTK/LITKs #51
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In Clarity LIMS 6.0 and above, when writing an automation for a step that:
then in some cases, log messages can either become duplicated - resulting in extra large log files - or missing. This behaviour seems to depend on the order in which the scripts are executed as part of the automation.
An example that exhibits such behaviour is as follows:
The root cause of this issue is due to the fact that in Clarity 6, the log file name for LLTK/LITKs was changed to include
LogFile
as part of the file name, and not just the ResultFile LimsID. Thus, in order to squash this bug, the s4-clarity library needs to be updated to:As part of this, I have added a couple of new properties to the
s4.clarity.LIMS
object:s4.clarity.LIMS.versions
- returns a list of all API versions supported by the active version of Clarity LIMSs4.clarity.LIMS.current_minor_version
- returns the minor version ("revision") of the active Clarity LIMS API version.