You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the command ey-core recipes apply -e my_environment, it prints this error
Started main chef run
Error:
Unknown cookie parameter 'samesite'
By digging the code, I see it's a InvalidCookieError error from cookiejar gem. My guess is that their switch case when :samesite doesn't work for string 'samesite', it needs symbol :samesite
I can see the chef recipe is being applied by checking chef logs on EngineYard cloud dashboard but on my terminal it's over... I can't see if it's terminated or not.
The text was updated successfully, but these errors were encountered:
When using the command
ey-core recipes apply -e my_environment
, it prints this errorBy digging the code, I see it's a
InvalidCookieError
error fromcookiejar
gem. My guess is that their switch casewhen :samesite
doesn't work for string'samesite'
, it needs symbol:samesite
https://github.com/dwaite/cookiejar/blob/36f692bfb66808a40285f47ae536a81f29a502dc/lib/cookiejar/cookie_validation.rb#L324-L325
I can see the chef recipe is being applied by checking chef logs on EngineYard cloud dashboard but on my terminal it's over... I can't see if it's terminated or not.
The text was updated successfully, but these errors were encountered: