Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

The SIMPLIFIED Data is converted into NHS Batch Tracing format and submitted. The response is retrieved the next day and the 40 minutes later. Tracing Status and NHS Number, if found are appended to the file.

The code to generate this can be found on rr-systems-live in /home/rrbatch/simplified-tracing

It is executed by two cronjobs (-t option to trace and -m option to merge traced file back into original):

55 * * * * /home/rrbatch/simplified-tracing/venv/bin/python3.6 /home/rrbatch/simplified-tracing/tracer.py -t --log /var/tracing/log.txt
35 * * * * /home/rrbatch/simplified-tracing/venv/bin/python3.6 /home/rrbatch/simplified-tracing/tracer.py -m --log /var/tracing/log.txt

This file is then placed on our Internet SFTP Server for them to collect.

...