This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # coding=utf-8 | |
| # License: Public domain (CC0) | |
| # Isaac Turner 2016/12/05 | |
| from __future__ import print_function | |
| import difflib | |
| import re |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.slf4j.LoggerFactory | |
| import org.springframework.jdbc.core.JdbcTemplate | |
| import org.springframework.stereotype.Component | |
| import org.springframework.transaction.annotation.Propagation | |
| import org.springframework.transaction.annotation.Transactional | |
| import java.time.Duration | |
| interface LockManager { | |
| fun <T> tryWithLock(key: Long, timeout: Duration, function: () -> T): T | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var auth_username = pm.variables.get("auth_username") | |
| var auth_password = pm.variables.get("auth_password") | |
| var client_id = pm.variables.get("client_id") | |
| var client_secret = pm.variables.get("client_secret") | |
| var authBody = `username=${auth_username}&password=${auth_password}&grant_type=password&client_id=${client_id}&client_secret=${client_secret}`; | |
| console.log(authBody) | |
| var force_refresh = true | |
| var token_expires_in = pm.environment.get("token_expires_in"); | |
| var token_created = pm.environment.get("token_created"); |