How to make soft/graceful reload after collectstatic command
I have made some changes in my build files locally. Then I send via scp command to my remote server. Invoke there collectstatic command and here is the problem. Django html template refers to the old {% static %} cached links in production mode and to update it I need to call sudo service my_service restart command which takes about 2-3 minutes.
I want to force django to reload softly instead of invoking sudo service my_service restart because this command makes a full reload. I don't need this in some particular cases.
Is it possible to do so?