Aswin Karthik

Results 10 issues of Aswin Karthik

### Submission type - Request for enhancement (RFE) ### Enhancement Description In `pg_basebackup`, there is a flag `--max-rate` to limit the transfer of data directory when running `pg_basebackup`. This is...

This is a request for opinion. Instead of invoking kubectl commands inside the shell script, can we do an `exec` so that the process is replaced with the `kubectl` command...

It will be helpful to merge the diffs as a single row

If there are more than one matches in a line, only the first occurrence is changed

This is due to an issue in chrono library [#288](https://github.com/chronotope/chrono/issues/288)

As of now the source timezone is auto inferred from the log and if its not inferred, it is assumed to be UTC. We need to allow specifying source timezone

API: ```go array1 := []int{1,2,3} array2 := []int{4,5,6} array3 := []int{7,8,9} var ouput []int godash.Flatten(&output, array1, array2, array3) // output should be []int{1,2,3,4,5,6,7,8,9} ```

Currently, we assume that the predicate/mapper/reducer functions will only return one type of value. There are cases where the functions may generate errors inside. In order to handle this, let...

The API and behaviour is same as `godash.Map`. Same validations apply. Just that the `mapperFn` has to be executed on all elements in Go routines and the output is collected...

API ```go john := Person{name: "John", age: 25} doe := Person{name: "Doe", age: 30} wick := Person{name: "Wick", age: 25} input := []Person{ john, doe, wick, } var output map[int][]Person...