File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -375,8 +375,9 @@ Optional<std::string> find_container_id(std::istream& source) {
375375 source.clear ();
376376 source.seekg (0 );
377377
378- // Perform a second pass using a regular expression for matching container IDs in a Fargate environment.
379- // This two-step approach is used because STL `regex` is relatively slow, so we avoid using it unless necessary.
378+ // Perform a second pass using a regular expression for matching container IDs
379+ // in a Fargate environment. This two-step approach is used because STL
380+ // `regex` is relatively slow, so we avoid using it unless necessary.
380381 static const std::string uuid_regex_str =
381382 " [0-9a-f]{8}[-_][0-9a-f]{4}[-_][0-9a-f]{4}[-_][0-9a-f]{4}[-_][0-9a-f]{12}"
382383 " |(?:[0-9a-f]{8}(?:-[0-9a-f]{4}){4}$)" ;
You can’t perform that action at this time.
0 commit comments