util.sasl.oauthbearer: Fix syntax error in b796e08e6376

This commit is contained in:
Matthew Wild 2023-03-15 12:02:23 +00:00
parent 9dedc78f3c
commit 944c25f352

View file

@ -75,7 +75,7 @@ local function oauthbearer(self, message)
self.resource = token_info.resource;
self.role = token_info.role;
self.token_info token_info;
self.token_info = token_info;
return "success";
end