File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ ' @e2b/python-sdk ' : minor
3+ ' e2b ' : minor
4+ ---
5+
6+ Changes default domain to e2b.app
7+
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export interface ConnectionOpts {
2525 /**
2626 * Domain to use for the API.
2727 *
28- * @default E2B_DOMAIN // environment variable or `e2b.dev `
28+ * @default E2B_DOMAIN // environment variable or `e2b.app `
2929 */
3030 domain ?: string
3131 /**
@@ -74,7 +74,7 @@ export class ConnectionConfig {
7474 }
7575
7676 private static get domain ( ) {
77- return getEnvVar ( 'E2B_DOMAIN' ) || 'e2b.dev '
77+ return getEnvVar ( 'E2B_DOMAIN' ) || 'e2b.app '
7878 }
7979
8080 private static get debug ( ) {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class ConnectionConfig:
1515
1616 @staticmethod
1717 def _domain ():
18- return os .getenv ("E2B_DOMAIN" , "e2b.dev " )
18+ return os .getenv ("E2B_DOMAIN" , "e2b.app " )
1919
2020 @staticmethod
2121 def _debug ():
You can’t perform that action at this time.
0 commit comments