Skip to content

Commit

Permalink
Fixed bugs described in issues 91 and 92
Browse files Browse the repository at this point in the history
Merge branch 'release/2.2.2'
  • Loading branch information
luissian committed Apr 4, 2022
2 parents 81ebf7e + 00022ed commit c6f6122
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iSkyLIMS_core/templates/iSkyLIMS_core/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h4>Powered by :</h4>
</div>
<div class="row">
<div class="col-md-2 col-md-offset-5">
<p>Version 2.2.1</p>
<p>Version 2.2.2</p>
</div>
</div>
<!--// end row -->
Expand Down
2 changes: 1 addition & 1 deletion iSkyLIMS_wetlab/logging_config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ format=%(asctime)s %(funcName)-12s %(levelname)-8s %(lineno)s %(message)s
class=handlers.RotatingFileHandler
level=NOTSET
## args(log_file_name, 'a', maxBytes , backupCount)
args=('/srv/iSkyLIMS/logs/update_run_from_crontab.log','a',10000000,5)
args=('/opt/iSkyLIMS/logs/update_run_from_crontab.log','a',10000000,5)
formatter=logfileformatter
2 changes: 1 addition & 1 deletion iSkyLIMS_wetlab/utils/handling_crontab_common_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def check_sequencer_status_from_completion_file(l_run_completion, experiment_nam
# check if NextSEq run have been successful completed
status_run = find_xml_tag_text (l_run_completion, COMPLETION_TAG )
if status_run != COMPLETION_SUCCESS:
logger.info('%s : Run in sequencer was not completed but %s', experiment_name, stats_run)
logger.info('%s : Run in sequencer was not completed but %s', experiment_name, status_run)
string_message = experiment_name + ' : Sequencer Run was not completed. Reason was ' + status_run
logging_warnings (string_message, False)
logger.debug ('%s : End function for check_sequencer_status_from_completion_file', experiment_name)
Expand Down

0 comments on commit c6f6122

Please # to comment.