Raman Gupta
Raman Gupta
It would be nice if `networkaddress.cache.ttl` could easily be specified for jib-based images. Currently the `java.security` policy file simply contains `-1`, which is the default behavior (which may be "cache...
Schema registry should migrate (over a major version, of course) from using a magic value inside the payload to specifying the schema id in a Kafka message header. This would...
I have a GCE ingress in front of an HPA-managed deployment (at this time, with a single replica). On a rolling deployment, I sometimes run into the backend being marked...
Chrome is rolling out [tab groups](https://blog.google/products/chrome/manage-tabs-with-google-chrome). It would be great if QuicKey had support for tab groups. My initial thoughts are the following use cases: 1) Group tabs by tab...
The diff function does not take into account the time zone. Reproduction recipe: ``` let range = moment.parseZoneRange('2010-03-31T20:00:00-04:00/2010-04-30T20:00:00-04:00') range.end.diff(range.start, 'months') // 0 range.end.utc().diff(range.start.utc(), 'months') // 1 ```
If I have two ranges whose moments consist of values in UTC (i.e. `moment(...).utc()`), when calling `subtract` the result is correct, but the ranges have lost their utc property are...
Another problem I've found running clusters with this setup: if all the master nodes go down for some reason (I had this issue with my masters after applying an updated...
We can use filters to include specific containers by id, name, etc. It would be useful to exclude containers in the same way. Sometimes the environment / label approach does...
I am using kmongo on a multiplatform project, which necessarily uses kotlinx.datetime for the datamodel since java.time.* are not multiplatform. It would be great if kotlinx.datetime was supported for serializing...
The protobuf "well-known types" (https://developers.google.com/protocol-buffers/docs/reference/google.protobuf) are included in every language runtime, including the npm package (see https://github.com/google/protobuf/issues/1638). Currently, grpcc requires proto files that import a well-known type to have a...