This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# So you didn't get the report? # | ||
|
||
## Steps to debug ## | ||
|
||
#### 1 check config.ini #### | ||
If the email setting is False then it wont have emailed, the run may have worked. | ||
|
||
#### 2 check for reports #### | ||
Go to the project root. Run `ls -alh`. See when things were modified. Check to see if there are new files added or changed a little after the run should have run. | ||
|
||
#### 3 Check the cron.d #### | ||
Go and look at the files in `/etc/cron.d`. See if the command is scheduled to run at the time you think. | ||
|
||
#### 4 Check mail #### | ||
When cron jobs error they send a local mail to the root user. The `redi` user is forwarded these mails. You can switch users to `redi` by running `sudo su - redi`. To view the mails use the `mutt` command. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,15 +19,15 @@ | |
setup( | ||
name='redi', | ||
use_scm_version=True, | ||
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/', | ||
author='CTS-IT at the University of Florida', | ||
author_email='[email protected]', | ||
packages=find_packages(exclude=['test']), | ||
include_package_data=True, | ||
package_data={ | ||
'redi': ['utils/*.xsl', 'utils/*.xsd'] | ||
}, | ||
url='https://github.com/ctsit/redi', | ||
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.4', | ||
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.5', | ||
keywords = ['EMR', 'EHR', 'REDCap', 'Clinical Data'], | ||
license='BSD 3-Clause', | ||
description='REDCap Electronic Data Importer', | ||
|