@Override
public Object execute() throws Exception {
SystemCollectionService systemCollectionService = new SystemCollectionServiceImpl(connectionId);
//The collection name is obtained by removing the DB name from the namespace.
String collectionName = nameSpace.replace(dbName + ".", "");
return systemCollectionService.removeIndex(dbName, collectionName, indexName);
}
});
return response;
}