in fact, it is a warning log message instead of a thrown exception, see below
in org.apache.dubbo.config.spring.status.SpringStatusChecker#check:
```java
} catch (Throwable t) {
logger.warn(t.getMessage(), t);
}
```
I think this is not a bug. Right now SpringStatusChecker checks config
locations for all potential ConfigurableWebApplicationContext's implementations
within which some impls may throw UnsupportedOperationException but I think
it's fine since eventually SpringStatusChecker will **catch** all exceptions
and logs a warning.
[ Full content available at:
https://github.com/apache/incubator-dubbo/issues/2009 ]
This message was relayed via gitbox.apache.org for
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]