selimt

Results 10 comments of selimt
trafficstars

That's ok, it was as simple as adding the following: ``` @form_field_for_filter(forms.CharField()) def filter_exact_for_django(self, queryset, spec): value = json.loads(spec.value) f = queryset.filter if not spec.is_negated else queryset.exclude return f(status=value) ```

Hi, revisiting this issue since we are running into the problem as well. Currently if a jsonfield contains a dictionary we are unable to filter for a value for a...

Hi I did some testing on Linux both with RocketChat desktop client and the notify-send command and when I use notify-send I can get the notifications to stay up indefinitely...

The other thing I noticed is that with notify-send, the second array has a variant of type byte while the Rocket Chat notifications have a variant of int32. Maybe the...

That didn't but this did : ``` self.search = self.search.extra(track_total_hits=True) ``` Although the pagination doesn't seem to work with it since if I try to provide an offset past 10000...

FYI, in case it helps, we've added a request logger to our client code: ``` from uplink.clients.io import RequestTemplate class RequestLogger(RequestTemplate): """Template class for logging API requests.""" def before_request(self, request):...

I also opened up an issue here: https://github.com/elastic/elasticsearch-dsl-py/issues/1650 Since without it this can not be easily supported.

Yes but this import is in the `django-elasticsearch-dsl-drf` code. Are you suggesting I test and submit a PR ?

@barseghyanartur just checking to see where we are with this ticket. We rather not pin the `elasticsearch-dsl` version. Thanks.

@barseghyanartur , if @priyanshu69code 's change looks good to you , can we apply that change here as well ? Thanks.