Skip to content

Commit

Permalink
fix upload condition in geosapi action
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Sep 11, 2023
1 parent b2ca344 commit a8e0f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/actions/geosapi_publish_ogc_services.R
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ function(action, entity, config){
#upload
#-------------------------------------------------------------------------------------------------
proceed_with_upload = data_object$upload
if(!is.null(layer) & !overwrite_upload) proceed_with_upload = FALSE
if(!overwrite_upload) proceed_with_upload = FALSE
if(proceed_with_upload){

config$logger.info("Upload mode is set to true")
Expand Down

0 comments on commit a8e0f11

Please sign in to comment.