Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update all TOML to use quote and not single-quote #46

Merged
merged 1 commit into from
Aug 11, 2021
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
9 changes: 9 additions & 0 deletions GOVERNANCE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Governance

Project governance as well as policies, procedures and instructions for contributing to EdgeX Foundry can be found on our Wiki site at the following locations:

- [EdgeX Technical Steering Committee](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=329436)
- [Contributor's Guide](https://wiki.edgexfoundry.org/display/FA/Contributor%27s+Guide)
- [Contributor's Process](https://wiki.edgexfoundry.org/display/FA/Contributor%27s+Process)
- [Technical Work](https://wiki.edgexfoundry.org/display/FA/Technical+Work+in+the+EdgeX+Foundry+Project)
- [Contributors, Committers & Maintainers](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=21823860)
8 changes: 8 additions & 0 deletions OWNERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Repository Owners

This repository is managed by the EdgeX Device Services Working Group. As such, the **Device Services Working Group** chairman is considered the "owner" of the repository and approves all committers of the repository.

See the [project Wiki TSC page](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=329436#TechnicalSteeringCommittee(TSC)-WorkingGroups) for information on the current EdgeX TSC and who occupies the role of Device Service Working Group chair.

For a complete list of current committers see: https://github.com/orgs/edgexfoundry/teams/device-rfid-llrp-go-committers/members.

40 changes: 20 additions & 20 deletions cmd/res/configuration.toml
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
[Writable]
LogLevel = 'INFO'
LogLevel = "INFO"

[Service]
Host = 'localhost'
Host = "localhost"
Port = 49989
Protocol = 'http'
StartupMsg = 'device llrp started'
Protocol = "http"
StartupMsg = "device llrp started"
Timeout = 5000
ConnectRetries = 10
CheckInterval = '10s'
CheckInterval = "10s"
Labels = []
EnableAsyncReadings = true
AsyncBufferSize = 16

[Registry]
Host = 'localhost'
Host = "localhost"
Port = 8500
Type = 'consul'
Type = "consul"

[Logging]
EnableRemote = false
File = ''
File = ""

[Clients]
[Clients.Data]
Protocol = 'http'
Host = 'localhost'
Protocol = "http"
Host = "localhost"
Port = 48080

[Clients.Metadata]
Protocol = 'http'
Host = 'localhost'
Protocol = "http"
Host = "localhost"
Port = 48081

[Clients.Logging]
Protocol = 'http'
Host = 'localhost'
Protocol = "http"
Host = "localhost"
Port = 48061

[Device]
DataTransform = false
InitCmd = ''
InitCmdArgs = ''
InitCmd = ""
InitCmdArgs = ""
MaxCmdOps = 128
MaxCmdValueLen = 256
RemoveCmd = ''
RemoveCmdArgs = ''
ProfilesDir = './res'
RemoveCmd = ""
RemoveCmdArgs = ""
ProfilesDir = "./res"
UpdateLastConnected = false
[Device.Discovery]
Enabled = true
Interval = '1h'
Interval = "1h"

[Driver]
# NOTE: Items in the Driver section MUST be in quotes, even for numbers due to EdgeX limitation
Expand Down