Jakob Oswald
Jakob Oswald
@joshuabaker Hey, is there any chance this will be merged anytime soon?
Hi @yegor256, if I am not mistaken this is not different (and probably worse) than setting the timeout on the request itself. What I would like to do is to...
EDIT: I expect the `de` title to be indexed on the `de` haystack connection, instead it is written to the `en` connection. The contents are correct however. EDIT 2: This...
Thank you, I will check it out!
I haven't tested the code, yet but from the looks this is what I imagined. However the line ``` python unified_index = connections[alias].get_unified_index() ``` https://github.com/aldryn/aldryn-search/blob/fixes/let-object-decide-alias/aldryn_search/router.py#L32 looks suspicious to me, since...
FYI, works for my use cases so far. Thank you very much Jakob
Hey @czpython, what happened to the branch if I may politely inquire? Is there any way this will make it into a release? Realtime indexing is seriously broken without this...
EDIT: OK forget that we could use the function that I mentioned, but would there be a possibility to detect the publishing language another way? Hey @czpython, how about a...
Another possibility would be a registry, that allows language lookup based on the instance. Something like: ``` python def get_instance_language(instance): try: lookup = language_lookups[instance.__class__] except KeyError: return get_language() else: return...