mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Fix DB session cleanup (#15697)
The DB session clean up needs to check expiry not created_unix. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
		| @@ -117,6 +117,6 @@ func CountSessions() (int64, error) { | |||||||
|  |  | ||||||
| // CleanupSessions cleans up expired sessions | // CleanupSessions cleans up expired sessions | ||||||
| func CleanupSessions(maxLifetime int64) error { | func CleanupSessions(maxLifetime int64) error { | ||||||
| 	_, err := x.Where("created_unix <= ?", timeutil.TimeStampNow().Add(-maxLifetime)).Delete(&Session{}) | 	_, err := x.Where("expiry <= ?", timeutil.TimeStampNow().Add(-maxLifetime)).Delete(&Session{}) | ||||||
| 	return err | 	return err | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 zeripath
					zeripath