See discussion here. The connectors config implements the config like shown here, but it expects only the content inside the connectors key, not the entire connectors: [ ... ]. This is not intuitive and has caught a few users.
We should either improve the documentation or add validation around this. As the likely user mistake is that someone provides connectors: [ ... ] instead of just [ ... ], we could easily check for a connectors key with nested array and unpack it (and similarly make sure the array contains what looks like valid connectors (maybe checking for a type and id?).
See discussion here. The
connectorsconfig implements the config like shown here, but it expects only the content inside theconnectorskey, not the entireconnectors: [ ... ]. This is not intuitive and has caught a few users.We should either improve the documentation or add validation around this. As the likely user mistake is that someone provides
connectors: [ ... ]instead of just[ ... ], we could easily check for a connectors key with nested array and unpack it (and similarly make sure the array contains what looks like valid connectors (maybe checking for atypeandid?).