Hi everyone In class *SchedulerJobRunnerReadServiceImpl.java* there is a method ' *isUpdatesAllowed*()' that executes in every command call.
>From my understanding, this method does not allow command execution when a job wants to update something. But maybe the functionality of the code not fully implemented. The following query used inside this method : *"**select job.display_name from job job where job.currently_running=true and job.updates_allowed=false"**;* The *updates_allowed *is always true in the database and thus the method result is always true. I want to know why the field '*updates_allowed*' used in this query! I checked all the code, this field used nowhere in the project.
