Ignacio del Valle Alles
Ignacio del Valle Alles
http://brutusin.org/json-forms/#12
in order to render, email inputs, date inputs, ... custom inputs
When instrumenting this example with our agent: ``` package main; import com.esotericsoftware.reflectasm.MethodAccess; public class Main { public static void main(String[] args) { StringBuilder obj = new StringBuilder("ff"); MethodAccess access =...
I would expect `earthly +test-docker` run the two builds in parallel, but that is not the case. Notes: - Commenting the `FROM alpine` line brings parallelization - Moving `FROM alpine`...
Adds an idempotency key to the headers sent by the requests and its retries so the server can use this header to avoid processing multiple times a non-idempotent implementation. >...
Obtained this error while running on satellites from GH actions. Multiple jobs failed at the same time with a similar error. Looks like we need to review the retry mechanism...
- Why did I use `callbackId` in https://github.com/brutusin/instrumentation/blob/master/src/main/java/org/brutusin/instrumentation/Agent.java#L31 if the `premain()` method is only called once? - Probably is better to use a static instance counter inside `Callback`, pass the...
Check the project for threading issues, like - non-thread safe collections (for example [Callback.java#L29](https://github.com/brutusin/instrumentation/blob/master/src/main/java/org/brutusin/instrumentation/Callback.java#L29)) - non volatile fields updated from different threads - use atomic counters
For blocking operations performed in the action for example in `DelegatingHttpAction` it would be great being able of setting the action as "async" and executing it in a aync context...