Skip to content
Merged
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