Skip to content

Commit 8d3cd28

Browse files
committed
[http] by default allow decode of post object
Option can be used to prevent complex object decoding when exe.json request is executed. It was default behaviour before. (cherry picked from commit d4d1955)
1 parent 3cf7d4f commit 8d3cd28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

net/http/inc/TRootSniffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class TRootSniffer : public TNamed {
120120
protected:
121121
TString fObjectsPath; ///<! default path for registered objects
122122
Bool_t fReadOnly{kTRUE}; ///<! indicate if sniffer allowed to change ROOT structures - like read objects from file
123-
Bool_t fAllowPostObject{kFALSE}; ///<! when true allow to deserialize objects received via POST requests
123+
Bool_t fAllowPostObject{kTRUE}; ///<! when true allow to deserialize objects received via POST requests
124124
Bool_t fScanGlobalDir{kTRUE}; ///<! when enabled (default), scan gROOT for histograms, canvases, open files
125125
std::unique_ptr<TFolder> fTopFolder; ///<! own top TFolder object, used for registering objects
126126
THttpCallArg *fCurrentArg{nullptr}; ///<! current http arguments (if any)

0 commit comments

Comments
 (0)