-
Notifications
You must be signed in to change notification settings - Fork 78
Fix all yarn lints for server directory #953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8936b62
2e59d55
0dee320
1906051
56fe846
f781759
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,10 +8,8 @@ import { DefaultBackend } from './default_backend'; | |
| import { NOTEBOOKS_SELECTED_BACKEND } from '../../../common/constants/notebooks'; | ||
|
|
||
| // Selects backend based on config | ||
| let BACKEND = new DefaultBackend(); | ||
| export let BACKEND: DefaultBackend | ZeppelinBackend = new DefaultBackend(); | ||
|
|
||
| if (NOTEBOOKS_SELECTED_BACKEND == 'ZEPPELIN') { | ||
| if (NOTEBOOKS_SELECTED_BACKEND === 'ZEPPELIN') { | ||
| BACKEND = new ZeppelinBackend(); | ||
| } | ||
|
|
||
| export default BACKEND; | ||
|
Comment on lines
10
to
-17
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we get rid of the Zeppelin backend since it is hard coded to never use it? That will also avoid more confusion in the future
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you create an issue for this, I'll work on it to remove Zeppelin.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Uh oh!
There was an error while loading. Please reload this page.