Session.get

Hey, where have the following methods defined in io.gatling.core.session.Session gone:

def get[T](key: String): Option[T] = attributes.get(key).map(.asInstanceOf[T])
def get[T](key: String, default: => T): T = attributes.get(key).map(
.asInstanceOf[T]).getOrElse(default)
def getV[T: ClassTag](key: String): Validation[T] = attributes.get(key).map(_.as[T]).getOrElse(undefinedSessionAttributeMessage(key).failure[T])

Thanks,

Nick

Hi,

All the discussion about that is in : https://github.com/excilys/gatling/issues/1175

cheers
Nicolas