We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03a787 commit 9458b6bCopy full SHA for 9458b6b
plugins/notebooks/src/main/java/org/polypheny/db/notebooks/NotebooksPlugin.java
@@ -97,6 +97,7 @@ private boolean checkContainer() {
97
98
Optional<DockerContainer> maybeContainer = DockerContainer.getContainerByUUID( ConfigManager.getInstance().getConfig( CONFIG_CONTAINER_KEY ).getString() );
99
if ( maybeContainer.isPresent() ) {
100
+ this.token = ConfigManager.getInstance().getConfig( CONFIG_TOKEN_KEY ).getString();
101
this.container = maybeContainer.get();
102
// just because the container exists does not mean it is running
103
if ( !testConnection() ) {
0 commit comments