You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like a copy/paste issue ("p" instead of "w".) The fix is in line 73 of PIXEL/pixel-web-enabled/src/main/java/org/onebeartoe/web/enabled/pixel/CliPixel.java
Looks like a copy/paste issue ("p" instead of "w".) The fix is in line 73 of
PIXEL/pixel-web-enabled/src/main/java/org/onebeartoe/web/enabled/pixel/CliPixel.java
Incorrect:
WebPortOption = Integer.parseInt(cmd.getOptionValue("p"));
Fix:
WebPortOption = Integer.parseInt(cmd.getOptionValue("w"));
The text was updated successfully, but these errors were encountered: