I am using Django3 application, configuration settings.py were loaded during application startup. Consider an application were running in an production if any of the token expires to regenerate the token, need to get an configurations from settings.py during runtime. I got an exception if token has expires. How should I reload/refresh the configuration settings during runtime only if token expires.
Django3 Refresh/reload configuration settings during runtime
1.1k Views Asked by Pez At
1
There are 1 best solutions below
Related Questions in PYTHON-3.X
- Update a text file with ( new words+ \n ) after the words is appended into a list
- Kivy - Create new widget and set its position and size
- TypeError: encoding or errors without a string argument
- How to print varible name in python
- PyQt, Python 3: Lambda slot assigning signal argument to a variable?
- How to write data to stdin of the first process in a Python shell pipeline?
- pygame.draw.circle, still draws a square
- Duplicate Frames Created When Calling a Function in a Tkinter Application
- Python TypeError: can only concatenate tuple (not "int") to tuple
- recursively editing member variable: All instances have same value
- missing 1 required positional argument: 'key'
- How do I fix this sorting error?
- Dictionary values missing
- Why does opening a file in two different encodings work as expected?
- Binary bit flip generator in python
Related Questions in TOKEN
- .net Web Api 2 Owin authentication token expires suddenly and often on IIS 8.5
- search with filter by token count
- How to token paste a number?
- Ember.js REST Auth Headers
- django rest framework - token authentication logout
- Is my JWT refresh plan secure?
- PHP token security
- GCM get invalid tokens when sending to multiple devices at once
- Uncaught SyntaxError: Unexpected token < in HTML - can't solve
- TERADATA - How to split a character column and keep the last token?
- Oauth refresh token provider error in ValidateClientAuthentication
- First authentification in order to get token
- does Token Based Authentication requires to store token in DB?
- Play Framework: How to Add a Header to Every Response
- Meteor app deploying with Modulus
Related Questions in DJANGO-3.0
- Method Not Allowed (POST) in Django 3.0.7
- How to restrict overlapping datetimes in django model at DB level using CheckConstraint
- How to make Django 3, channels and uvicorn work together
- Custom sorting on model property django-table2
- Django-rest-framework filter_queryset() takes 3 positional arguments but 4 were given
- wagtail admin super slow page loads
- Save django variable using ajax
- i have to make a relation between movie and actor without using manytomany field i have to use only foreign key in django i've write this code so far
- Django 2 to 3 upgrade throws error: "on_delete must be callable"
- Django3 Refresh/reload configuration settings during runtime
- Result type from cursor.fetchall() is list of tuples, but doc shows tuple of tuples
- Django: update field of ManyToMany instance when it's set
- I am trying to show my DataFrame in a html table using Django but it's only showing column names and not the values in rows?
- Django filter form not displaying
- HTML order list mess up with un-order list in django template
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I actually think you're trying to solve the wrong problem here, but let me address your main question first.
You can get att the settings info from your code by simply doing:
Then you can access
settings.<setting val>- eg.if settings.DEBUG:in your code.Now, when you talk about tokens, I guess you mean user tokens to indicate they have a valid session (by "user" I would also mean API logins), which may have timed out.
settings.pyholds information that is relevant for the Django session itself - i.e. the server-side process. It does not hold information about the current user, so I can see no reason you would need to reload this at any point. It's loaded when the django process is started (either via runserver, or gunicorn or whatever). If you find yourself needing to reloadsettings.pywhen Django is already up and running, then you almost certainly have something in settings that should be handled elsewhere.