My service_description elements have commas. I'm seeing parsing errors if the matching dependent_service_description elements have commas.

This:

define service {
    service_descrption a,b,c,
}
define servicedependency {
    dependent_service_description a,b,c
}


is being parsed as

define service {
    service_descrption a,b,c,
}
define servicedependency {
    dependent_service_description a
}


and is failing because there is no match.

Is it a bug in parsing for dependent_service_description, or is it intentional that commas aren't allowed for that element?


-Chris

Reply via email to