You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This could be set system wide, or per batch connect app, or per attribute with this pseudocode:
def cache_attribute_value?
if attribute_has_cache_set_to_true_or_false?
attribute_cache_setting_value
elsif app_has_cache_set_to_true_or_false?
app_cache_setting_value
elseif system_wide_has_cache_set_to_true_or_false?
systemwide_cache_setting_value
else
true
end
end
To specify the attribute cache setting in the form.yml, use enable_caching_attr_value: true or enable_caching_attr_value: falsein the settings for the specified attribute.
To specify the app wide cache setting in the form.yml, use enable_caching_attr_values: true or enable_caching_attr_values: false in the top level of the yaml (along with cluster:, form: and attributes:
To specify the app wide cache setting system wide, set the environment variable OOD_BATCH_CONNECT_CACHE_ATTR_VALUES=FALSE (or any valid falsy value for an env var for OnDemand
Related Discourse topics:
This could be set system wide, or per batch connect app, or per attribute with this pseudocode:
enable_caching_attr_value: true
orenable_caching_attr_value: false
in the settings for the specified attribute.enable_caching_attr_values: true
orenable_caching_attr_values: false
in the top level of the yaml (along withcluster:
,form:
andattributes:
OOD_BATCH_CONNECT_CACHE_ATTR_VALUES=FALSE
(or any valid falsy value for an env var for OnDemandondemand/apps/dashboard/config/configuration_singleton.rb
Line 262 in fba5513
Also, there may be a better name than
cache
for this.The text was updated successfully, but these errors were encountered: