mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[4.0.x] Refs #33163 -- Corrected example of connection signal handlers in AppConfig.ready().
Backport of 75ee7057e9 from main
			
			
This commit is contained in:
		| @@ -142,6 +142,7 @@ Now, our ``my_callback`` function will be called each time a request finishes. | ||||
|     connect signal handlers:: | ||||
|  | ||||
|         from django.apps import AppConfig | ||||
|         from django.core.signals import request_finished | ||||
|  | ||||
|         class MyAppConfig(AppConfig): | ||||
|             ... | ||||
| @@ -150,7 +151,7 @@ Now, our ``my_callback`` function will be called each time a request finishes. | ||||
|                 # Implicitly connect a signal handlers decorated with @receiver. | ||||
|                 from . import signals | ||||
|                 # Explicitly connect a signal handler. | ||||
|                 signals.request_finished.connect(signals.my_callback) | ||||
|                 request_finished.connect(signals.my_callback) | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user