I\'m currently facing an issue where Eureka does not unregister a registered service. I\'ve pulled the Eureka server example straight from git hub and made only one change,
I realized that self preservation mode was never actually being disabled. It turns out the actual property is
eureka.server.enableSelfPreservation=false
(See DefaultEurekaServerConfig Code), which I haven't found documented anywhere. This resolved my issue.