docs: fix environment variable for error reporting
This commit is contained in:
parent
22dea62084
commit
1eeb64ee39
|
@ -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`
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in New Issue