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 20:30:25 UTC

[streampipes] 02/02: [#877] Fix params

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

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit c063400cc74ba39efb55f9e4f49bf808690b04b4
Author: Aamir Shaikh <aa...@outlook.com>
AuthorDate: Mon Jan 2 23:03:01 2023 +0530

    [#877] Fix params
---
 .../streampipes/platform-services/src/lib/apis/datalake-rest.service.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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..e27a8d847 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
@@ -87,7 +87,7 @@ export class DatalakeRestService {
             const headers = ignoreLoadingBar ? { ignoreLoadingBar: '' } : {};
             // @ts-ignore
             return this.http.get<SpQueryResult>(url, {
-                params: queryParams,
+                params: queryParams as unknown as HttpParams,
                 headers,
             });
         }