summaryrefslogtreecommitdiffstats
path: root/configuration
diff options
context:
space:
mode:
authorPradeepKiruvale <PRADEEPKIRUVALE@gmail.com>2021-08-06 14:30:42 +0530
committerGitHub <noreply@github.com>2021-08-06 14:30:42 +0530
commitfaf65ded97448bd0c2f6aa102ffd9d43e6e4a979 (patch)
tree68b575a242b981892fdbe644e06af075924d66d6 /configuration
parentfb05964319d28bb2d80b02ea86fa59e097ddc8fa (diff)
fix broken mqtt library test (#357)
* fix broken mqtt library test * move config files into test directory * Create only one istance of broker for all tests * remove dependancy on the config file * cargo fmt * address review comments * remove unused dev-dependencies Co-authored-by: Pradeep Kumar K J <pradeepkumar.kj@sofwareag.com>
Diffstat (limited to 'configuration')
-rw-r--r--configuration/rumqttd/rumqttd_5883.conf27
-rw-r--r--configuration/rumqttd/rumqttd_5884.conf27
2 files changed, 0 insertions, 54 deletions
diff --git a/configuration/rumqttd/rumqttd_5883.conf b/configuration/rumqttd/rumqttd_5883.conf
deleted file mode 100644
index be14abf9..00000000
--- a/configuration/rumqttd/rumqttd_5883.conf
+++ /dev/null
@@ -1,27 +0,0 @@
-# Broker id. Used to identify local node of the replication mesh
-id = 0
-
-# A commitlog read will pull full segment. Make sure that a segment isn't
-# too big as async tcp writes readiness of one connection might affect tail
-# latencies of other connection. Not a problem with preempting runtimes
-[router]
-id = 0
-dir = "/tmp/rumqttd"
-max_segment_size = 10240
-max_segment_count = 10
-max_connections = 10
-
-# Configuration of server and connections that it accepts
-[servers.1]
-listen = "0.0.0.0:5883"
-next_connection_delay_ms = 1
- [servers.1.connections]
- connection_timeout_ms = 100
- max_client_id_len = 256
- throttle_delay_ms = 0
- max_payload_size = 268435455
- max_inflight_count = 200
- max_inflight_size = 1024
-
-[console]
-listen = "0.0.0.0:3030" \ No newline at end of file
diff --git a/configuration/rumqttd/rumqttd_5884.conf b/configuration/rumqttd/rumqttd_5884.conf
deleted file mode 100644
index 95f8e6ca..00000000
--- a/configuration/rumqttd/rumqttd_5884.conf
+++ /dev/null
@@ -1,27 +0,0 @@
-# Broker id. Used to identify local node of the replication mesh
-id = 0
-
-# A commitlog read will pull full segment. Make sure that a segment isn't
-# too big as async tcp writes readiness of one connection might affect tail
-# latencies of other connection. Not a problem with preempting runtimes
-[router]
-id = 0
-dir = "/tmp/rumqttd"
-max_segment_size = 10240
-max_segment_count = 10
-max_connections = 10
-
-# Configuration of server and connections that it accepts
-[servers.1]
-listen = "0.0.0.0:5884"
-next_connection_delay_ms = 1
- [servers.1.connections]
- connection_timeout_ms = 100
- max_client_id_len = 256
- throttle_delay_ms = 0
- max_payload_size = 268435455
- max_inflight_count = 200
- max_inflight_size = 1024
-
-[console]
-listen = "0.0.0.0:3030" \ No newline at end of file