thebadpete commented on a change in pull request #7233:
URL: https://github.com/apache/trafficserver/pull/7233#discussion_r499962190



##########
File path: plugins/multiplexer/ats-multiplexer.cc
##########
@@ -39,6 +41,7 @@
 const size_t DEFAULT_TIMEOUT = 1000000000000;
 
 Statistics statistics;
+bool skip_post_put = false;

Review comment:
       @shukitchan will do

##########
File path: plugins/multiplexer/ats-multiplexer.cc
##########
@@ -77,8 +80,19 @@ TSRemapNewInstance(int argc, char **argv, void **i, char *, 
int)
   Instance *instance = new Instance;
 
   if (argc > 2) {
-    std::copy(argv + 2, argv + argc, std::back_inserter(instance->origins));
+    std::copy_if(argv + 2, argv + argc, std::back_inserter(instance->origins), 
[&](std::string s) {
+      std::regex 
srgx("proxy\\.config\\.multiplexer\\.skip\\_post\\_put=(\\d)");

Review comment:
       @shukitchan on it




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to