From 353b5d4317384c5804b99c89bb7d023de525f6a1 Mon Sep 17 00:00:00 2001
From: Abhishek Patil <abpatil@microsoft.com>
Date: Tue, 31 Aug 2021 19:54:39 +0530
Subject: [PATCH] Bug fix

---
 .../osdu/indexer/azure/util/ServiceAccountJwtClientImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/util/ServiceAccountJwtClientImpl.java b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/util/ServiceAccountJwtClientImpl.java
index 5512f5f59..12ff2ac79 100644
--- a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/util/ServiceAccountJwtClientImpl.java
+++ b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/util/ServiceAccountJwtClientImpl.java
@@ -55,6 +55,6 @@ public class ServiceAccountJwtClientImpl implements IServiceAccountJwtClient {
 
         this.dpsHeaders.put(DpsHeaders.USER_EMAIL, tenant.getServiceAccount());
 
-        return "Bearer " + this.tokenService.getAuthorizationToken();
+        return this.tokenService.getAuthorizationToken();
     }
 }
-- 
GitLab