Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Feature/remove key value options from request #51

Merged
merged 2 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.app.5gla</groupId>
<artifactId>fiware-integration-layer</artifactId>
<version>12.1.0</version>
<version>12.2.0</version>

<name>5gLa FIWARE integration layer</name>
<url>https://github.com/vitrum-connect/5gla-fiware-integration-layer</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void persist(DeviceMeasurement entity) {
.build();
var httpClient = HttpClient.newHttpClient();
var httpRequest = HttpRequest.newBuilder()
.uri(URI.create(contextBrokerUrlForCommands() + "/op/update" + "?options=keyValues"))
.uri(URI.create(contextBrokerUrlForCommands() + "/op/update"))
.header("Content-Type", "application/json")
.header(CustomHeader.FIWARE_SERVICE, getTenant())
.POST(HttpRequest.BodyPublishers.ofString(updateOrCreateEntityRequest.asJson())).build();
Expand Down
Loading