docs: fix environment variable for error reporting

This commit is contained in:
Jens Langhammer 2020-09-17 21:22:46 +02:00
parent 22dea62084
commit 1eeb64ee39
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ This installation method is for test-setups and small-scale productive setups.
Download the latest `docker-compose.yml` from [here](https://raw.githubusercontent.com/BeryJu/passbook/master/docker-compose.yml). Place it in a directory of your choice.
To optionally enable error-reporting, run `echo PASSBOOK_ERROR_REPORTING=true >> .env`
To optionally enable error-reporting, run `echo PASSBOOK_ERROR_REPORTING__ENABLED=true >> .env`
To optionally deploy a different version run `echo PASSBOOK_TAG=0.10.3-stable >> .env`

View File

@ -177,6 +177,6 @@ class FlowPlanner:
marker = ReevaluateMarker(binding=binding, user=user)
plan.markers.append(marker)
LOGGER.debug(
"f(plan): Finished building", flow=self.flow, duration_s=span.timestamp,
"f(plan): Finished building", flow=self.flow,
)
return plan