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
My guess is that the introduction of Kitura/Kitura-Session#54 has caused this failure. This could potentially be a simple test issue but needs investigation.
The text was updated successfully, but these errors were encountered:
A a pr has been raised which fixes this issue by removing support for Codable sessions for swift 4.0. This has been tested by raising an issue branch to run Travis which is now passing.
We decided it would be better to remove the new feature over breaking existing builds and once Swift 5 is release we will be dropping support for Swift 4.0 anyway.
Recently,
TestSession.testSession
has started failing on Swift 4.0.3 (only) with the error:The stack trace indicates that we are in the process of storing a user profile:
Swift 4.0.3 appears to be calling the SessionState subscript setter which takes a Codable when storing the userProfile, whereas Swift 4.2.1 - which passes - calls the setter that takes an Any.
My guess is that the introduction of Kitura/Kitura-Session#54 has caused this failure. This could potentially be a simple test issue but needs investigation.
The text was updated successfully, but these errors were encountered: