mirror of https://github.com/apache/cloudstack.git
plugins: Fix getPropertiesFiles() for pluggable service plugins, CiscoNexusVSMEElement
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
0b0752f047
commit
2eee2cd999
|
|
@ -139,6 +139,6 @@ public class ApiDiscoveryServiceImpl extends AdapterBase implements ApiDiscovery
|
|||
|
||||
@Override
|
||||
public String[] getPropertiesFiles() {
|
||||
return new String[]{"api-discovery_commands.properties"};
|
||||
return new String[] { "api-discovery_commands.properties" };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ public class CiscoNexusVSMElement extends CiscoNexusVSMDeviceManagerImpl impleme
|
|||
}
|
||||
|
||||
@Override
|
||||
public String getPropertiesFile() {
|
||||
return "cisconexusvsm_commands.properties";
|
||||
public String[] getPropertiesFiles() {
|
||||
return new String[] { "cisconexusvsm_commands.properties" };
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue