Skip to content

Commit ad1dce0

Browse files
authored
Merge pull request #314 from amen50/17.0-1.3
fix singleton issue
2 parents 212403c + 2c3f6ef commit ad1dce0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

g2p_payment_g2p_connect/models/payment_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def payments_status_check(self, id_):
268268
}
269269
try:
270270
_logger.info("G2P Connect Disbursement Status Data: %s", status_data)
271-
token = self.create_jwt_token(json.dumps(status_data, separators=(",", ":")))
271+
token = payment_manager.create_jwt_token(json.dumps(status_data, separators=(",", ":")))
272272
headers = {
273273
"Accept": "application/json",
274274
"Content-Type": "application/json",

0 commit comments

Comments
 (0)