forked from mystiq/dex
Merge pull request #686 from cjyar/master
Require the connector to have an ID.
This commit is contained in:
commit
2ec3349f5d
1 changed files with 3 additions and 0 deletions
|
@ -113,6 +113,9 @@ func serve(cmd *cobra.Command, args []string) error {
|
||||||
|
|
||||||
connectors := make([]server.Connector, len(c.Connectors))
|
connectors := make([]server.Connector, len(c.Connectors))
|
||||||
for i, conn := range c.Connectors {
|
for i, conn := range c.Connectors {
|
||||||
|
if conn.ID == "" {
|
||||||
|
return fmt.Errorf("no ID field for connector %d", i)
|
||||||
|
}
|
||||||
if conn.Config == nil {
|
if conn.Config == nil {
|
||||||
return fmt.Errorf("no config field for connector %q", conn.ID)
|
return fmt.Errorf("no config field for connector %q", conn.ID)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue