You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2023/01/02 16:13:57 UTC

[streampipes] branch STREAMPIPES-877-projects created (now 2752560af)

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a change to branch STREAMPIPES-877-projects
in repository https://gitbox.apache.org/repos/asf/streampipes.git


      at 2752560af [hotfix] Fix build error for platform-services

This branch includes the following new commits:

     new 2752560af [hotfix] Fix build error for platform-services

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[streampipes] 01/01: [hotfix] Fix build error for platform-services

Posted by ze...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch STREAMPIPES-877-projects
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit 2752560af6e34131e66197445327a5767ea1b5ce
Author: Philipp Zehnder <te...@users.noreply.github.com>
AuthorDate: Mon Jan 2 17:13:29 2023 +0100

    [hotfix] Fix build error for platform-services
---
 .../platform-services/src/lib/apis/datalake-rest.service.ts            | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ui/projects/streampipes/platform-services/src/lib/apis/datalake-rest.service.ts b/ui/projects/streampipes/platform-services/src/lib/apis/datalake-rest.service.ts
index 428c543e4..175159372 100644
--- a/ui/projects/streampipes/platform-services/src/lib/apis/datalake-rest.service.ts
+++ b/ui/projects/streampipes/platform-services/src/lib/apis/datalake-rest.service.ts
@@ -85,9 +85,8 @@ export class DatalakeRestService {
         } else {
             const url = this.dataLakeUrl + '/measurements/' + index;
             const headers = ignoreLoadingBar ? { ignoreLoadingBar: '' } : {};
-            // @ts-ignore
             return this.http.get<SpQueryResult>(url, {
-                params: queryParams,
+                params: queryParams as unknown as HttpParams,
                 headers,
             });
         }