Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Evolveum/midpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Jun 15, 2016
2 parents 8fd0801 + 6312242 commit 4cd17c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -106,7 +106,7 @@ public TaskRunResult run(Task task) {
}

if (LOGGER.isTraceEnabled()) {
LOGGER.trace("Context to be executed = " + context.debugDump());
LOGGER.trace("Context to be executed = {}", context.debugDump());
}

try {
Expand All @@ -124,6 +124,9 @@ public TaskRunResult run(Task task) {
}
projectionIterator.remove();
}
if (task.getChannel() == null) {
task.setChannel(context.getChannel());
}
clockwork.run(context, task, result);

task.setModelOperationContext(context.toLensContextType());
Expand Down
Expand Up @@ -18,7 +18,7 @@ public class RepositoryDataItem extends DataItem {

private static final String COLOR_USER = "darkred";
private static final String COLOR_ROLE = "darkgreen";
private static final String COLOR_ORG = "darkgreen";
private static final String COLOR_ORG = "darkorange";
private static final String COLOR_DEFAULT = "black";
private static final String COLOR_FILL = "grey92";

Expand Down

0 comments on commit 4cd17c2

Please sign in to comment.