Skip to content
Open
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 @@ -131,8 +131,12 @@ protected void afterStart() {
}


protected void closeStore() {

}

@Override
protected void beforeStop() {
protected void doStop() throws SensorHubException {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't you have to call commit in the close method of the stores?

// Try to close every store separately
try {
obsStore.close();
Expand Down Expand Up @@ -172,14 +176,6 @@ protected void beforeStop() {
}
}

protected void closeStore() {

}

@Override
protected void doStop() throws SensorHubException {
}


@Override
public Integer getDatabaseNum() {
Expand Down
Loading