Skip to content

Commit

Permalink
Fix for wrong order in ca bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
tlm committed Sep 26, 2018
1 parent bacae87 commit 79b2c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dest/file_dest.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (f *File) Send(res *provider.Response) error {
if err != nil {
return errors.Wrap(err, "writing certificate bundle file")
}
_, err = s.WriteString(res.CABundle + "\n" + res.Certificate)
_, err = s.WriteString(res.Certificate + "\n" + res.CABundle)
if err != nil {
return errors.Wrap(err, "writing certificate bundle file")
}
Expand Down

0 comments on commit 79b2c18

Please sign in to comment.