PascalBrouwers
PascalBrouwers
I also clear opcache at the end of each deployment. Never ran into any problems with it. Are you sure you are clearing cli AND web opcache?
hmm, are you maybe caching the backend with Redis and not using a different cache prefix on your deployment?
See https://github.com/davidalger/capistrano-magento2/issues/151#issuecomment-769204604 how I do it using capistrano.
That's you redis configuration. I suggest using an eviction policy of allkeys-lru or allkeys-lfu.
You need to lookup how to add tasks in Capistrano. This repo is just another add-on, not the main program. I suggest you google/research it.
Got this too. When coming from a page (referrer) the url in de ESI block is that of the referrer instead of the current url. 
Also not clear to me how bundles are supposed to work with composer packages. I even tried something like ``` @package magento/module-persistent @level 1 diff --git a/module-persistent etc,etc etc @package...
Just going to make my own patch like Jeroen did
Have the same problem when using a simple `for` loop in a github action job that uses `appleboy/ssh-action` and thus `appleboy/drone-ssh`
example: ``` script_stop: true script: | for i in {1..5} do sleep 1 done ``` response: ``` 2023/04/11 10:23:07 Process exited with status 1 err: bash: -c: line 2: syntax...