Walther Lee
Walther Lee
Making shallow copies of GrapheneObjectType using copy.copy raises `KeyError: 'graphene_type'` ```python import graphene import copy class Query(graphene.ObjectType): users = graphene.List(graphene.String) def resolve_users(self, info): return [] schema = graphene.Schema(query=Query) copy.copy(schema.graphql_schema.query_type) #...
**What this PR does / why we need it**: I see the following issue in a ksm deployment with custom CRD config enabled. Whenever a new CRD event is added...
The `dedup.boundedSeriesIterator` [uses mint and maxt](https://github.com/thanos-io/thanos/blob/v0.36.0/pkg/dedup/iter.go#L477) to iterate its `chunkenc.Iterator` and emit only samples in the range. However, this means that to know whether it has reached the maxt, it...
Currently, every Jira notification [sends a request](https://github.com/prometheus/alertmanager/blob/main/notify/jira/jira.go#L109-L114) that overwrites user changes to issue fields (title, description, priority, etc). Losing changes may be unexpected for many Jira users, and this PR...
Re: https://github.com/prometheus/alertmanager/issues/2812 `filter` is an array, but multiple items have to be added by repeating the param. This can be confusing since "a list of matchers" could be understood as...
Re: https://github.com/prometheus/alertmanager/issues/4263 The current links were moved and now redirect to a sub section in the Block Kit docs. I'm changing them to go directly to the legacy attachment docs...
It's an old thread, but there's been some discussion here about supporting templating in webhook url fields: https://github.com/prometheus/alertmanager/issues/684 The issue was closed in 2017 because the alertmanager didn't support templating...