Displaying 3 results from an estimated 3 matches for "deliver_request".
2011 Jun 22
1
getting winbindd errors on OS X Server 10.6.6
...6 and samba 3.0.28a-apple. In the last two weeks we've been rebooting this server multiple times a day because it stops responding to smb requests. A look at the logs reveal the following two error messages repeated hundreds of times:
6/17/11 6:18:00 PM /usr/sbin/winbindd[231] dnssd_clientstub deliver_request: socketpair failed 24 (Too many open files)
6/17/11 6:18:00 PM /usr/sbin/winbindd[13089] dnssd_clientstub deliver_request: socketpair failed 24 (Too many open files)
The messages stop on the reboot and don't come back for a period of time.
We typically have 60-75 clients connected to the syst...
2008 Oct 17
1
ActionMailer template gets nil param from non-nil deliver_
...oller::Base class:
def create
@permission = Permission.new(params[:permission])
if @permission.save
# @permission is non-nil, and as expected, in the following log:
logger.info "In PermissionsController#create, @permission =
#{@permission.inspect}"
MyMailer.deliver_request(@permisssion) # Mail the request to
approvers.
# etc.
end
end
As noted in the comments, @permission is non-nil when passed to
deliver_request(). In request(), the corresponding parameter, req, is
nil. I am stymied.
I have searched the archives, and nothing obvious presents itself. W...
2008 Jun 10
7
ActionMailer undefined method `parameters' - Rails 2.1
...QihALCENZMoErytg@public.gmane.org''
body :greeting => "WAUW"
end
end
The part of my controller that actually sends the mail:
#...snip
def create
@request = Request.new(params[:request])
respond_to do |format|
if @request.save
Notifications.deliver_request
flash[:notice] = ''Request was successfully created.''
format.html { redirect_to(@request) }
format.xml { render :xml => @request, :status => :created,
:location => @request }
else
#...snip
As you can see, this was all just stubbed out using...