Skip to content

Commit

Permalink
Merge pull request #146 from thanosp/file-checks-labels
Browse files Browse the repository at this point in the history
Removed extra escaping where the param is defined already
  • Loading branch information
lsmith77 authored Nov 24, 2017
2 parents c09052e + d01f68a commit 9f345e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Resources/config/checks/file_ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<service id="liip_monitor.check.file_ini" public="false" class="%liip_monitor.check.file_ini.class%">
<argument>%%liip_monitor.check.file_ini%%</argument>
<call method="setLabel">
<argument>%%liip_monitor.check.file_ini.label%%</argument>
<argument>%liip_monitor.check.file_ini.label%</argument>
</call>
<tag name="liip_monitor.check" alias="file_ini" />
</service>
Expand Down
2 changes: 1 addition & 1 deletion Resources/config/checks/file_json.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<service id="liip_monitor.check.file_json" public="false" class="%liip_monitor.check.file_json.class%">
<argument>%%liip_monitor.check.file_json%%</argument>
<call method="setLabel">
<argument>%%liip_monitor.check.file_json.label%%</argument>
<argument>%liip_monitor.check.file_json.label%</argument>
</call>
<tag name="liip_monitor.check" alias="file_json" />
</service>
Expand Down
2 changes: 1 addition & 1 deletion Resources/config/checks/file_xml.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<service id="liip_monitor.check.file_xml" public="false" class="%liip_monitor.check.file_xml.class%">
<argument>%%liip_monitor.check.file_xml%%</argument>
<call method="setLabel">
<argument>%%liip_monitor.check.file_xml.label%%</argument>
<argument>%liip_monitor.check.file_xml.label%</argument>
</call>
<tag name="liip_monitor.check" alias="file_xml" />
</service>
Expand Down
2 changes: 1 addition & 1 deletion Resources/config/checks/file_yaml.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<service id="liip_monitor.check.file_yaml" public="false" class="%liip_monitor.check.file_yaml.class%">
<argument>%%liip_monitor.check.file_yaml%%</argument>
<call method="setLabel">
<argument>%%liip_monitor.check.file_yaml.label%%</argument>
<argument>%liip_monitor.check.file_yaml.label%</argument>
</call>
<tag name="liip_monitor.check" alias="file_yaml" />
</service>
Expand Down

0 comments on commit 9f345e2

Please sign in to comment.