I tried to forward the war file of 24MB from fileserver of puppet to
the client. However, it very took time to do it, and, after all, the
client side became a time-out error.

I think that I see the source of puppet, and understood the cause.
Because fileserver does the content of the file in URL Encode when the
file is forwarded.

(puppet/network/handler/filserver.rb:204)
>            if @local
>                return str
>            else
>                return CGI.escape(str)
>            end

It takes time of three minutes over in my server for this processing.
I do not understand why such processing is done.
I want you to teach the method in which someone is good to solve this
problem.

(Version used is 0.24.5)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to