aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-05-14 22:42:39 +0200
committerGitHub Enterprise <[email protected]>2025-05-14 22:42:39 +0200
commitcab94c0edd7b7107e996f37e41c3a91fc905fa08 (patch)
tree1ec4deaaede62e2929fe207b49c0cc6329df0477 /src
parentextend log on failed httpsys response (#394) (diff)
downloadzen-cab94c0edd7b7107e996f37e41c3a91fc905fa08.tar.xz
zen-cab94c0edd7b7107e996f37e41c3a91fc905fa08.zip
`zen oplog-import` and `zen oplog-export` now supports `--oidctoken-exe-path` option (#395)
Diffstat (limited to 'src')
-rw-r--r--src/zen/cmds/projectstore_cmd.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/zen/cmds/projectstore_cmd.cpp b/src/zen/cmds/projectstore_cmd.cpp
index 066dac781..a26687147 100644
--- a/src/zen/cmds/projectstore_cmd.cpp
+++ b/src/zen/cmds/projectstore_cmd.cpp
@@ -932,6 +932,12 @@ ExportOplogCommand::ExportOplogCommand()
"<filepath>");
m_Options.add_option("",
"",
+ "oidctoken-exe-path",
+ "Path to OidcToken executable",
+ cxxopts::value<std::string>(m_OidcTokenAuthExecutablePath)->default_value(""),
+ "");
+ m_Options.add_option("",
+ "",
"assume-http2",
"Assume that the cloud/builds endpoint is a HTTP/2 endpoint skipping HTTP/1.1 upgrade handshake",
cxxopts::value(m_JupiterAssumeHttp2),
@@ -1406,6 +1412,12 @@ ImportOplogCommand::ImportOplogCommand()
"<filepath>");
m_Options.add_option("",
"",
+ "oidctoken-exe-path",
+ "Path to OidcToken executable",
+ cxxopts::value<std::string>(m_OidcTokenAuthExecutablePath)->default_value(""),
+ "");
+ m_Options.add_option("",
+ "",
"assume-http2",
"Assume that the cloud/builds endpoint is a HTTP/2 endpoint skipping HTTP/1.1 upgrade handshake",
cxxopts::value(m_JupiterAssumeHttp2),