that seems correct,

You have one idle instance because of this: <max-idle-instances>1</max-
idle-instances>

You have one resident instance because of this: <min-idle-instances>1</min-
idle-instances>

You have one other instance because that's the one that is actually
serving.




On Fri, Jan 24, 2014 at 8:20 AM, Tapir <[email protected]> wrote:

> Evidence: http://imgur.com/VNHdkpU
>
> Following is the config.
>
> <?xml version="1.0" encoding="utf-8"?>
> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0";>
>     <application>{{app_id}}</application>
>    <module>default</module>
>     <version>{{app_version}}</version>
>
>     <!-- loading faster -->
>   <precompilation-enabled>true</precompilation-enabled>
>
>     <!-- warmup -->
>   <warmup-requests-enabled>true</warmup-requests-enabled>
>
>   <!-- concurrentcy -->
>   <threadsafe>true</threadsafe>
>
>   <!-- concurrentcy -->
>   <sessions-enabled>true</sessions-enabled>
>
>   <inbound-services>
>     <service>channel_presence</service>
>   </inbound-services>
>
>   <!-- scale settings -->
>
>   <instance-class>F1</instance-class>
>
>   <automatic-scaling>
>     <min-idle-instances>1</min-idle-instances>
>     <max-idle-instances>1</max-idle-instances>
>     <min-pending-latency>2730ms</min-pending-latency>
>     <max-pending-latency>automatic</max-pending-latency>
>     <max-concurrent-requests>50</max-concurrent-requests>
>   </automatic-scaling>
>
>   <!-- Configure java.util.logging -->
>   <system-properties>
>     <property name="java.util.logging.config.file"
> value="WEB-INF/logging.properties"/>
>   </system-properties>
>
>     <static-files>
>         <include path="/favicon.ico" />
>         <include path="/crossdomain.xml" />
>         <include path="/css/**.*" expiration="1d"/>
>         <include path="/swfs/**.swf" expiration="365d" />
>         <include path="/js/**.js" expiration="1d" />
>         <include path="/images/**.ico" expiration="1d" />
>         <include path="/images/**.png" expiration="1d" />
>         <include path="/images/**.gif" expiration="1d" />
>         <include path="/images/**.jpg" expiration="1d" />
>         <include path="/htmls/**.i*" expiration="1d" />
>     </static-files>
>
> </appengine-web-app>
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to