Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Update spring file for failure suites
Browse files Browse the repository at this point in the history
  • Loading branch information
oldpatricka committed Jun 23, 2011
1 parent d913538 commit e9fb449
Showing 1 changed file with 23 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,16 @@
<constructor-arg ref="other.timerManager" />
<constructor-arg ref="nimbus-rm.loglevels" />
<constructor-arg ref="nimbus-rm.service.binding.BindNetwork" />
<constructor-arg ref="nimbus-rm.creation.idempotent" />

<!-- idempotent requests can be disabled by replacing this
last arg with a null reference, like:
<constructor-arg><null/></constructor-arg>
You can also comment out the idempotent bean definition below but it
is not required.
-->
<constructor-arg ref="nimbus-rm.creation.idempotent"/>

<property name="accountingEventAdapter"
ref="nimbus-rm.accounting" />
Expand Down Expand Up @@ -339,8 +348,8 @@
<property name="sshAccount" value="$SSH{control.ssh.user}" />
<property name="sshIdentityFile" value="$SSH{use.identity}" />

<!-- This is assumed to be a certain value in the suites. Tests will fail if you change this -->
<property name="sweeperDelay" value="3000" /> <!-- ms -->
<!-- defaults -->
<property name="sweeperDelay" value="6000" /> <!-- ms -->
<property name="threadPoolInitialSize" value="5" />
<property name="threadPoolMaxSize" value="50" />

Expand Down Expand Up @@ -502,8 +511,16 @@

<constructor-arg ref="nimbus-rm.loglevels" />

<!-- Mock command set for failure scenarios -->
<property name="commandSet" value="failure_commands" />
<!-- Current choices: xenlocal, xenssh -->
<property name="commandSet" value="xenssh" />

<!--
Not exposing the distinction between xenlocal and xenssh anymore,
the user should just set up localhost ssh logins if there is one
VMM node and it happens to be colocated. workspace-control needs
to send notifications back over sshd anyhow, so this login has to
work regardless until reliable messaging system is introduced.
-->

</bean>

Expand Down Expand Up @@ -597,7 +614,7 @@
<bean id="nimbus-rm.si.pricingmodel" class="$ASYNC{si.pricingmodel}" />

<bean id="nimbus-rm.si.asyncreqmap" class="org.globus.workspace.async.AsyncRequestMap">
<constructor-arg value="$COMMON{caches.dir}" />
<constructor-arg ref="nimbus-rm.persistence.PersistenceAdapter" />
</bean>

<bean id="nimbus-rm.async.manager"
Expand Down

0 comments on commit e9fb449

Please sign in to comment.