Guy Rozendorn

Results 14 issues of Guy Rozendorn

should be useful to remember that last chosen value and use it as the default for the next time. similar to https://marketplace.visualstudio.com/items?itemName=spadin.memento-inputs

enhancement
help wanted
good first issue

The error returned is ``` expected a map, got 'string' ``` mapstructure doesn't support decoding natively, there's a need for adding a custom decoder, see https://github.com/mitchellh/mapstructure/issues/159 Can you please add...

I deployed an Ubuntu 20.04 instance on AWS; these instances has one sudoer user called _ubuntu_ and it has no password. I tried to running ``` ubuntu@ip-172-31-17-172:~$ /bin/bash -c "$(curl...

help wanted
linux

For example, If I forbit redirect, and upload Fabric to djangopypi, and then ask for 'fabric', I won't get the package. But if I do if I ask for 'Fabric'....

### What problem are you trying to solve? Do you a suggestion on how to solve it? Are there keyboard shortcuts for easy navigation inside the app? Ideally it would...

feature request

The metric 'apollo_router_http_request_duration_seconds' is great, exposing the duration for each Gql operation. It would even better to have a metric for the request/response body sizes per opeation. From what I...

component/open-telemetry
raised by user

Hi @jackc , we use call `RegisterDefaultPgType` for custom structs like this ``` RegisterDefaultPgType(SomeStruct, "jsonb") ``` and everything would work in v5.5.4. Now with v5.7 (and I guess with v5.6...

bug

https://github.com/prometheus-community/postgres_exporter/blob/98f75c7e7ea3a02b974cfeda736cf7dbc091b18e/collector/pg_long_running_transactions.go#L52C2-L52C30 Its missing a condition on the duration of the query, as seen in https://github.com/prometheus-community/postgres_exporter/pull/819/files, e.g. ``` AND (now() - xact_start) > '1 minutes'::interval ``` ![CleanShot 2024-09-09 at 01 15...

We have something like this in our schema ``` extend type SomeType @key(fields: "id") { id: ID! @external someField @requires(fields: "anotherField { unionField { ... on typeA { field1 }...