From e95e384527efe76c84eb5c3b06d07a0e816e881f Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:39:14 -0500 Subject: [PATCH 1/6] Delete unused `CDASH_SELENIUM_HUB` setting --- app/cdash/config/config.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/cdash/config/config.php b/app/cdash/config/config.php index 0ba6baa5bb..5cbdda4f33 100644 --- a/app/cdash/config/config.php +++ b/app/cdash/config/config.php @@ -28,9 +28,6 @@ $CDASH_ROOT_DIR = str_replace('\\', '/', dirname(dirname(__FILE__))); set_include_path(get_include_path() . PATH_SEPARATOR . $CDASH_ROOT_DIR); -// host for Selenium testing -$CDASH_SELENIUM_HUB='localhost'; - // API Key for SendGrid $CDASH_SENDGRID_API_KEY = null; // Using HTTPS protocol to access CDash From dbba2e9f710f5517315978084fc21afce88ba56d Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:39:38 -0500 Subject: [PATCH 2/6] Delete unused `CDASH_SENDGRID_API_KEY` setting --- app/cdash/config/config.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/cdash/config/config.php b/app/cdash/config/config.php index 5cbdda4f33..f589210d9e 100644 --- a/app/cdash/config/config.php +++ b/app/cdash/config/config.php @@ -28,8 +28,6 @@ $CDASH_ROOT_DIR = str_replace('\\', '/', dirname(dirname(__FILE__))); set_include_path(get_include_path() . PATH_SEPARATOR . $CDASH_ROOT_DIR); -// API Key for SendGrid -$CDASH_SENDGRID_API_KEY = null; // Using HTTPS protocol to access CDash $CDASH_USE_HTTPS = '0'; // Name of the server running CDash. From b73c4f8f68007b68829ee439fb973b07103fb596 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:42:10 -0500 Subject: [PATCH 3/6] Delete unused `CDASH_SUBMISSION_PROCESSING_TIME_LIMIT` setting --- app/cdash/config/config.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/cdash/config/config.php b/app/cdash/config/config.php index f589210d9e..8c963c07f7 100644 --- a/app/cdash/config/config.php +++ b/app/cdash/config/config.php @@ -52,8 +52,6 @@ $CDASH_DEFAULT_GIT_DIRECTORY = 'git'; // Define the p4 command $CDASH_P4_COMMAND = 'p4'; -// Number of seconds to allow processing a single submission before resetting -$CDASH_SUBMISSION_PROCESSING_TIME_LIMIT = '450'; // Number of times to attempt processing a single submission before giving up $CDASH_SUBMISSION_PROCESSING_MAX_ATTEMPTS = '5'; From 43540859dc2fc0ec2c3132d0303b12f8efe36c32 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:42:48 -0500 Subject: [PATCH 4/6] Delete unused `CDASH_SUBMISSION_PROCESSING_MAX_ATTEMPTS` setting --- app/cdash/config/config.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/cdash/config/config.php b/app/cdash/config/config.php index 8c963c07f7..a63e5c7fe3 100644 --- a/app/cdash/config/config.php +++ b/app/cdash/config/config.php @@ -52,8 +52,6 @@ $CDASH_DEFAULT_GIT_DIRECTORY = 'git'; // Define the p4 command $CDASH_P4_COMMAND = 'p4'; -// Number of times to attempt processing a single submission before giving up -$CDASH_SUBMISSION_PROCESSING_MAX_ATTEMPTS = '5'; // Settings to enable external authentication using OAuth 2.0. // Currently recognized providers are GitHub, GitLab, and Google. From f237143d54bdf8225018c5a3bb4ef6bd77591878 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:43:28 -0500 Subject: [PATCH 5/6] Delete unused `CDASH_USE_ELASTICACHE_AUTO_DISCOVERY` setting --- app/cdash/config/config.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/cdash/config/config.php b/app/cdash/config/config.php index a63e5c7fe3..ea7b99f88b 100644 --- a/app/cdash/config/config.php +++ b/app/cdash/config/config.php @@ -66,9 +66,6 @@ // 'domain' => 'https://my.gitlab.example' $OAUTH2_PROVIDERS = []; -// Whether to use the AWS ElastiCache Auto Discovery feature -$CDASH_USE_ELASTICACHE_AUTO_DISCOVERY = false; - // Set to true if this copy of CDash is serving as a remote submission // processor hosted somewhere other than the web server. $CDASH_REMOTE_PROCESSOR = false; From 28505fd1107665951380ecd35d52f0f3a9d83423 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:45:51 -0500 Subject: [PATCH 6/6] Delete unused `CDASH_REMOTE_PROCESSOR` setting --- app/cdash/config/config.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/cdash/config/config.php b/app/cdash/config/config.php index ea7b99f88b..efdd7e4f55 100644 --- a/app/cdash/config/config.php +++ b/app/cdash/config/config.php @@ -66,10 +66,6 @@ // 'domain' => 'https://my.gitlab.example' $OAUTH2_PROVIDERS = []; -// Set to true if this copy of CDash is serving as a remote submission -// processor hosted somewhere other than the web server. -$CDASH_REMOTE_PROCESSOR = false; - // Location of the private key that allows this CDash installation to act // as a GitHub App. $CDASH_GITHUB_PRIVATE_KEY = dirname(__FILE__) . '/github.pem';