mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Upgrade levelqueue 0.4.1 (#16696)
This commit is contained in:
		
					parent
					
						
							
								f5158b4304
							
						
					
				
			
			
				commit
				
					
						f7a302ca6f
					
				
			
		
					 4 changed files with 8 additions and 8 deletions
				
			
		
							
								
								
									
										8
									
								
								vendor/gitea.com/lunny/levelqueue/queue.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								vendor/gitea.com/lunny/levelqueue/queue.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -21,8 +21,8 @@ const ( | |||
| // Queue defines a queue struct | ||||
| type Queue struct { | ||||
| 	db                *leveldb.DB | ||||
| 	highLock          sync.Mutex | ||||
| 	lowLock           sync.Mutex | ||||
| 	lowLock           sync.Mutex // If you are locking both high and low locks, lock the low lock before the high lock | ||||
| 	highLock          sync.Mutex // If you are locking both high and low locks, lock the low lock before the high lock | ||||
| 	low               int64 | ||||
| 	high              int64 | ||||
| 	lowKey            []byte | ||||
|  | @ -295,10 +295,10 @@ func (queue *Queue) LHandle(h func([]byte) error) error { | |||
| 
 | ||||
| // Close closes the queue (and the underlying db is set to closeUnderlyingDB) | ||||
| func (queue *Queue) Close() error { | ||||
| 	queue.highLock.Lock() | ||||
| 	queue.lowLock.Lock() | ||||
| 	defer queue.highLock.Unlock() | ||||
| 	queue.highLock.Lock() | ||||
| 	defer queue.lowLock.Unlock() | ||||
| 	defer queue.highLock.Unlock() | ||||
| 
 | ||||
| 	if !queue.closeUnderlyingDB { | ||||
| 		queue.db = nil | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue