mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Replace . to _
This commit is contained in:
parent
b6e4141bad
commit
b0680655db
1 changed files with 1 additions and 1 deletions
|
|
@ -425,7 +425,7 @@ public class Paragraph extends Job implements Serializable, Cloneable {
|
|||
}
|
||||
|
||||
private String getApplicationId(HeliumPackage pkg) {
|
||||
return "app_" + getNote().getId() + "-" + getId() + pkg.getName();
|
||||
return "app_" + getNote().getId() + "-" + getId() + pkg.getName().replaceAll("\\.", "_");
|
||||
}
|
||||
|
||||
public ApplicationState createOrGetApplicationState(HeliumPackage pkg) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue