Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: Mu-L/eureka

Tags

v1.9.20

Toggle v1.9.20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Upgrade Jackson to 2.9.10 (Netflix#1284)

v1.9.19

Toggle v1.9.19's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add stats for DiscoveryClient (Netflix#1282)

Introduce a nested class for `DiscoveryClient` to make it easier for
users to read helpful attributes that can assist in log analysis and
debugging. Most of these attributes are captured by existing metrics:

- `initTimestampMs`: timestamp when the client was initialized
- `localRegistrySize`: number of instances for all applications
- `lastSuccessfulRegistryFetchTimestampMs`: timestamp for last successful fetch
- `lastSuccessfulHeartbeatTimestampMs`: timestamp for last successful heartbeat

Add a new attribute called `initLocalRegistrySize`, which is the
number of instances for all applications read when the client was
initialized. Include a helper method that uses this attribute so
that users can determine whether the client's initial fetch of registry
information succeeded or failed. Note that other accessors are suffixed
with `Ms` (for milliseconds) to denote the time unit.

Additionally, update the existing `registrySize` with the value from
`initLocalRegistrySize` during initialization instead of waiting until
the first local registry refresh.

Co-authored-by: John Bennett <[email protected]>

v1.9.18

Toggle v1.9.18's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allow to use the public IPv4 address as the primary if enabled (Netfl…

…ix#1275)

v1.9.17

Toggle v1.9.17's commit message
Decrement expectedNumberOfClientsSendingRenews for expired leases (Ne…

…tflix#1271)

Move the logic that decrements the expected number of clients into
cancelInternal - this should ensure that we're calling it both for
explicit cancels as well as well as when the instance lease expires.

Fixes Netflix#1266.

v1.9.16

Toggle v1.9.16's commit message
Disable jersey2 json auto discovery (Netflix#1262)

v1.9.15

Toggle v1.9.15's commit message
Gracefully handle HTML errors from Eureka server (Netflix#1265)

It is possible to get HTML responses from the server (e.g. Apache fails to
talk to backend API). These would result in a failure to deserialize
and a random exception logged.

v1.9.14

Toggle v1.9.14's commit message
Cleanup resources on web-app shutdown (Netflix#1207) (Netflix#1251)

v1.9.13

Toggle v1.9.13's commit message
Use HashMap if CompactHashMap is not available on classpath (Netflix#…

…1235)

This allows eureka users to exclude compactmap library if they so choose.

v1.9.12

Toggle v1.9.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request Netflix#1218 from elandau/bugfix/discovery_client_…

…constructor

Put back deprecated constructor

v1.9.11

Toggle v1.9.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update woodstox to 5.x (Netflix#1216)