Docs feedback: undefined method `update!'
There are several references to ApplicationSetting.update!
which throws this error in the latest version of Gitlab EE:
irb(main):012:0> ApplicationSetting.update!(max_yaml_size_bytes: 2.megabytes)
Traceback (most recent call last):
1: from (irb):12
NoMethodError (undefined method `update!' for #<Class:0x00007f01cd3ca868>)
Did you mean? update
Switching to ApplicationSetting.update
fixed it for me.