Skip to content

Commit

Permalink
added gt-geojson dependency to core ingest for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mawhitby committed Jan 2, 2018
1 parent 320a989 commit 75f9d96
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void execute(

computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void execute(

computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
5 changes: 5 additions & 0 deletions core/ingest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@
<artifactId>geowave-core-mapreduce</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geojson</artifactId>
<version>18.1</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>${kafka.artifact}</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void execute(

computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void execute(
final OperationParams params ) {
computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void execute(

computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void execute(
throws Exception {
computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void execute(

computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void execute(

computeResults(params);
}

@Override
public boolean runAsync() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class AsyncOperationStatusResource extends
ServerResource
{
private static final Logger LOGGER = LoggerFactory.getLogger(AsyncOperationStatusResource.class);

@Get("json")
public Representation getStatus(
final Representation request ) {
Expand Down Expand Up @@ -51,7 +51,9 @@ public Representation getStatus(
}
}
catch (final Exception e) {
LOGGER.error("Error exception: ", e.getMessage());
LOGGER.error(
"Error exception: ",
e.getMessage());
status.status = RestOperationStatusMessage.StatusType.ERROR;
status.message = "exception occurred";
status.data = e;
Expand Down

0 comments on commit 75f9d96

Please sign in to comment.