Skip to content
Snippets Groups Projects
Commit 76d05a7e authored by Don Kjer's avatar Don Kjer
Browse files

svn merge -r 129999:132607 svn+ssh://svn/svn/linden/branches/server/server-1.30 into trunk

QAR-1863: Merge 525 changes from 1.27 -> 1.30 -> trunk

1.27 Changes:
* QAR-1721: Vivox Recurring Billing (ViRB)
* QAR-1743: 525 AO Classifieds
* DEV-37701: Fix cleanup_indra nightly script so that it doesn't fail, and so that we know if it does
* DEV-37926 - Fairmarket key roll 8/12/2009
* QAR-1744: 525 Landstore
* QAR-1797: disable web services for find_people
* QAR-1758: OpenID and Backup/recovery.
* QAR-1794: ViRB proc fix - proc/recurring_billing/GetLocaleCountryByPackageId.php
* Changing parameter name so the module signal could be used properly in the function below
* QAR-1808 : Self-Reported First Name and Self-Reported Last Name have duplicate entries in the registration table
* DEV-30204 : Moved the registration table from sequence to indra_aux.
* removed dungeon from banned keyword list
* DEV-30204 : Moved the registration table from sequence to indra_aux.  Reviewed by kelly, cg, jarv
* Merging new streambase dwell nightly to server-1.27
* Add update_parcel_dwell.py to serial_maintenance rule in the nightly.make Makefile, removing the dwell rule, since we don't want it running in parallel with other expensive nightly scripts.

1.30 Changes:
* DEV-27476: version-manager only works in Firefox
* DEV-27472: version-manager appears to load javascript from third party site.
* mulib r92 that supports If-Modified-Since header and prevents arbitrary
  filesystem access through host:12107/manager/mochi/..
* Trivial conductor change that prevents a traceback when no regions are
  available to start.
* Fixing "Out of Connections" error when running tests via SCUT
* DEV-37554 - farm_deploy should get its ssh timeout from farm.ini
* undo two lines of debugging changes that accidentally were checked in to farm
* Adding MochiKit to MANIFEST for version-manager.
* revised files for new parcel dwell process
* Changing vault from an 'http' svn extern to a 'svn+ssh' svn extern.
* DEV-38504 RPS map item queries are too verbose
* added --skip-grid-mode-prompt to main in farm
* DEV-38607: Region Presence Service includes disabled regions in estate responses, resulting in high slave query rate.
* DEV-34781 - enable use_space_server_for_map_items and set map_item_request throttle settings in simulator.xml
* DEV-38351 changes to ip_blacklist.xml file never get automatically picked up by the simulator
* DEV-35443 Region border crossing issues.
* DEV-35443 revert overzealous validity checking on neighbor messages.
* DEV-15998 changing settings to re-enable teleport throttle, following DEV-37200 fix
* QAR-1822 CPU Overrides update to indra.xml
* DEV-15998 changing settings to re-enable teleport throttle, following DEV-37200 fix
* DEV-34026 Update LLAgentInfo::forwardViewerStats() to make all viewer statistics
* DEV-38906 Teleport throttle blocks prematurely when agent teleports back and forth between 2 regions
* DEV-38861 Intra-region TP is blocked by inter-region TP throttl
* DEV-38504 RPS map item queries are too verbose
* initial import of deploy_to_dev_grid.sh
parent 27e3db24
No related branches found
No related tags found
No related merge requests found
...@@ -69,6 +69,12 @@ const S32 TRANS_PARCEL_DIR_FEE = 2003; ...@@ -69,6 +69,12 @@ const S32 TRANS_PARCEL_DIR_FEE = 2003;
const S32 TRANS_GROUP_TAX = 2004; // Taxes incurred as part of group membership const S32 TRANS_GROUP_TAX = 2004; // Taxes incurred as part of group membership
const S32 TRANS_CLASSIFIED_RENEW = 2005; const S32 TRANS_CLASSIFIED_RENEW = 2005;
// Codes 2100-2999 reserved for recurring billing services
// New codes can be created through an admin interface so may not
// automatically end up in the list below :-(
// So make sure you check the transaction_description table
const S32 TRANS_RECURRING_GENERIC = 2100;
// Codes 3000-3999 reserved for inventory transactions // Codes 3000-3999 reserved for inventory transactions
const S32 TRANS_GIVE_INVENTORY = 3000; const S32 TRANS_GIVE_INVENTORY = 3000;
...@@ -84,6 +90,12 @@ const S32 TRANS_DWELL_BONUS = 5007; ...@@ -84,6 +90,12 @@ const S32 TRANS_DWELL_BONUS = 5007;
const S32 TRANS_PAY_OBJECT = 5008; const S32 TRANS_PAY_OBJECT = 5008;
const S32 TRANS_OBJECT_PAYS = 5009; const S32 TRANS_OBJECT_PAYS = 5009;
// Codes 5100-5999 reserved for recurring billing transfers between users
// New codes can be created through an admin interface so may not
// automatically end up in the list below :-(
// So make sure you check the transaction_description table
const S32 TRANS_RECURRING_GENERIC_USER = 5100;
// Codes 6000-6999 reserved for group transactions // Codes 6000-6999 reserved for group transactions
//const S32 TRANS_GROUP_JOIN = 6000; //reserved for future use //const S32 TRANS_GROUP_JOIN = 6000; //reserved for future use
const S32 TRANS_GROUP_LAND_DEED = 6001; const S32 TRANS_GROUP_LAND_DEED = 6001;
......
...@@ -131,7 +131,7 @@ void LLCurl::Responder::error( ...@@ -131,7 +131,7 @@ void LLCurl::Responder::error(
// virtual // virtual
void LLCurl::Responder::error(U32 status, const std::string& reason) void LLCurl::Responder::error(U32 status, const std::string& reason)
{ {
llinfos << status << ": " << reason << llendl; llinfos << mURL << " [" << status << "]: " << reason << llendl;
} }
// virtual // virtual
...@@ -139,6 +139,11 @@ void LLCurl::Responder::result(const LLSD& content) ...@@ -139,6 +139,11 @@ void LLCurl::Responder::result(const LLSD& content)
{ {
} }
void LLCurl::Responder::setURL(const std::string& url)
{
mURL = url;
}
// virtual // virtual
void LLCurl::Responder::completedRaw( void LLCurl::Responder::completedRaw(
U32 status, U32 status,
...@@ -148,7 +153,11 @@ void LLCurl::Responder::completedRaw( ...@@ -148,7 +153,11 @@ void LLCurl::Responder::completedRaw(
{ {
LLSD content; LLSD content;
LLBufferStream istr(channels, buffer.get()); LLBufferStream istr(channels, buffer.get());
LLSDSerialize::fromXML(content, istr); if (!LLSDSerialize::fromXML(content, istr))
{
llinfos << "Failed to deserialize LLSD. " << mURL << " [" << status << "]: " << reason << llendl;
}
completed(status, reason, content); completed(status, reason, content);
} }
......
...@@ -120,8 +120,14 @@ class LLCurl ...@@ -120,8 +120,14 @@ class LLCurl
// of the header can be parsed. In the ::completed call above only the body is contained in the LLSD. // of the header can be parsed. In the ::completed call above only the body is contained in the LLSD.
virtual void completedHeader(U32 status, const std::string& reason, const LLSD& content); virtual void completedHeader(U32 status, const std::string& reason, const LLSD& content);
// Used internally to set the url for debugging later.
void setURL(const std::string& url);
public: /* but not really -- don't touch this */ public: /* but not really -- don't touch this */
U32 mReferenceCount; U32 mReferenceCount;
private:
std::string mURL;
}; };
typedef boost::intrusive_ptr<Responder> ResponderPtr; typedef boost::intrusive_ptr<Responder> ResponderPtr;
......
...@@ -265,6 +265,11 @@ static void request( ...@@ -265,6 +265,11 @@ static void request(
} }
} }
if (responder)
{
responder->setURL(url);
}
req->setCallback(new LLHTTPClientURLAdaptor(responder)); req->setCallback(new LLHTTPClientURLAdaptor(responder));
if (method == LLURLRequest::HTTP_POST && gMessageSystem) if (method == LLURLRequest::HTTP_POST && gMessageSystem)
......
...@@ -67,7 +67,7 @@ void LLRegionPresenceVerifier::RegionResponder::result(const LLSD& content) ...@@ -67,7 +67,7 @@ void LLRegionPresenceVerifier::RegionResponder::result(const LLSD& content)
LLHost destination(host, port); LLHost destination(host, port);
LLUUID id = content["region_id"]; LLUUID id = content["region_id"];
llinfos << "Verifying " << destination.getString() << " is region " << id << llendl; lldebugs << "Verifying " << destination.getString() << " is region " << id << llendl;
std::stringstream uri; std::stringstream uri;
uri << "http://" << destination.getString() << "/state/basic/"; uri << "http://" << destination.getString() << "/state/basic/";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment