Skip to content

Commit

Permalink
Revert VSCode reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPGreen committed Aug 7, 2023
1 parent a6d0f68 commit bae9092
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions start_rc.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def start_rc(stdout=None, stderr=None):
enterprise_key = os.environ.get("HAZELCAST_ENTERPRISE_KEY", None)

if enterprise_key:
server = download_if_necessary(ENTERPRISE_REPO, "hazelcast-enterprise", SERVER_VERSION)
else:
server = download_if_necessary(REPO, "hazelcast", SERVER_VERSION)
server = download_if_necessary(ENTERPRISE_REPO, "hazelcast-enterprise", SERVER_VERSION)
else:
server = download_if_necessary(REPO, "hazelcast", SERVER_VERSION)

artifacts.append(server)

Expand All @@ -90,9 +90,9 @@ def start_rc(stdout=None, stderr=None):
]

if enterprise_key:
args.insert(1, "-Dhazelcast.enterprise.license.key=" + enterprise_key)
args.insert(1, "-Dhazelcast.enterprise.license.key=" + enterprise_key)

return subprocess.Popen(args=args, stdout=stdout, stderr=stderr, shell=IS_ON_WINDOWS)
return subprocess.Popen(args=args, stdout=stdout, stderr=stderr, shell=IS_ON_WINDOWS)


if __name__ == "__main__":
Expand Down

0 comments on commit bae9092

Please sign in to comment.