Scott Fauerbach

Results 69 issues of Scott Fauerbach

## Overview Add TimeStamp field to StreamInfo and ConsumerInfo ``` TimeStamp time.Time `json:"ts"` ``` Server PR: https://github.com/nats-io/nats-server/pull/4133 ## Clients and Tools - [x] Schemas @ripienaar - [x] CLI @ripienaar -...

enhancement
client

## Overview This applies to both legacy and simplification. Considers the state of the server: ```go type ConsumerConfig struct { // Durable is deprecated. All consumers should have names, picked...

enhancement
client

## Overview Ensure filter subject matching when creating subscriptions is consistent. Filter subject matching is required when a subscription is requested against an existing durable. ### Glossary `SubscribeSubject` - The...

enhancement
client
Related to JS Simp

## Overview _OPTIONALLY...._ Provide some mechanism for the user to override providing the list of urls used for connecting or reconnecting to servers. * The client would pass along the...

documentation
enhancement
discussion

## Overview Change clients to have the behavior described in the [Go Client PR 920](https://github.com/nats-io/nats.go/pull/920) >When calling js.Subscribe() (or equivalent) and the library ended-up creating the JS consumer, a MaxAckPending...

enhancement
client

## Overview ### Defaults Clients should ensure their subscription default max pending limits as in the Go client https://github.com/nats-io/nats.go/blob/main/nats.go#L4571 ```go // Pending Limits const ( // DefaultSubPendingMsgsLimit will be 512k...

enhancement
client

## Overview Please make sure your digest algorithm is exactly `SHA-256` [ADR-20 Digest](https://github.com/nats-io/nats-architecture-and-design/blob/main/adr/ADR-20.md#digest) was updated _after_ the go client was written and some clients had already coded with the lowercase...

enhancement
client

## Overview Ensure that digesters are producing the same value across language clients by testing some sample data. Digesting is required for Object Store. ## Test Data | Data File...

enhancement
client

## Overview Allow ephemeral pull consumers to be created during subscription. ## Clients and Tools - [x] Schemas @ripienaar - [x] Go @piotrpio - [x] Java @scottf - [x] JavaScript...

enhancement
client
Related to JS Simp
P-L