Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete unused config settings #1799

Merged
merged 6 commits into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions app/cdash/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +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
$CDASH_USE_HTTPS = '0';
// Name of the server running CDash.
Expand All @@ -57,10 +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';

// Settings to enable external authentication using OAuth 2.0.
// Currently recognized providers are GitHub, GitLab, and Google.
Expand All @@ -75,13 +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;

// Location of the private key that allows this CDash installation to act
// as a GitHub App.
$CDASH_GITHUB_PRIVATE_KEY = dirname(__FILE__) . '/github.pem';
Expand Down