Marco Spasiano

Results 17 comments of Marco Spasiano

Ciao, allora potresti usare lo stesso reverse proxy per mappare /govpay sul tuo dominio

Sarebbe possibile passare la URL come variabile di ambiente tipo IT_GOVPAY_APIURL=http://..... ?

Nel caso di Swagger UI il problema si potrebbe risolvere semplicemente: ``` urls: [ {url: "/govpay/frontend/api/pagamento/v2/govpay-api-pagamento-v2.yaml", name: "API Pagamento v2"}, {url: "/govpay/frontend/api/pagamento/v1/govpay-api-pagamento-v1.yaml", name: "API Pagamento v1"}, ], ```

Now there are many open source projects on both client and server sides for integration with identity and access management, we at [CNR](https://github.com/consiglionazionaledellericerche) having projects developed in Angular mainly use...

For example, at this [point](https://github.com/conductor-oss/conductor/blob/main/core/src/main/java/com/netflix/conductor/core/dal/ExecutionDAOFacade.java#L348) you could search for all workflows that have the incoming workflowId as parent_workflow_id and delete them by calling the same method

Inspecting the code a bit, the solution could be to store the parent_workflow_id information on the indexes and in case these are active use it to get all the child...

I tried changing the strategy and inserting the removal of the workflow when the task responsible for starting it is removed: ``` java if (Optional.ofNullable(task) .map(TaskModel::getTaskType) .filter( s -> s.equalsIgnoreCase(TaskType.TASK_TYPE_START_WORKFLOW)...