File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -409,4 +409,5 @@ def hit_gdrs():
409
409
def hit_create_scores ():
410
410
current_app .logger .info ("Hitting create_scores() " )
411
411
tuple_count = create_scores ('2021-07-27' )
412
- current_app .logger .info ("create_scores() processed " + tuple_count + " scores" )
412
+ current_app .logger .info ("create_scores() processed " + str (tuple_count ) + " scores" )
413
+ return jsonify (200 )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def create_scores(query_date):
31
31
"""
32
32
select pc.matching_id, s.amount, s.close_date
33
33
from salesforcedonations s
34
- inner join pddp_contacts pc on pc.source_id = s.contact_id and pc.source_type = 'salesforcecontacts'
34
+ inner join pdp_contacts pc on pc.source_id = s.contact_id and pc.source_type = 'salesforcecontacts'
35
35
where pc.archived_date is null order by matching_id
36
36
"""
37
37
, connection )
You can’t perform that action at this time.
0 commit comments