添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account Rafal-Spryszynski, bernhardkern, patrickbray, ayoug, gomil, YardStrong, jack80342, ionutincau, Christoph-W, m-thirumal, and 10 more reacted with thumbs up emoji jack80342, luweijie06, yiliaofan, xshwhy, and fachrianlr reacted with rocket emoji Nomiracle, luweijie06, 22yune, MartinWeise, and fachrianlr reacted with eyes emoji All reactions kgrodzicki, maksmas, ilkinabdullayev, cay914, matdecro, trixobird, linvsendian, alcideslins, mercurymarsx, hakil, and 31 more reacted with thumbs down emoji ilkinabdullayev, rxynrg, phoenigm, jaehwanie, emvidi, Biacode, and hfelixv reacted with confused emoji All reactions

if EndpointId includes '-' or '.', it prints this warning.

// org.springframework.boot.actuate.endpoint.EndpointId.java
private static final Pattern WARNING_PATTERN = Pattern.compile("[\\.\\-]+");
// ...
// other codes
// ...
if (WARNING_PATTERN.matcher(value).find()) {
    logWarning(value);
// ...
// lots of other codes
// ...
private static void logWarning(String value) {
    if (logger.isWarnEnabled() && loggedWarnings.add(value)) {
        logger.warn("Endpoint ID '" + value + "' contains invalid characters, please migrate to a valid format.");
  jack80342, ricLuo, chintensakai, jackeylu, bearxsh, ChanaLii, bbqtk, Amarildoo, hakil, farhatamiine, and 4 more reacted with thumbs up emoji
  jack80342 and yiliaofan reacted with rocket emoji
    All reactions
      Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format
      fix Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format

Still not resolved with Hoxton...any plans on fixing this. I don't like warnings in my startup log ;)

me too

fix Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format nkonev/spring-cloud-commons