Openfire Enterprise

delete chat from fastpath refers to jlaSession table instead of fpSession table (new name)

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Major Major
  • Resolution: Fixed
  • Affects Version/s: 3.3.0
  • Fix Version/s: 3.4.3
  • Component/s: Fastpath
  • Acceptance Test - Add?:
    No
  • Description:
    Hide

    Reported by customer:

    When trying to delete a previous chat from the fast path tab... it
    appears to be successful but the record does not delete... this is due
    to you code trying to delete from jlaSession (the old name) instead of
    fpSession. This should be a very quick fix.

    Problem:

    chat-summary.jsp, line 76:

    pstmt = con.prepareStatement("delete from jlaSession where sessionID=?");

    Change "delete from jlaSession where sessionID=?" to "delete from
    fpSession where sessionID=?"

    Additional customer comment:
    It looks like you may also need to delete records from fpSessionMetadata
    and possibly fpSessionProp.

    Show
    Reported by customer: When trying to delete a previous chat from the fast path tab... it appears to be successful but the record does not delete... this is due to you code trying to delete from jlaSession (the old name) instead of fpSession. This should be a very quick fix. Problem: chat-summary.jsp, line 76: pstmt = con.prepareStatement("delete from jlaSession where sessionID=?"); Change "delete from jlaSession where sessionID=?" to "delete from fpSession where sessionID=?" Additional customer comment: It looks like you may also need to delete records from fpSessionMetadata and possibly fpSessionProp.

Activity

Hide
Daniel Hacquebord added a comment - 04/16/07 06:51 PM

I believe that records from the the following should be deleted:

fpSession
fpSessionMetadata
fpSessionProp (is this table used?)
fpAgentSession

Daniel Hacquebord

Show
Daniel Hacquebord added a comment - 04/16/07 06:51 PM I believe that records from the the following should be deleted: fpSession fpSessionMetadata fpSessionProp (is this table used?) fpAgentSession Daniel Hacquebord

People

Dates

  • Created:
    04/16/07 06:43 PM
    Updated:
    12/20/07 10:08 PM
    Resolved:
    12/20/07 10:08 PM