You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Carsten Ziegeler (JIRA)" <ji...@apache.org> on 2016/05/31 07:18:12 UTC

[jira] [Assigned] (FELIX-4941) Web console doesn't work with fileinstall

     [ https://issues.apache.org/jira/browse/FELIX-4941?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Carsten Ziegeler reassigned FELIX-4941:
---------------------------------------

    Assignee: Carsten Ziegeler

> Web console doesn't work with fileinstall
> -----------------------------------------
>
>                 Key: FELIX-4941
>                 URL: https://issues.apache.org/jira/browse/FELIX-4941
>             Project: Felix
>          Issue Type: Bug
>          Components: Web Console
>    Affects Versions: webconsole-4.2.8, webconsole-4.2.14
>            Reporter: Cliff Collins
>            Assignee: Carsten Ziegeler
>              Labels: easyfix
>             Fix For: webconsole-4.2.16
>
>
> Web console when updating items that have metadata will only update the properties defines in metadata.
> This means, the fileinstall file location is removed from the property update. This makes so fileinstall will no longer update the configuration
> file with the change. A simple workaround is to always post back the fileinstall property if present. 
> In the ConfigAdminSupport.java file added these lines. In the method applyConfiguration at line 312, insert these lines:
>             // Add Fileinstall key or the property will not get written back to the configuration
>             if (props.get("felix.fileinstall.filename") != null)
>             {
>                 updateProps.put("felix.fileinstall.filename", props.get("felix.fileinstall.filename"));
>             }
> If you return the fileinstall filename then fileinstall will save any property changes.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)