passing checks with django 2.1.7
This commit is contained in:
@@ -54,7 +54,7 @@ from rowers.models import strokedatafields
|
||||
#allowedcolumns = [item[0] for item in rowingmetrics]
|
||||
allowedcolumns = [key for key,value in strokedatafields.items()]
|
||||
|
||||
from async_messages import messages as a_messages
|
||||
#from async_messages import messages as a_messages
|
||||
import os
|
||||
import zipfile
|
||||
import pandas as pd
|
||||
@@ -920,12 +920,6 @@ def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
|
||||
for key, value in checks.items():
|
||||
if not value:
|
||||
allchecks = 0
|
||||
if consistencychecks:
|
||||
a_messages.error(
|
||||
r.user, 'Failed consistency check: ' + key + ', autocorrected')
|
||||
else:
|
||||
pass
|
||||
# a_messages.error(r.user,'Failed consistency check: '+key+', not corrected')
|
||||
except ZeroDivisionError:
|
||||
pass
|
||||
|
||||
@@ -1148,9 +1142,6 @@ def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
|
||||
|
||||
# submit email task to send email about breakthrough workout
|
||||
if isbreakthrough:
|
||||
a_messages.info(
|
||||
r.user, 'It looks like you have a new breakthrough workout'
|
||||
)
|
||||
if r.getemailnotifications and not r.emailbounced:
|
||||
job = myqueue(queuehigh,handle_sendemail_breakthrough,
|
||||
w.id,
|
||||
@@ -1161,7 +1152,6 @@ def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
|
||||
|
||||
# submit email task to send email about breakthrough workout
|
||||
if ishard:
|
||||
a_messages.info(r.user, 'That was a pretty hard workout')
|
||||
if r.getemailnotifications and not r.emailbounced:
|
||||
job = myqueue(queuehigh,handle_sendemail_hard,
|
||||
w.id,
|
||||
|
||||
Reference in New Issue
Block a user