Skip to content

Commit

Permalink
Hardcoded storage URL (#39)
Browse files Browse the repository at this point in the history
* Hardcoded storage URL

* Updated storage URL
  • Loading branch information
s1lentssh authored Nov 14, 2023
1 parent 285b001 commit 328b74a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Sources/Resolver/Resolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,14 @@ RenderStudioResolver::GetLocalStorageUrl()
{
return sLiveModeInfo->storageUrl;
}
else
else if (ArchHasEnv("STORAGE_SERVER_URL"))
{
return ArchGetEnv("STORAGE_SERVER_URL");
}
else
{
return "https://renderstudio.matlib.gpuopen.com/workspace/storage";
}
}

std::string
Expand Down

0 comments on commit 328b74a

Please sign in to comment.