Changes between Version 1 and Version 2 of Ticket #32659, comment 2


Ignore:
Timestamp:
Apr 23, 2021, 5:50:35 PM (3 years ago)
Author:
Steven Mapes

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32659, comment 2

    v1 v2  
    33*update*
    44
    5 The issue is that the request hits django.contrib.admin.views.autocomplete.AutocompleteJsonView.process_request where a `KeyError` occurs for app_label because request.GET is an empty QueryDict
     5The issue is that the request hits ''django.contrib.admin.views.autocomplete.AutocompleteJsonView.process_request'' where a `KeyError` occurs for app_label because request.GET is an empty QueryDict
     6
     7
     8* update 2*
     9When Django Storages is turned off request.GET is the following
     10
     11
     12{{{
     13<QueryDict: {'app_label': ['example'], 'model_name': ['examplemodel'], 'field_name': ['lookup']}>
     14}}}
     15
Back to Top