Aaron Whiteside

Results 14 issues of Aaron Whiteside

#### Summary Currently when comparing two representations of the same entity from different domains/models, where one has null for a collection and the other has an empty collection, there is...

type: improvement
theme: recursive comparison

The following is the "on the wire" interaction between our REST client and the Kafka REST Proxy. A summary of the operations performed is: 1. Start the various docker images...

Using the latest 2.27 ``` Stack: [0x00007f1a40bdd000,0x00007f1a40cde000], sp=0x00007f1a40cda1f0, free space=1012k Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code) C [libc.so.6+0x5ad48] _IO_vfscanf+0xc8 C [libc.so.6+0x6ec67] vsscanf+0x67...

bug

In our organization it's rare that we require specific durability per document, typically it's the same across all our documents and even projects. It would be nice if we could...

type: enhancement

This should work alongside cas support in PR #1051 Idea for API: ```java MyEntity entity = template.removeById(MyEntity.class) .withCas(12345L) .one("abc123"); ``` It would be good if this support was also extended...

status: blocked
type: enhancement

API Idea: ```java final MyEntity entity = template.findById(MyEntity.class) .lock(Duration.ofSeconds(5)) .one("abc123"); ``` `.lock()` should also exist that takes no arguments and uses the default lock duration.

type: enhancement

We use something like this in our custom base repository: ```java final Mono totalCount = getReactiveCouchbaseOperations().findByQuery(getEntityInformation().getJavaType()) .withConsistency(buildQueryScanConsistency()) .matching(new Query().with(pageable)) .count(); final Mono pageContents = getReactiveCouchbaseOperations().findByQuery(getEntityInformation().getJavaType()) .withConsistency(buildQueryScanConsistency()) .matching(new Query().with(pageable)) .all() .collectList();...

status: waiting-for-triage

Background: We use N1QLExpression in our custom base repository Solution: (from our workaround) ```java public N1QLExpression update(String bucketName) { N1QLExpression bucket = escapedBucket(bucketName); return prefix("UPDATE", bucket.toString()); } public N1QLExpression set(N1QLExpression......

status: waiting-for-triage

Deprecated withCredentials(), created more specific withAdminCredentials() replacement method, and associated getters. Updated tests. fixes #2795

resolution/acknowledged
modules/couchbase

### Description When running mvn deploy using buildx it is unable to push any resulting images. ### Info * docker-maven-plugin version : 0.40.2 * Maven version (`mvn -v`) : ```...

buildx