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

riemer pushed a commit to branch 3256-no-bad-file-extension-error-at-upload
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to 
refs/heads/3256-no-bad-file-extension-error-at-upload by this push:
     new f5959e3192 Fix typo
f5959e3192 is described below

commit f5959e3192557020388abf19cf2a35800e8e6e05
Author: Dominik Riemer <[email protected]>
AuthorDate: Mon Sep 30 20:51:09 2024 +0200

    Fix typo
---
 .../main/java/org/apache/streampipes/rest/impl/PipelineElementFile.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/PipelineElementFile.java
 
b/streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/PipelineElementFile.java
index f8a227b3f2..02d39b49b4 100644
--- 
a/streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/PipelineElementFile.java
+++ 
b/streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/PipelineElementFile.java
@@ -77,7 +77,7 @@ public class PipelineElementFile extends 
AbstractAuthGuardedRestResource {
     } catch (IllegalArgumentException e) {
       return badRequest(Notifications.error(
           String.format(
-              "This file type is not supported. Allowed filetypes are %s.",
+              "This file type is not supported. Allowed file types are %s.",
               Filetypes.getAllFileExtensions().toString()
           )
       ));

Reply via email to