Adding subscription_id argument
parent
db60d29f68
commit
82d1709193
|
@ -16,6 +16,7 @@ parser.add_argument("-v", "--verbose", action="store_true", help="More verbose l
|
||||||
parser.add_argument("-s", "--stdout", action="store_true", help="Log to STDOUT")
|
parser.add_argument("-s", "--stdout", action="store_true", help="Log to STDOUT")
|
||||||
parser.add_argument("--start", help="Date to poll from (YYYY-MM-DD), Exclusive")
|
parser.add_argument("--start", help="Date to poll from (YYYY-MM-DD), Exclusive")
|
||||||
parser.add_argument("--end", help="Date to poll to (YYYY-MM-DD), Inclusive")
|
parser.add_argument("--end", help="Date to poll to (YYYY-MM-DD), Inclusive")
|
||||||
|
parser.add_argument("--subscription_id", help="The ID of the subscription", default=None)
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
@ -109,6 +110,7 @@ for server in config:
|
||||||
log.debug("Within date range %s - %s", poll_from or "Beginning of time", poll_to)
|
log.debug("Within date range %s - %s", poll_from or "Beginning of time", poll_to)
|
||||||
try:
|
try:
|
||||||
for content_block in cli.poll(collection_name=collection,
|
for content_block in cli.poll(collection_name=collection,
|
||||||
|
subscription_id=subscription_id,
|
||||||
begin_date=poll_from,
|
begin_date=poll_from,
|
||||||
end_date=poll_to):
|
end_date=poll_to):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue