Skip to content

Commit

Permalink
Update pods_test.krl to remove optional parameter from overwrite() an…
Browse files Browse the repository at this point in the history
…d store()
  • Loading branch information
keylanjensen committed Apr 5, 2024
1 parent 7f5db5d commit c246eb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pods_test.krl
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ ruleset pods_test {

rule test_store_file {
select when test store_file
pods:overwrite(event:attrs.get("originURL"), event:attrs.get("destinationURL"), event:attrs.get("fileName"), event:attrs.get("doAutoAuth"))
pods:overwrite(event:attrs.get("originURL"), event:attrs.get("destinationURL"), event:attrs.get("doAutoAuth"))
}

rule test_overwrite_file {
select when test overwrite_file
pods:overwrite(event:attrs.get("originURL"), event:attrs.get("destinationURL"), event:attrs.get("fileName"), event:attrs.get("doAutoAuth"))
pods:overwrite(event:attrs.get("originURL"), event:attrs.get("destinationURL"), event:attrs.get("doAutoAuth"))
}

rule test_remove_file {
Expand Down

0 comments on commit c246eb8

Please sign in to comment.