@@ -136,15 +136,15 @@ class Operator(client: NamespacedKubernetesClient? = null,
136136 serviceInformer = informerFactory.sharedIndexInformerFor(Service ::class .java, ServiceList ::class .java, 10 * 60 * 1000 .toLong())
137137 configMapInformer = informerFactory.sharedIndexInformerFor(ConfigMap ::class .java, ConfigMapList ::class .java, 10 * 60 * 1000 .toLong())
138138 ingressInformer = informerFactory.sharedIndexInformerFor(Ingress ::class .java, IngressList ::class .java, 10 * 60 * 1000 .toLong())
139- shinyProxyInformer = informerFactory.sharedIndexInformerForCustomResource(podSetCustomResourceDefinitionContext, ShinyProxy ::class .java, ShinyProxyList ::class .java, 10 * 60 * 1000 )
139+ shinyProxyInformer = informerFactory.sharedIndexInformerForCustomResource(podSetCustomResourceDefinitionContext, ShinyProxy ::class .java, ShinyProxyList ::class .java, 10 * 60 * 1000 .toLong() )
140140 podRetriever = PodRetriever (this .client)
141141 } else {
142142 val operationContext = OperationContext ().withNamespace(namespace)
143143 replicaSetInformer = informerFactory.sharedIndexInformerFor(ReplicaSet ::class .java, ReplicaSetList ::class .java, operationContext, 10 * 60 * 1000 .toLong())
144144 serviceInformer = informerFactory.sharedIndexInformerFor(Service ::class .java, ServiceList ::class .java, operationContext, 10 * 60 * 1000 .toLong())
145145 configMapInformer = informerFactory.sharedIndexInformerFor(ConfigMap ::class .java, ConfigMapList ::class .java, operationContext, 10 * 60 * 1000 .toLong())
146146 ingressInformer = informerFactory.sharedIndexInformerFor(Ingress ::class .java, IngressList ::class .java, operationContext, 10 * 60 * 1000 .toLong())
147- shinyProxyInformer = informerFactory.sharedIndexInformerForCustomResource(podSetCustomResourceDefinitionContext, ShinyProxy ::class .java, ShinyProxyList ::class .java, operationContext, 10 * 60 * 1000 )
147+ shinyProxyInformer = informerFactory.sharedIndexInformerForCustomResource(podSetCustomResourceDefinitionContext, ShinyProxy ::class .java, ShinyProxyList ::class .java, operationContext, 10 * 60 * 1000 .toLong() )
148148 podRetriever = PodRetriever (this .client)
149149 }
150150
0 commit comments