Skip to content
Snippets Groups Projects
Commit da30a8a6 authored by tpylak's avatar tpylak
Browse files

minor: remove warning

SVN: 20138
parent 46341dfb
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,6 @@ import ch.systemsx.cisd.common.logging.LogCategory; ...@@ -30,7 +30,6 @@ import ch.systemsx.cisd.common.logging.LogCategory;
import ch.systemsx.cisd.common.logging.LogFactory; import ch.systemsx.cisd.common.logging.LogFactory;
import ch.systemsx.cisd.common.process.ProcessExecutionHelper; import ch.systemsx.cisd.common.process.ProcessExecutionHelper;
import ch.systemsx.cisd.common.process.ProcessResult; import ch.systemsx.cisd.common.process.ProcessResult;
import ch.systemsx.cisd.common.process.ProcessExecutionHelper.OutputReadingStrategy;
/** /**
* An <code>IFreeSpaceProvider</code> implementation for computing the free space on a remote * An <code>IFreeSpaceProvider</code> implementation for computing the free space on a remote
...@@ -44,11 +43,11 @@ final class RemoteFreeSpaceProvider implements IFreeSpaceProvider ...@@ -44,11 +43,11 @@ final class RemoteFreeSpaceProvider implements IFreeSpaceProvider
private static final String DF_COMMAND_TEMPLATE = "df -k %s"; private static final String DF_COMMAND_TEMPLATE = "df -k %s";
private static final Logger machineLog = private static final Logger machineLog = LogFactory.getLogger(LogCategory.MACHINE,
LogFactory.getLogger(LogCategory.MACHINE, RemoteFreeSpaceProvider.class); RemoteFreeSpaceProvider.class);
private static final Logger operationLog = private static final Logger operationLog = LogFactory.getLogger(LogCategory.OPERATION,
LogFactory.getLogger(LogCategory.OPERATION, RemoteFreeSpaceProvider.class); RemoteFreeSpaceProvider.class);
private final ISshCommandBuilder sshCommandBuilder; private final ISshCommandBuilder sshCommandBuilder;
...@@ -91,9 +90,11 @@ final class RemoteFreeSpaceProvider implements IFreeSpaceProvider ...@@ -91,9 +90,11 @@ final class RemoteFreeSpaceProvider implements IFreeSpaceProvider
final String dfCommand = String.format(DF_COMMAND_TEMPLATE, path); final String dfCommand = String.format(DF_COMMAND_TEMPLATE, path);
final List<String> command = final List<String> command =
sshCommandBuilder.createSshCommand(dfCommand, file.tryGetHost()); sshCommandBuilder.createSshCommand(dfCommand, file.tryGetHost());
@SuppressWarnings("deprecation")
final ProcessResult processResult = final ProcessResult processResult =
ProcessExecutionHelper.run(command, operationLog, machineLog, ProcessExecutionHelper.run(command, operationLog, machineLog,
millisToWaitForCompletion, OutputReadingStrategy.ALWAYS, false); millisToWaitForCompletion,
ProcessExecutionHelper.OutputReadingStrategy.ALWAYS, false);
processResult.log(); processResult.log();
final List<String> processOutput = processResult.getOutput(); final List<String> processOutput = processResult.getOutput();
final String commandLine = StringUtils.join(processResult.getCommandLine(), SPACE); final String commandLine = StringUtils.join(processResult.getCommandLine(), SPACE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment