uncommenting actual username and password
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/bf23eaec Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/bf23eaec Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/bf23eaec Branch: refs/heads/develop Commit: bf23eaec9af9a3b613831fb2bcf6b337a3b74ec9 Parents: 889fd07 Author: scnakandala <[email protected]> Authored: Mon Mar 6 14:22:56 2017 -0500 Committer: scnakandala <[email protected]> Committed: Tue Mar 7 17:15:28 2017 -0500 ---------------------------------------------------------------------- sandbox/job-status-rest-server/app.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/bf23eaec/sandbox/job-status-rest-server/app.py ---------------------------------------------------------------------- diff --git a/sandbox/job-status-rest-server/app.py b/sandbox/job-status-rest-server/app.py index e894650..dba8290 100644 --- a/sandbox/job-status-rest-server/app.py +++ b/sandbox/job-status-rest-server/app.py @@ -10,10 +10,10 @@ import sys app = Flask(__name__) -email_username = '[email protected]' -email_password = 'XseDe2015' +email_username = '' +email_password = '' status_string = "COMPLETED" -from_address = '[email protected]' +from_address = '[email protected]' @app.route('/job_status', methods=['POST']) @@ -42,7 +42,7 @@ def job_status(): if __name__ == '__main__': app.config.update( - DEBUG=True + DEBUG=False ) app.run( host="localhost",
