Skip to content

Commit

Permalink
Merge pull request #47 from podio/item_revision_id
Browse files Browse the repository at this point in the history
item_revision_id updated to long
  • Loading branch information
PavloBasiuk authored Jan 25, 2018
2 parents 6dd269c + 4ea37ee commit 50d4b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Podio .NET/Models/ItemRevision.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ItemRevision
public int Revision { get; set; }

[JsonProperty("item_revision_id")]
public int? ItemRevisionId { get; set; }
public long? ItemRevisionId { get; set; }

[JsonProperty("app_revision")]
public int? AppRevision { get; set; }
Expand All @@ -26,4 +26,4 @@ public class ItemRevision
[JsonProperty("type")]
public string Type { get; set; }
}
}
}

3 comments on commit 50d4b84

@LodeVlaeminck
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This update caused overflow errors in my scripts...Is there any way that i can get a notification of the updates that happen to the podio api (and not just the code?). This should have been a part of the communication during the shutdown...

@PavloBasiuk
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, we were pretty transparent about what happened and shared all information in post-portem here: http://status.podio.com/incidents/tjf16qx8472x Overflow that you are dealing with now - is exact problem that we were dealing with. Sorry if this is causing issues, but there is no way to avoid it now. Podio grown too big and this is growing pains that we all are working on.

@LodeVlaeminck
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I never saw the status page. When shits hit the fan there are more important things to be concerned about :). Keep up the good work on this repo this has saved me so much time already!

Kind regards

Lode Vlaeminck

Please sign in to comment.