Add PNI to GroupCredentials responses that contain AuthCredentialWithPni instances

This commit is contained in:
Jon Chambers
2022-07-25 12:36:09 -04:00
committed by Jon Chambers
parent 7d4a8d03a4
commit 6b6f9b2405
3 changed files with 23 additions and 52 deletions

View File

@@ -114,7 +114,7 @@ public class CertificateController {
i));
}
return new GroupCredentials(credentials);
return new GroupCredentials(credentials, null);
}
@Timed
@@ -153,6 +153,6 @@ public class CertificateController {
redemption = redemption.plus(Duration.ofDays(1));
}
return new GroupCredentials(credentials);
return new GroupCredentials(credentials, pni);
}
}