Jason Lee

Results 11 comments of Jason Lee

@vietj You're right, vertx-codegen doesn't like Callable: `Error: java:: type java.util.concurrent.Callable is not legal for use for a parameter in code generation` any plan of including it in the future?

That is unfortunate, let me know if I can help in any way.

Yeah, I've noticed that. But I wasn't sure if you're okay with it. Do you want me to create a PR for it?

All right. Let me know. Besides `callable`, I would also like to overload it with `Runnable` since the rx APi return `Maybe` ``` Maybe rxExecuteBlocking(Runnable runnable) { return vertx.rxExecuteBlocking( promise->...

I will be working on this.

I am able to resolve it by replacing this line https://github.com/OpenAPITools/openapi-generator/blob/a2b37d67c05a9e09a047d0c5d20652326fe3d2fa/modules/openapi-generator/src/main/java/org/openapitools/codegen/examples/ExampleGenerator.java#L354 from `return null;` to `return resolvePropertyToExample(name, mediaType, schema, processedModels);` However, I'm not sure if it is a correct fix.

You can enable TLS/SCTP using this example configuration: ```js let client = diam.Client({ requestTimeout: "50ms", enableWatchdog: false, authApplicationId: [app.ChargingControl], vendorSpecificApplicationId: [ { authApplicationId: app.ChargingControl, vendorId: vendor.TGPP, } ], capabilityExchange: {...

I have not used FreeDiameter, so I am unable to help you with that. However, I tested xk6-diameter with this diameter server. https://github.com/lwlee2608/diameter-example SCTP without TLS: ![image](https://github.com/MATRIXXSoftware/xk6-diameter/assets/6957561/6094a895-9cd1-4e40-ae43-30a4e0398da1) SCTP with TLS:...

Hello @tmc, just a friendly follow-up. This PR adds the unit tests that were requested earlier. It’s been sitting for a while, so I wanted to check if there’s anything...