I also had a problem with a tramp, and I canβt tell you what is going on there.
At first, I thought it might be a memory problem, so just in case, I increased the memory to 128 MB. Does not work.
In my case, it always showed up several times, but then it suddenly worked. Until I restarted memcache.
Therefore, and then restarting it, I started to clear it through a bash script, and the problem disappeared. To inspire you, these are:
#!/bin/bash if [ ! -f "app/etc/local.xml" ]; then echo "Not in a magento root, aborting" exit 1; fi vagrant ssh -c '(sleep 0.2; echo flush_all; sleep 0.2; echo quit; ) | telnet 127.0.0.1 11211' rm -rfv var/cache rm -rfv var/full_page_cache exit 0;
source share