Skip to content

Commit

Permalink
Fix nn error continue
Browse files Browse the repository at this point in the history
  • Loading branch information
franklupo committed Oct 26, 2019
1 parent 45ae819 commit 1db4739
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cv4pve-autosnap

[![License](https://img.shields.io/github/license/Corsinvest/cv4pve-autosnap.svg)](LICENSE.md) [![Release](https://img.shields.io/github/release/Corsinvest/cv4pve-autosnap.svg)](https://github.com/Corsinvest/cv4pve-autosnap/releases/latest) ![GitHub All Releases](https://img.shields.io/github/downloads/Corsinvest/cv4pve-autosnap/total.svg)
[![License](https://img.shields.io/github/license/Corsinvest/cv4pve-autosnap.svg)](LICENSE.md) [![Release](https://img.shields.io/github/release/Corsinvest/cv4pve-autosnap.svg)](https://github.com/Corsinvest/cv4pve-autosnap/releases/latest) ![GitHub All Releases](https://img.shields.io/github/downloads/Corsinvest/cv4pve-autosnap/total.svg) [![AppVeyor branch](https://img.shields.io/appveyor/ci/franklupo/cv4pve-autosnap/master.svg)](https://ci.appveyor.com/project/franklupo/cv4pve-autosnap)

Proxmox VE automatic snapshot tool

Expand Down Expand Up @@ -87,6 +87,7 @@ For the planning process using an external machine:
* Waiting for the snapshot process to finish
* Alerting in QEMU, agent not enabled.
* Save memory VM Qemu in snap using parameter --state.
* No stop on error

## Configuration and use

Expand Down
4 changes: 2 additions & 2 deletions src/Corsinvest.ProxmoxVE.AutoSnap/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public bool Snap(string vmIdsOrNames, string label, int keep, bool state)
CallPhaseEvent("snap-create-abort", vm, label, keep, snapName, state);

ret = false;
break;
continue;
}

CallPhaseEvent("snap-create-post", vm, label, keep, snapName, state);
Expand All @@ -186,7 +186,7 @@ public bool Snap(string vmIdsOrNames, string label, int keep, bool state)
if (!SnapshotsRemove(vm, label, keep))
{
ret = false;
break;
continue;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>1.4.0</Version>
<Version>1.5.0</Version>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AssemblyName>cv4pve-autosnap</AssemblyName>
<Company>Corsinvest Srl</Company>
Expand Down

0 comments on commit 1db4739

Please sign in to comment.