We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
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
Describe the bug corba.nameservers の与えるネームサーバのリストに、unreachable なものがあると、reachable なネームサーバに対しても名前が登録されない。
Environment
The text was updated successfully, but these errors were encountered:
名前が登録されない現象は一時的なものでしたが、ネームサーバへの接続がfailした場合、NSオブジェクトがNULLで返ってくるのに、そのままリストに追加しているが、NULLの場合はリストに追加するべきではないので、修正が必要。
OpenRTM-aist-Java/jp.go.aist.rtm.RTC/src/jp/go/aist/rtm/RTC/NamingManager.java
Lines 55 to 66 in 4cfcca4
public void registerNameServer(final String method, final String name_server) { rtcout.println(Logbuf.TRACE, "NamingManager.registerNameServer(" + method + ", " + name_server + ")"); NamingBase name = createNamingObj(method, name_server); if (!name) { // <- これが必要 synchronized (m_names) { m_names.add(new NamingService(method, name_server, name)); } } }
Sorry, something went wrong.
katami-win
No branches or pull requests
Describe the bug
corba.nameservers の与えるネームサーバのリストに、unreachable なものがあると、reachable なネームサーバに対しても名前が登録されない。
Environment
The text was updated successfully, but these errors were encountered: