actually add config field
This commit is contained in:
parent
74ecad349b
commit
a56d90d501
|
|
@ -83,6 +83,7 @@ func main() {
|
|||
wfe.RA = &rac
|
||||
wfe.SA = &sac
|
||||
wfe.Stats = stats
|
||||
wfe.SubscriberAgreementURL = c.SubscriberAgreementURL
|
||||
|
||||
wfe.IssuerCert, err = cmd.LoadCert(c.CA.IssuerCert)
|
||||
cmd.FailOnError(err, fmt.Sprintf("Couldn't read issuer cert [%s]", c.CA.IssuerCert))
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ func main() {
|
|||
wfe.RA = &ra
|
||||
wfe.SA = sa
|
||||
wfe.Stats = stats
|
||||
wfe.SubscriberAgreementURL = c.SubscriberAgreementURL
|
||||
|
||||
wfe.IssuerCert, err = cmd.LoadCert(c.CA.IssuerCert)
|
||||
cmd.FailOnError(err, fmt.Sprintf("Couldn't read issuer cert [%s]", c.CA.IssuerCert))
|
||||
|
|
|
|||
|
|
@ -86,6 +86,8 @@ type Config struct {
|
|||
Username string
|
||||
Password string
|
||||
}
|
||||
|
||||
SubscriberAgreementURL string
|
||||
}
|
||||
|
||||
// QueuePair describes a client-server pair of queue names
|
||||
|
|
|
|||
Loading…
Reference in New Issue