Uploaded image for project: 'Felix'
  1. Felix
  2. FELIX-4469

shell command "scr help" does not work without parameter

    XMLWordPrintableJSON

Details

    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").

      Attachments

        Activity

          People

            djencks David Jencks
            VincentG Vincent G.
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: