Github user kchilton2 commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/172#discussion_r160229044
--- Diff:
extras/shell/src/main/java/org/apache/rya/shell/RyaAdminCommands.java ---
@@ -141,7 +174,8 @@ public boolean arePCJCommandsAvailable() {
// The PCJ commands are only available if the Shell is connected
to an instance of Rya
// that is new enough to use the RyaDetailsRepository and is
configured to maintain PCJs.
final ShellState shellState = state.getShellState();
- if(shellState.getConnectionState() ==
ConnectionState.CONNECTED_TO_INSTANCE) {
+ if(shellState.getConnectionState() ==
ConnectionState.CONNECTED_TO_INSTANCE &&
+ shellState.getStorageType().get() == StorageType.ACCUMULO)
{
--- End diff --
Check RyaAdminCommandsTest in the rya.shell project.
---