search for: kolve

Displaying 6 results from an estimated 6 matches for "kolve".

Did you mean: solve
2007 Nov 07
2
find_pid broken in mongrel_cluster 1.0.4
The find_pid method no longer returns a nil by default which causes some breakage in cases where the pid can''t be found since the local variable ''pid'' becomes the entire output of the ''ps'' command. Can you add this return back in so that it behaves the way it did earlier? thanks, eric
2007 Mar 16
1
0.4.2 compile error on FC5
...ibs/libswfdec-0.4.so -lpangocairo-1.0 -lpango-1.0 -lcairo -lgmodule-2.0 -loil-0.3 -lgobject-2.0 -lglib-2.0 -lz -lasound -lm -ldl -lpthread ../libswfdec/.libs/libswfdec-0.4.so: undefined reference to `cairo_image_surface_get_data' collect2: ld returned 1 exit status Please advise. thanks, eric kolve
2007 Nov 03
4
Mongrel Cluster: Rolling restart?
Hi all, Forgive me if this has been asked before, but is there a reason mongrel_rails cluster::restart stops all ports and then restarts them again? Wouldn''t it be better to restart each port one-by-one in series so that upstream proxy servers can fail over while the restart is occurring, or am I missing something? Thanks, eden
2007 Oct 21
1
Reliable cluster::restart
I run into a problem every so often while doing a cluster::restart where a child sleeps after receiving the KILL, but does not get restarted. This is caused by mongrel not shutting down until either all the requests have completed or 60 seconds have passed. The problem is that when the subsequent start command is issued it comes before the child has exited, so it never gets restarted. This is
2006 Jul 06
0
session scoped controllers
I was wondering if the notion of session scoped controllers has ever been discussed? The idea is that you could do something like this: def MyController < ActionController::SessionBase def step1 @favorite_color = params[:color] end def step2 # when step2 is hit by the user # @favorite_color would auto-magically be here puts "favorite color is
2006 Jul 20
0
possible file upload bug in integration test
I created an integrations test that attempted to uploade a file as follows: def uploaded_file(path, content_type="application/octet-stream", filename=nil) filename ||= File.basename(path) t = Tempfile.new(filename) FileUtils.copy_file(path, t.path) (class << t; self; end;).class_eval do alias local_path path define_method(:original_filename) {