sebastien requiem
sebastien requiem
As an example, when a k8s cluster runs on EKS (and that OIDC is configured properly), each pod that gets started on the cluster (including the jenkins-agents) gets a Projected...
**Checklist** - [x] I am running the latest version of the card - [x] I checked if there isn't another feature request opened with the same request - [x] I...
Considering this case : ``` class A(models.Model): user = models.ReferenceField(B) class B(models.Model): att = models.Attribute() b1 = B(att='test) b1.save() b2 = B(att='test') b2.save() a = A(user=b1) a.save() self.assertEqual(a.user_set.get_by_id(b1.id), b1) self.assertEqual(a.user_set.get_by_id(b2.id),...
This code: `obj.filter(obj_ref_id=1).zfilter(count__in=(1, 20))` is not executed properly. Only the zfilter is apply, leaving the filter on the object reference out. The code documentation states that only one zfilter will...
It is usually useful to check the value returned by redis when doing a `zadd`. It helps knowing if the elements has been added or just updated. Redisco should reflect...
Redisco should support Timezones or at least, store the DateTimeFields in UTC instead of trusting the naive objects.
The SortedSet container does not expose the `zrevrangebyscore` function (listed here http://redis.io/commands/zrevrangebyscore)
Version : 1.0.0-SNAPSHOT API: reactive. Use case: trying to spawn 6M+ messages to disque Reproduction : ```kotlin val disqueClient = DisqueClient.create(DisqueURI.create("disque://localhost:7711")) var conn = disqueClient.connect().reactive() Observable.just("channel") .flatMap { _ ->...