Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
marickvantuil authored Dec 22, 2024
1 parent 3930b1c commit 9326cc2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,16 @@ Read [UPGRADING.MD](UPGRADING.md) on how to update versions.

This can happen when your application runs behind a reverse proxy. To fix this, add the application domain to Laravel's [trusted proxies](https://laravel.com/docs/11.x/requests#trusting-all-proxies). You may need to add the wildcard `*` as trusted proxy.

#### Maximum call stack size (zend.max_allowed_stack_size - zend.reserved_stack_size) reached. Infinite recursion?

This currently seems to be a bug with PHP 8.3 and `googleapis/gax-php`. See [this issue](https://github.com/googleapis/gax-php/issues/584) for more information.

A potential workaround is to disable PHP 8.3 call stack limit by setting this value in `php.ini`:

```ini
zend.max_allowed_stack_size: -1
```

### Contributing

You can use the services defined in `docker-compose.yml` to start running the package.
Expand All @@ -211,4 +221,4 @@ Inside the container, run `composer install`.

Set up the environment: `cp .env.example .env`

Some tests hit the Cloud Tasks API and need a project and key to be able to hit it. See the variables in `.env`
Some tests hit the Cloud Tasks API and need a project and key to be able to hit it. See the variables in `.env`

0 comments on commit 9326cc2

Please sign in to comment.