Skip to content

Commit

Permalink
Use current user token for guess schema request
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikriemer committed Sep 13, 2023
1 parent d3883db commit cbc9cd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public GuessSchema guessSchema(AdapterDescription adapterDescription)
var description = objectMapper.writeValueAsString(adapterDescription);
logger.info("Guess schema at: " + workerUrl);
Response requestResponse = ExtensionServiceExecutions
.extServicePostRequest(workerUrl, null, description)
.extServicePostRequest(workerUrl, description)
.execute();

var httpResponse = requestResponse.returnResponse();
Expand Down

0 comments on commit cbc9cd6

Please sign in to comment.