This fix will be in 1.4.1 as soon as we push it out. However, in investigating further, the CLI command will not run across all the sites on your multisite, but you can loop through each from the command line using a for
loop if you have lots of sites:
for site in $(wp site list --field=url);
do
wp pantheon session add-index --url=$site
done
We’re hiding the notice for multisites in 1.4.1 until we get that functionality built in, but in the meantime, the commands can still be run and will work once you pull down the update.
-
This reply was modified 1 year, 5 months ago by
jazzs3quence. Reason: need to add the site url
-
This reply was modified 1 year, 5 months ago by
jazzs3quence. Reason: fix bash