Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ public AlertBuilder makeAlert(@Nullable Throwable t, String message, Object... o
StringUtils.nonStrictFormat(message, objects)
);

error(errorMessage);
ISE e = new ISE(errorMessage);
if (t != null) {
e.addSuppressed(t);
}

error(e, errorMessage);

throw e;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public DateTime getQueueInsertionTime()
return queueInsertionTime;
}

@JsonProperty
public abstract TaskLocation getLocation();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ public class HttpRemoteTaskRunnerConfig extends RemoteTaskRunnerConfig
@JsonProperty
private int workerSyncNumThreads = 5;

@JsonProperty
private Period waitForWorkerSlot = new Period("PT1M");

@JsonProperty
private int shutdownRequestMaxRetries = 3;

Expand All @@ -56,11 +53,6 @@ public int getWorkerSyncNumThreads()
return workerSyncNumThreads;
}

public Period getWaitForWorkerSlot()
{
return waitForWorkerSlot;
}

public int getShutdownRequestMaxRetries()
{
return shutdownRequestMaxRetries;
Expand Down
Loading