From: erickson Date: Tue, 23 Sep 2008 16:57:44 +0000 (+0000) Subject: set log xid on outbound messages X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=03b6e5ca18ce25d2910b5f64e746883b8a223daa;p=working%2FOpenSRF.git set log xid on outbound messages git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1437 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/gateway/osrf_http_translator.c b/src/gateway/osrf_http_translator.c index 66bc90e..5d2f60a 100644 --- a/src/gateway/osrf_http_translator.c +++ b/src/gateway/osrf_http_translator.c @@ -341,6 +341,7 @@ static int osrfHttpTranslatorProcess(osrfHttpTranslator* trans) { // send the message to the recipient transport_message* tmsg = message_init( trans->body, NULL, trans->thread, trans->recipient, NULL); + message_set_osrf_xid(tmsg, osrfLogGetXid()); client_send_message(trans->handle, tmsg); message_free(tmsg);