Originally from the User Slack
@Sujay_KS: hey, is there any command to check in which mode scylla is running in docker comntainer like developer mode disabled or in enabled mode, also if i had not passed this flag during docker run will developer mode will be disabled by default ?
@Botond_Dénes: One way is to check the logs, ScyllaDB will log its command-line on startup.
You can also check with CQL:
select value from system.config where name='developer_mode';
This flag defaults to false, if you don’t pass it it will be false.
@Sujay_KS: got it will check this out, Thank you very much @Botond_Dénes
if I change it to true or false using cql will it work
I have not passed developer_mode field, but still its set to “true”
@Botond_Dénes: Changing via CQL only works for live-update confguration items. Developer-mode is not one of those. It takes effect at startup.
@Sujay_KS: okay, Thanks for the clarification
@Botond_Dénes: > I have not passed developer_mode field, but still its set to “true”
I seem to recall that our docker start scripts passes it auomatically