Thiago P. Ferreira

Results 5 comments of Thiago P. Ferreira

The palliative solution I found was to retrieve the CronJob callback list (`job._callbacks`) and for each `spawn` object ([child_process](https://nodejs.org/docs/latest-v12.x/api/child_process.html#child_process_child_process_spawn_command_args_options)) within it, add an handler to the spawn `'error'` event, so...

Hey @gubtos the same problem is happening to me! I debugged locally here and noticed that the [shouldImportAvroTypeGen()](https://github.com/heetch/avro/blob/v0.4.5/cmd/avrogo/generate.go#L30) function is not behaving as it should. I think the problem is...

Hi @rogpeppe ! Here is my `.avsc` ```json { "type": "record", "name": "BusinessModelChangeAudit", "namespace": "br.com.ifd.content", "fields": [ { "name": "context", "type": [ "null", "string" ], "default": null, "doc": "information about...

I believe the problem in the current algorithm is not related to the ordering of the `definitions` slice, but rather with the `==` comparator is being used within the `sort.Search()`...

I was reviewing the description I left in the pull request and I saw that I gave too much emphasis to the iteration through `namespace.Definitions` map, when in fact the...