Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
scr-1.8.2
-
None
Description
Using shell command line with fix of FELIX-4447,
"scr help" returns :
java.lang.NullPointerException
at org.apache.felix.scr.impl.ScrShellCommand.help(ScrShellCommand.java:116)
at org.apache.felix.scr.impl.ScrShellCommand.execute(ScrShellCommand.java:75)
at org.apache.felix.shell.impl.Activator$ShellServiceImpl.executeCommand(Activator.java:249)
at org.apache.felix.shell.remote.Shell.startFelixShell(Shell.java:162)
at org.apache.felix.shell.remote.Shell.run(Shell.java:86)
at java.lang.Thread.run(Thread.java:722)
The code of "void help()" is not expecting "command" to be null.
Intead of :
if (command.equals(LIST_CMD))
you should write :
if (LIST_CMD.equals(command))
Workaround : type anything after "scr help" (example "scr help zzz").