From 8806b8cc343da901bdf66718599c11aa0b562dee Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 15 Oct 2017 22:03:40 +0200 Subject: [PATCH] fix syntax error in example config --- etc/example.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/example.conf b/etc/example.conf index 3b799686b..2aaa70e12 100644 --- a/etc/example.conf +++ b/etc/example.conf @@ -230,14 +230,14 @@ nodes = { # If arrays are used, we will generate multiple test cases with all # possible combinations { - "rates": 55.0, # The sending rate in Hz - "values": 5, # The number of values which should be send in each sample - "limit": 100 # The number of samples which should be send during this test case + rates = 55.0, # The sending rate in Hz + values = 5, # The number of values which should be send in each sample + limit = 100 # The number of samples which should be send during this test case }, { - "rates": [ 5, 10, 30 ], # An array of rates in Hz - "values": [ 2, 10, 20 ],# An array of number of values - "duration": 5 # The duration of the test case in seconds (depending on the sending rate) + rates = [ 5, 10, 30 ], # An array of rates in Hz + values = [ 2, 10, 20 ],# An array of number of values + duration = 5 # The duration of the test case in seconds (depending on the sending rate) } ) },