Skip to content

Commit aec3390

Browse files
committed
Restarting the estimations, without ignoring any ingredients.
1 parent f83690f commit aec3390

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self,
2828
self.auth = None
2929
if productopener_basic_auth_username != "" and productopener_basic_auth_password != "":
3030
self.auth = requests.auth.HTTPBasicAuth(productopener_basic_auth_username, productopener_basic_auth_password)
31-
self.estimation_version = 2
31+
self.estimation_version = 3
3232
self.impact_categories = ["EF single score",
3333
"Climate change"]
3434
self.stats = {
@@ -142,6 +142,7 @@ def _estimate_outside_process(self, product, queue):
142142
when this function terminates."""
143143
try:
144144
impact = estimate_impacts(
145+
ignore_unknown_ingredients=False,
145146
product=product,
146147
distributions_as_result=True,
147148
impact_names=self.impact_categories)

0 commit comments

Comments
 (0)