appunni-old
appunni-old
``` from typing import Dict from pydantic import Json, Field from pydantic_settings import BaseSettings class HttpSettings(BaseSettings): base_url: str = Field(alias='BASE_URL') headers: Json[Dict[str, str]] = Field(default="{}", alias='HTTP_HEADERS') if __name__ == "__main__":...
``` class HttpSettings(LucarioSettings): base_url: str = Field(alias='BASE_URL') headers: Json[Dict[str, str]] = Field(default="{}", alias='HTTP_HEADERS') if __name__ == "__main__": settings = HttpSettings( _env_prefix="RATHER_", _case_sensitive=True ) ``` This one works, but _case_sensitive=False is...
Not able to replicate in orkes platform
I debugged it by running line by line, attaching first lines as well ``` 595060 [sweeper-thread-24] INFO com.netflix.conductor.core.reconciliation.WorkflowRepairService [] - Task 46abe269-5daf-403a-9b15-cbd7878b8bed in workflow 7d137e5b-304e-449c-9607-6413bfee8fd0 re-queued for repairs 667288 [HikariPool-1...
And I definitely think it's something to do with the config, because I created same via UI and it worked completely fine. In orkes default cluster task limit was 1000,...
Issue Identified: This happens when task reference name has double underscore. Which means this will evaluate false. We should have validation when accepting taskReference names not to have double underscore...
@v1r3n hey I have fixed the build.
I am making one more change @v1r3n this will solve for #3880 as well
@manan164 i take it as input from user, thus I don't want to take chances with it. There are no validations against it either.
@manan164 can we merge this ? Any blocker ?