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
2 changes: 1 addition & 1 deletion src/console.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# encoding: utf-8
'''
RestConsole -- Implements a remote console using Rest to the OpenSim Services
RestConsole -- Implements a remote console using Rest to the Halcyon Services

@author: Mike Dickson
@copyright: 2013 InWorldz, LLC. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/inworldz/maestro/Region.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, uuid, record={}):
ServiceBase.__init__(self, uuid, record)
self.props = DefaultProperties.instance()
dbconfig = self.props.getCoreDbConfig()
self.exe_name = "OpenSim.exe"
self.exe_name = "Halcyon.exe"
# self.exe_args = "--console rest"
self.exe_args = ""

Expand Down
2 changes: 1 addition & 1 deletion src/inworldz/maestro/System.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def process_list(self):
# if (len(p.cmdline()) <= 0):
# continue
# cmdline = p.cmdline()[0]
# if os.path.basename(cmdline) == "OpenSim.exe":
# if os.path.basename(cmdline) == "Halcyon.exe":
# print cmdline
# print os.path.dirname(cmdline)
# print p.pid
4 changes: 2 additions & 2 deletions src/inworldz/util/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ def OpenAllFirewallPorts(

for i in range(maxRegionSlots):
print "Opening UDP port {0} on firewall".format(startingUdpPort + i);
FWOpenPort("OpenSim UDP {0}".format(i), startingUdpPort + i,
FWOpenPort("Halcyon UDP {0}".format(i), startingUdpPort + i,
NET_FW_IP_PROTOCOL_UDP, NET_FW_SCOPE_ALL, NET_FW_IP_VERSION_ANY)

print "Opening TCP port {0} on firewall".format(startingHttpPort + i)
FWOpenPort("OpenSim TCP {0}".format(i), startingHttpPort + i,
FWOpenPort("Halcyon TCP {0}".format(i), startingHttpPort + i,
NET_FW_IP_PROTOCOL_TCP, NET_FW_SCOPE_ALL, NET_FW_IP_VERSION_ANY)

FWOpenSubnet("Backend Subnet", backendSubnet);
Expand Down
2 changes: 1 addition & 1 deletion src/inworldz/util/provision.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _findRegionProcess(slotnum):
continue
cmdline = p.cmdline()[0]
if ((os.path.dirname(cmdline) == bindir) and
(os.path.basename(cmdline) == "OpenSim.exe")):
(os.path.basename(cmdline) == "Halcyon.exe")):
return (p)
return None

Expand Down
2 changes: 1 addition & 1 deletion tests/CreateRegion.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
result = session.api.Console.Command("show users")
print result

region = session.api.Region.GetByName("OpenSim Test")
region = session.api.Region.GetByName("Halcyon Test")
print result

session.api.Region.Restart(region)
Expand Down
2 changes: 1 addition & 1 deletion tests/UpdateGridServices.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
result = session.api.Console.Command("show users")
print result

region = session.api.Region.GetByName("OpenSim Test")
region = session.api.Region.GetByName("Halcyon Test")
print result

session.api.Region.Restart(region)
Expand Down
2 changes: 1 addition & 1 deletion tests/ZooKeeperTestClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
result = session.api.Console.Command("show users")
print result

region = session.api.Region.GetByName("OpenSim Test")
region = session.api.Region.GetByName("Halcyon Test")
print result

session.api.Region.Restart(region)
Expand Down