Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions TT_CORE_SDK/SDKAlgoServer/TTWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ bool TTWrapper::Start(const std::string& appkey, const ttsdk::Environment env)

ttsdk::TTSDKOptions options;
options.environment = env;
options.enable_pnl = true;
options.app_key_secret = appkey.c_str();
// has to be unique and remain for the same for this application
// instance across process runs
Expand Down
1 change: 0 additions & 1 deletion TT_CORE_SDK/SDKAlgoServer/algoserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ int main(int argc, char* argv[])
sEnv = argv[i];
if (sEnv == "ProdLive") env = ttsdk::Environment::ProdLive;
else if (sEnv == "ProdSim") env = ttsdk::Environment::ProdSim;
else if (sEnv == "ProdDelayed") env = ttsdk::Environment::ProdDelayed;
else if (sEnv == "UatCert") env = ttsdk::Environment::UatCert;
else if (sEnv == "DevCert")env = ttsdk::Environment::DevCert;
else {
Expand Down