search for: 81ms

Displaying 3 results from an estimated 3 matches for "81ms".

Did you mean: 1ms
2005 Mar 14
2
FWD IAX Problem
...authentication (0x06) Length: 6 Username (peer or user) for authentication: 561293 No. Time Source Destination Protocol Info 3 0.073611 68.146.107.231 65.39.205.121 IAX2 IAX, source call# 1, timestamp 81ms REGREQ <snip> Inter-Asterisk eXchange v2 <snip> Type: IAX (6) IAX type: REGREQ (13) Information Element: Username (peer or user) for authentication (0x06) IE id: Username (peer or user) for authentication (0x06) Length: 6...
2010 Jan 07
1
text field with autocomplete
...n my posts new action. That works great. Response from autocompleter in firebug: POST http://localhost:3001/posts/auto_complete_for_tag_name 200 OK 68ms but if I use the same in edit action it fails and I got this error. POST http://localhost:3001/posts/781/auto_complete_for_tag_name 404 Not Found 81ms *** POSTS controller: *** def auto_complete_for_tag_name @tag = Tag.find(:all, :conditions => ["name LIKE ?",#{params[:tag][:name]}%"]) render :inline => "<%= auto_complete_result(@tag, ''name'') %>" end *** posts NEW and EDIT view...
2009 Apr 03
0
Truncated development log when using rescue_from
...Load (0.8ms) SELECT * FROM `domains` WHERE (`domains`.`domainname` = ''test6'') LIMIT 1 I would expect to see a final confirmation of the HTTP status code, but instead I see the above without it, but the correct 404 status code is returned back to my client program. Completed in 81ms (View: 0, DB: 2) | 404 Not Found [http://localhost/services/domains/test6] My rescue_from implementation: class ApplicationController < ActionController::Base rescue_from InvalidDomainError, :with => :handle404NotFound ... def handle404NotFound(e) render :xml => generateErrorXML(e.t...