mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[4.1.x] Fixed #33939 -- Used functools.partial() in transaction.on_commit() examples.
Backport of 7e6b537f5b from main
			
			
This commit is contained in:
		
				
					committed by
					
						 Carlton Gibson
						Carlton Gibson
					
				
			
			
				
	
			
			
			
						parent
						
							85942cf669
						
					
				
				
					commit
					8a8a00388b
				
			| @@ -308,9 +308,11 @@ Pass any function (that takes no arguments) to :func:`on_commit`:: | ||||
|  | ||||
|     transaction.on_commit(do_something) | ||||
|  | ||||
| You can also wrap your function in a lambda:: | ||||
| You can also bind arguments to your function using :func:`functools.partial`:: | ||||
|  | ||||
|     transaction.on_commit(lambda: some_celery_task.delay('arg1')) | ||||
|     from functools import partial | ||||
|  | ||||
|     transaction.on_commit(partial(some_celery_task.delay, 'arg1')) | ||||
|  | ||||
| The function you pass in will be called immediately after a hypothetical | ||||
| database write made where ``on_commit()`` is called would be successfully | ||||
|   | ||||
		Reference in New Issue
	
	Block a user