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
)
* Filtering the log of one task to the log of another task
* Filtering the log of one task to the log of another task update
* rollback
* The log shows confusion
* update loggerserver
* update
* datasource connect error modify
* rollback code,logger server log filter ,process variables modify local variables
* Client ip changes, sessionId cannot be accessed modify
* mr and spark task tenant queue set error modify
* tenant queryById modify
* update
* update
* update
* update
* TaskSchedulerThread TaskProps setTenantCode
* logger filter modify
* logger log filter modify path not contains dot
* data_source.properties modify
* A user multiple ip generated session, query BUG
…g of another task (#696)
* bug fix#688,a user generated multiple ip session, the query error (#689)
* Dockerfile update
* worker code optimization
* filtering the log of one task to the log of another task
SessionMapper :
/**
* query by user id and ip
* @param userId
* @return
*/
@results(value = {
@Result(property = "id", column = "id", id = true, javaType = String.class, jdbcType = JdbcType.VARCHAR),
@Result(property = "userId", column = "user_id", javaType = int.class, jdbcType = JdbcType.INTEGER),
@Result(property = "ip", column = "ip", javaType = String.class, jdbcType = JdbcType.VARCHAR),
@Result(property = "lastLoginTime", column = "last_login_time", javaType = Timestamp.class, jdbcType = JdbcType.DATE)
})
@SelectProvider(type = SessionMapperProvider.class, method = "queryByUserId")
Session queryByUserId(@param("userId") int userId);
Update:
/**
* query by user id and ip
* @param userId
* @return
*/
@results(value = {
@Result(property = "id", column = "id", id = true, javaType = String.class, jdbcType = JdbcType.VARCHAR),
@Result(property = "userId", column = "user_id", javaType = int.class, jdbcType = JdbcType.INTEGER),
@Result(property = "ip", column = "ip", javaType = String.class, jdbcType = JdbcType.VARCHAR),
@Result(property = "lastLoginTime", column = "last_login_time", javaType = Timestamp.class, jdbcType = JdbcType.DATE)
})
@SelectProvider(type = SessionMapperProvider.class, method = "queryByUserId")
List queryByUserId(@param("userId") int userId);
The text was updated successfully, but these errors were encountered: