Skip to content

Commit

Permalink
Merge pull request #18657 from anjuchamantha/fapi-action
Browse files Browse the repository at this point in the history
[FAPI Action Build] change the server started check string
  • Loading branch information
Thumimku committed Dec 18, 2023
2 parents abdd120 + b232a99 commit 64324c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oidc-fapi-conformance-tests/configure_is_fapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def unpack_and_run(zip_file_name):
process = subprocess.Popen("./" + dir_name + "/bin/wso2server.sh", stdout=subprocess.PIPE)
while True:
output = process.stdout.readline()
if b'..................................' in output:
if b'WSO2 Carbon started' in output:
print("\n>>> Server Started")
break
if output:
Expand Down

0 comments on commit 64324c5

Please sign in to comment.