File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/models/manageiq/providers/kubernetes Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ module ManageIQ::Providers::Kubernetes::ContainerManagerMixin
18
18
supports :streaming_refresh do
19
19
unsupported_reason_add ( :streaming_refresh , "Streaming refresh not enabled" ) unless streaming_refresh_enabled?
20
20
end
21
+
22
+ def streaming_refresh_enabled?
23
+ Settings . ems_refresh [ emstype . to_sym ] &.streaming_refresh
24
+ end
21
25
end
22
26
23
27
def monitoring_manager_needed?
@@ -30,10 +34,6 @@ def supports_metrics?
30
34
endpoints . where ( :role => METRICS_ROLES ) . exists?
31
35
end
32
36
33
- def streaming_refresh_enabled?
34
- Settings . ems_refresh [ emstype . to_sym ] &.streaming_refresh
35
- end
36
-
37
37
module ClassMethods
38
38
def raw_api_endpoint ( hostname , port , path = '' )
39
39
URI ::HTTPS . build ( :host => hostname , :port => port . presence . try ( :to_i ) , :path => path )
You can’t perform that action at this time.
0 commit comments