Skip to content

Commit b07bf86

Browse files
committed
Rename '--config' to '--extra-settings' for clarity and avoid conflicts
This works around 'django-configurations' interception of arguments which are contractions of its '--configuration' argument. We also take the opportunity to slightly clarify the name of this arugment. See jazzband/django-configurations#343
1 parent 466d089 commit b07bf86

7 files changed

+65
-25
lines changed

django_lightweight_queue/management/commands/queue_configuration.py

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,43 @@
1+
import warnings
12
from typing import Any
23

34
from django.core.management.base import BaseCommand, CommandParser
45

56
from ... import app_settings
6-
from ...utils import get_backend, get_queue_counts, load_extra_config
7+
from ...utils import get_backend, get_queue_counts, load_extra_settings
78
from ...cron_scheduler import get_cron_config
89

910

1011
class Command(BaseCommand):
1112
def add_arguments(self, parser: CommandParser) -> None:
12-
parser.add_argument(
13+
extra_settings_group = parser.add_mutually_exclusive_group()
14+
extra_settings_group.add_argument(
1315
'--config',
1416
action='store',
1517
default=None,
16-
help="The path to an additional django-style config file to load",
18+
help="The path to an additional django-style config file to load "
19+
"(this spelling is deprecated in favour of '--extra-settings')",
20+
)
21+
extra_settings_group.add_argument(
22+
'--extra-settings',
23+
action='store',
24+
default=None,
25+
help="The path to an additional django-style settings file to load",
1726
)
1827

1928
def handle(self, **options: Any) -> None:
20-
# Configuration overrides
21-
extra_config = options['config']
29+
extra_config = options.pop('config')
2230
if extra_config is not None:
23-
load_extra_config(extra_config)
31+
warnings.warn(
32+
"Use of '--config' is deprecated in favour of '--extra-settings'.",
33+
category=DeprecationWarning,
34+
)
35+
options['extra_settings'] = extra_config
36+
37+
# Configuration overrides
38+
extra_settings = options['extra_settings']
39+
if extra_settings is not None:
40+
load_extra_settings(extra_settings)
2441

2542
print("django-lightweight-queue")
2643
print("========================")

django_lightweight_queue/management/commands/queue_runner.py

+31-8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import warnings
12
from typing import Any, Dict, Optional
23

34
import daemonize
@@ -10,7 +11,12 @@
1011
)
1112

1213
from ...types import QueueName
13-
from ...utils import get_logger, get_backend, get_middleware, load_extra_config
14+
from ...utils import (
15+
get_logger,
16+
get_backend,
17+
get_middleware,
18+
load_extra_settings,
19+
)
1420
from ...runner import runner
1521
from ...machine_types import Machine, PooledMachine, DirectlyConfiguredMachine
1622

@@ -51,23 +57,40 @@ def add_arguments(self, parser: CommandParser) -> None:
5157
default=None,
5258
help="Only run the given queue, useful for local debugging",
5359
)
54-
parser.add_argument(
60+
extra_settings_group = parser.add_mutually_exclusive_group()
61+
extra_settings_group.add_argument(
5562
'--config',
5663
action='store',
5764
default=None,
58-
help="The path to an additional django-style config file to load",
65+
help="The path to an additional django-style config file to load "
66+
"(this spelling is deprecated in favour of '--extra-settings')",
67+
)
68+
extra_settings_group.add_argument(
69+
'--extra-settings',
70+
action='store',
71+
default=None,
72+
help="The path to an additional django-style settings file to load",
5973
)
6074
parser.add_argument(
6175
'--exact-configuration',
6276
action='store_true',
6377
help="Run queues on this machine exactly as specified. Requires the"
64-
" use of the '--config' option in addition. It is an error to"
65-
" use this option together with either '--machine' or '--of'.",
78+
" use of the '--extra-settings' option in addition. It is an"
79+
" error to use this option together with either '--machine' or"
80+
" '--of'.",
6681
)
6782

6883
def validate_and_normalise(self, options: Dict[str, Any]) -> None:
84+
extra_config = options.pop('config')
85+
if extra_config is not None:
86+
warnings.warn(
87+
"Use of '--config' is deprecated in favour of '--extra-settings'.",
88+
category=DeprecationWarning,
89+
)
90+
options['extra_settings'] = extra_config
91+
6992
if options['exact_configuration']:
70-
if not options['config']:
93+
if not options['extra_settings']:
7194
raise CommandError(
7295
"Must provide a value for '--config' when using "
7396
"'--exact-configuration'.",
@@ -110,9 +133,9 @@ def touch_filename(name: str) -> Optional[str]:
110133
return None
111134

112135
# Configuration overrides
113-
extra_config = options['config']
136+
extra_config = options['extra_settings']
114137
if extra_config is not None:
115-
load_extra_config(extra_config)
138+
load_extra_settings(extra_config)
116139

117140
logger.info("Starting queue master")
118141

django_lightweight_queue/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
FIVE_SECONDS = datetime.timedelta(seconds=5)
3333

3434

35-
def load_extra_config(file_path: str) -> None:
35+
def load_extra_settings(file_path: str) -> None:
3636
# Based on https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly
3737
spec = importlib.util.spec_from_file_location('extra_settings', file_path)
3838
extra_settings = importlib.util.module_from_spec(spec) # type: ignore[arg-type]
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django_lightweight_queue.types import QueueName
22

33
LIGHTWEIGHT_QUEUE_BACKEND_OVERRIDES = {
4-
QueueName('test-queue'): 'tests.test_extra_config.TestBackend',
4+
QueueName('test-queue'): 'tests.test_extra_settings.TestBackend',
55
}
66

77
LIGHTWEIGHT_QUEUE_REDIS_PASSWORD = 'a very bad password'
File renamed without changes.

tests/test_extra_config.py tests/test_extra_settings.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from django_lightweight_queue import app_settings
88
from django_lightweight_queue.job import Job
99
from django_lightweight_queue.types import QueueName, WorkerNumber
10-
from django_lightweight_queue.utils import get_backend, load_extra_config
10+
from django_lightweight_queue.utils import get_backend, load_extra_settings
1111
from django_lightweight_queue.backends.base import BaseBackend
1212

1313
TESTS_DIR = Path(__file__).parent
@@ -24,7 +24,7 @@ def length(self, queue: QueueName) -> int:
2424
pass
2525

2626

27-
class ExtraConfigTests(SimpleTestCase):
27+
class ExtraSettingsTests(SimpleTestCase):
2828
def setUp(self) -> None:
2929
get_backend.cache_clear()
3030
super().setUp()
@@ -34,8 +34,8 @@ def tearDown(self) -> None:
3434
get_backend.cache_clear()
3535
super().tearDown()
3636

37-
def test_updates_configuration(self) -> None:
38-
load_extra_config(str(TESTS_DIR / '_demo_extra_config.py'))
37+
def test_updates_settings(self) -> None:
38+
load_extra_settings(str(TESTS_DIR / '_demo_extra_settings.py'))
3939

4040
backend = get_backend('test-queue')
4141
self.assertIsInstance(backend, TestBackend)
@@ -44,17 +44,17 @@ def test_updates_configuration(self) -> None:
4444

4545
def test_warns_about_unexpected_settings(self) -> None:
4646
with self.assertWarnsRegex(Warning, r'Ignoring unexpected setting.+\bNOT_REDIS_PASSWORD\b'):
47-
load_extra_config(str(TESTS_DIR / '_demo_extra_config_unexpected.py'))
47+
load_extra_settings(str(TESTS_DIR / '_demo_extra_settings_unexpected.py'))
4848

4949
self.assertEqual('expected', app_settings.REDIS_PASSWORD)
5050

51-
def test_updates_configuration_with_falsey_values(self) -> None:
52-
load_extra_config(str(TESTS_DIR / '_demo_extra_config.py'))
53-
load_extra_config(str(TESTS_DIR / '_demo_extra_config_falsey.py'))
51+
def test_updates_settings_with_falsey_values(self) -> None:
52+
load_extra_settings(str(TESTS_DIR / '_demo_extra_settings.py'))
53+
load_extra_settings(str(TESTS_DIR / '_demo_extra_settings_falsey.py'))
5454

5555
self.assertIsNone(app_settings.REDIS_PASSWORD)
5656
self.assertFalse(app_settings.ATOMIC_JOBS)
5757

5858
def test_rejects_missing_file(self) -> None:
5959
with self.assertRaises(FileNotFoundError):
60-
load_extra_config(str(TESTS_DIR / '_no_such_file.py'))
60+
load_extra_settings(str(TESTS_DIR / '_no_such_file.py'))

0 commit comments

Comments
 (0)