Skip to content
Draft
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
2 changes: 1 addition & 1 deletion sensors/sensorhub-driver-datafeed/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = 'Data Feed'
ext.details = "A driver for capturing various data feeds"

version = '1.0.1'
version = '1.0.2'
if (project.hasProperty("snapshot") && project.property("snapshot") == "true") {
version = "${version}-SNAPSHOT"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class DataFeedConfig extends SensorConfig {
*/
@DisplayInfo.Required
@DisplayInfo(desc = "Serial number or unique identifier")
public String serialNumber = "001";
public String serialNumber;

@DisplayInfo.Required
@DisplayInfo(label = "Communication Type", desc = "Communication provider to use (stream or message queue)")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* and performing initialization and shutdown for the driver and its outputs.
*/
public class DataFeedDriver extends AbstractSensorModule<DataFeedConfig> {
static final String UID_PREFIX = "urn:osh:driver:datafeed:";
static final String UID_PREFIX = "urn:osh:sensor:georobotix:";
static final String XML_PREFIX = "DATAFEED_DRIVER_";

private static final Logger logger = LoggerFactory.getLogger(DataFeedDriver.class);
Expand Down
Loading