mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Avoid logging password when adding srx device
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> (cherry picked from commit a1cc43fee2876463c2ca65e9e9d7e81be48a136e) Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
765622658a
commit
2f1863cae0
@ -61,6 +61,7 @@ import com.cloud.cluster.ManagementServerHost;
|
|||||||
import com.cloud.utils.DateUtil;
|
import com.cloud.utils.DateUtil;
|
||||||
import com.cloud.utils.Pair;
|
import com.cloud.utils.Pair;
|
||||||
import com.cloud.utils.Predicate;
|
import com.cloud.utils.Predicate;
|
||||||
|
import com.cloud.utils.StringUtils;
|
||||||
import com.cloud.utils.component.ComponentLifecycle;
|
import com.cloud.utils.component.ComponentLifecycle;
|
||||||
import com.cloud.utils.component.ManagerBase;
|
import com.cloud.utils.component.ManagerBase;
|
||||||
import com.cloud.utils.concurrency.NamedThreadFactory;
|
import com.cloud.utils.concurrency.NamedThreadFactory;
|
||||||
@ -179,7 +180,7 @@ public class AsyncJobManagerImpl extends ManagerBase implements AsyncJobManager,
|
|||||||
publishOnEventBus(job, "submit");
|
publishOnEventBus(job, "submit");
|
||||||
scheduleExecution(job, scheduleJobExecutionInContext);
|
scheduleExecution(job, scheduleJobExecutionInContext);
|
||||||
if (s_logger.isDebugEnabled()) {
|
if (s_logger.isDebugEnabled()) {
|
||||||
s_logger.debug("submit async job-" + job.getId() + ", details: " + job.toString());
|
s_logger.debug("submit async job-" + job.getId() + ", details: " + StringUtils.cleanString(job.toString()));
|
||||||
}
|
}
|
||||||
return job.getId();
|
return job.getId();
|
||||||
}
|
}
|
||||||
@ -518,7 +519,7 @@ public class AsyncJobManagerImpl extends ManagerBase implements AsyncJobManager,
|
|||||||
|
|
||||||
// execute the job
|
// execute the job
|
||||||
if (s_logger.isDebugEnabled()) {
|
if (s_logger.isDebugEnabled()) {
|
||||||
s_logger.debug("Executing " + job);
|
s_logger.debug("Executing " + StringUtils.cleanString(job.toString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((getAndResetPendingSignals(job) & AsyncJob.Constants.SIGNAL_MASK_WAKEUP) != 0) {
|
if ((getAndResetPendingSignals(job) & AsyncJob.Constants.SIGNAL_MASK_WAKEUP) != 0) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user