fix: rejection_record
parent
fbbda7a17c
commit
15b1ec5236
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
# 0.15.1
|
||||||
|
|
||||||
|
* Added some rate limits. Currently each instance is limited to 20 actions per minute
|
||||||
|
|
||||||
# 0.15.0
|
# 0.15.0
|
||||||
|
|
||||||
* Added solicitation. Now you can see which instances are requesting guarantees
|
* Added solicitation. Now you can see which instances are requesting guarantees
|
||||||
|
|
|
@ -190,7 +190,7 @@ class Guarantees(Resource):
|
||||||
db.session.add(solicitation_report)
|
db.session.add(solicitation_report)
|
||||||
|
|
||||||
db.session.delete(guarantee)
|
db.session.delete(guarantee)
|
||||||
rejection_recorinstanced = database.get_rejection_record(instance.id,target_instance.id)
|
rejection_record = database.get_rejection_record(instance.id,target_instance.id)
|
||||||
if rejection_record:
|
if rejection_record:
|
||||||
rejection_record.refresh()
|
rejection_record.refresh()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue