[tests-only][full-ci] Change wrapper port from 5000 to 5200 (#6321)

* use port 5200 for wrapper API server

* remove binary and ignore the build
This commit is contained in:
Sawjan Gurung
2023-05-16 15:40:06 +05:45
committed by GitHub
parent 489fc64634
commit 14b11f24a6
8 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ class OcisConfigHelper {
public static function getWrapperUrl(): string {
$url = \getenv("OCIS_WRAPPER_URL");
if ($url === false) {
$url = "http://localhost:5000";
$url = "http://localhost:5200";
}
return $url;
}