File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Commands.Common.ScenarioTest Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public void VirtualHardDisksTest()
47
47
}
48
48
49
49
[ Fact ]
50
- public void RunVirtualMachineSizeTest ( )
50
+ public void VirtualMachineSizeTest ( )
51
51
{
52
52
var helper = _collectionState . GetRunner ( "compute-management" ) ;
53
53
helper . RunScript ( "01-VirtualMachineSizes" ) ;
Original file line number Diff line number Diff line change @@ -300,7 +300,9 @@ private static Mutex AcquireSingleInstanceMutex(Uri destinationBlobUri)
300
300
Mutex singleInstanceMutex = null ;
301
301
try
302
302
{
303
- singleInstanceMutex = new Mutex ( false , @"Global\" + mutexName ) ;
303
+ // TODO: CLU
304
+ singleInstanceMutex = new Mutex ( false ) ;
305
+ //singleInstanceMutex = new Mutex(false, @"Global\" + mutexName);
304
306
// TODO: CLU
305
307
if ( ! singleInstanceMutex . WaitOne ( TimeSpan . FromSeconds ( 5 ) ) )
306
308
//if (!singleInstanceMutex.WaitOne(TimeSpan.FromSeconds(5), false))
You can’t perform that action at this time.
0 commit comments