Skip to content

Commit

Permalink
[feat] technolution driver: Add support for '.' in the allowed charct…
Browse files Browse the repository at this point in the history
…ers of the storage directory (delmic#2527)

In the update of the ASM v3 API it is now allowed to have a '.' in the storage directory. If a name starts with a '.' this directory is not taking into account in the post-processing.
For the calibrations we need to acquire an image to update acquisition settings, these acquisitions where previously post-processed which takes up a lot of time. This is now not needed anymore.

SDEV-1539
  • Loading branch information
tepals committed Sep 18, 2023
1 parent 8668e5e commit ef37304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/odemis/driver/technolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
ASM_PASSWORD_CHARS = r'[A-Za-z0-9]+'
ASM_HOST_CHARS = r'[A-Za-z0-9.]+'
ASM_PATH_CHARS = r'[A-Za-z0-9/_()-]+'
ASM_SUBDIR_CHARS = r'[A-Za-z0-9/_()-]*' # * -> subdirectories can also be empty string
ASM_SUBDIR_CHARS = r'[A-Za-z0-9/_()-.]*' # * -> subdirectories can also be empty string
ASM_FILE_CHARS = r'[A-Za-z0-9_()-]+'


Expand Down

0 comments on commit ef37304

Please sign in to comment.