Repository: airavata-php-gateway Updated Branches: refs/heads/develop fe8cd3e20 -> 583a63fd8
default values should only be read from the queue Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/583a63fd Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/583a63fd Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/583a63fd Branch: refs/heads/develop Commit: 583a63fd8d98c2f5067beac284160ec62ad4309b Parents: fe8cd3e Author: scnakandala <[email protected]> Authored: Mon May 22 14:44:14 2017 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 22 14:44:14 2017 -0400 ---------------------------------------------------------------------- app/controllers/ExperimentController.php | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/583a63fd/app/controllers/ExperimentController.php ---------------------------------------------------------------------- diff --git a/app/controllers/ExperimentController.php b/app/controllers/ExperimentController.php index 6d7a874..0ffaf80 100755 --- a/app/controllers/ExperimentController.php +++ b/app/controllers/ExperimentController.php @@ -461,6 +461,7 @@ class ExperimentController extends BaseController $nodeCount = Config::get('pga_config.airavata')["node-count"]; $cpuCount = Config::get('pga_config.airavata')["total-cpu-count"]; $wallTimeLimit = Config::get('pga_config.airavata')["wall-time-limit"]; + $cpusPerNode = 0; $queueName = Config::get('pga_config.airavata')["queue-name"]; // $crResource = CRUtilities::get_compute_resource($computeResourceId);
