1
0
mirror of https://github.com/strongdm/comply synced 2025-12-06 06:14:09 +00:00

Specifying Jira Issuetype in config.yaml (#53)

* Jira integration documentation improved. Added ability to specify what type of issue to create in Jira

* Apparently, Go doesn't like http/https in front of package name in
This commit is contained in:
Alan Cox
2018-08-29 18:17:00 -04:00
committed by Justin McCarthy
parent 8f3d668789
commit bcc9b06ac4
4 changed files with 37 additions and 4 deletions

View File

@@ -87,7 +87,10 @@ func GetPlugin(ts TicketSystem) TicketPlugin {
}
cfgStringed[kS] = v
}
tp.Configure(cfgStringed)
err := tp.Configure(cfgStringed)
if( err != nil) {
panic(fmt.Sprintf("Configuration error `%s` in project YAML", err))
}
}
})
}