Skip to content
Snippets Groups Projects
Commit ee6cb3a7 authored by Rucha Deshpande's avatar Rucha Deshpande
Browse files

Remove debug stmts

parent 4ad50766
No related branches found
No related tags found
1 merge request!137Aws xuserid fix
......@@ -154,10 +154,6 @@ public class PubsubEndpoint {
}
private String querySubscriptionAndUpdateCache(String notificationId) throws Exception {
Map<String,String> hmap = headers.getHeaders();
String auth_header = hmap.get("authorization");
System.out.println("Notification token before creating subscription service= "+auth_header);
ISubscriptionService service = subscriptionFactory.create(headers);
List<Subscription> subscriptionList = service.query(notificationId);
......
......@@ -129,7 +129,6 @@ public class ServiceAccountJwtAwsClientImpl implements IServiceAccountJwtClient
headers.put("Content-Type", "application/x-www-form-urlencoded");
IHttpClient httpClient = new HttpClient();
String url = tokenUrl+"?grant_type=client_credentials&client_id="+client_credentials_clientid+"&scope="+awsOauthCustomScope;
System.out.println("Token url="+url);
HttpRequest rq = HttpRequest.post().url(url).headers(headers).build();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment