Aurelio Hacher
Aurelio Hacher
I update pomelo from 1.2.3 to 2.2.5, everything is ok until I perform pressure test on it, it crashed. After read the logs, I think the crash is caused by...
``` llm_task1=LLMOperator(llm_client) llm_task2=LLMOperator(llm_client) input_task >> llm_task1 >> merge_task input_task >> merge_task merge_task >> llm_task2 ``` fail with: Share data key share_data_key_model_name already exists.
```java new AgentBuilder.Default() .type(ElementMatchers.is(HikariDataSource.class)) .transform(new Transformer() { @Override public Builder transform(Builder builder, TypeDescription typeDescription, ClassLoader classLoader, JavaModule module, ProtectionDomain protectionDomain) { return builder .defineField("ds1", HikariDataSource.class, Visibility.PUBLIC) .defineField("proxy", Boolean.class, Visibility.PUBLIC) .defineField("current",...